From 4fad150bd70179b11b62fec9eba02e881299a1f4 Mon Sep 17 00:00:00 2001 From: Oliver With Date: Thu, 28 Aug 2025 08:03:41 +0200 Subject: [PATCH 1/2] Readme included in documentation --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index b0e5f18..2876d06 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1 +1,2 @@ +#![doc = include_str!("../README.md")] pub mod machines; From 0153821bfbc444e58df7d2bea83c1e25b2c7e161 Mon Sep 17 00:00:00 2001 From: Oliver With Date: Thu, 28 Aug 2025 08:09:45 +0200 Subject: [PATCH 2/2] Improve structure of rules for Cline --- .clineignore | 2 ++ .clinerules | 6 ------ .clinerules/projct_rules.md | 6 ++++++ assistants/{CLAUDE.md => assistant.md} | 0 4 files changed, 8 insertions(+), 6 deletions(-) create mode 100644 .clineignore delete mode 100644 .clinerules create mode 100644 .clinerules/projct_rules.md rename assistants/{CLAUDE.md => assistant.md} (100%) diff --git a/.clineignore b/.clineignore new file mode 100644 index 0000000..b753104 --- /dev/null +++ b/.clineignore @@ -0,0 +1,2 @@ +/target/ +.git diff --git a/.clinerules b/.clinerules deleted file mode 100644 index 958e5fa..0000000 --- a/.clinerules +++ /dev/null @@ -1,6 +0,0 @@ -# Project-specific rules for Cline - -## Always read and follow CLAUDE.md -Before starting any task, read the CLAUDE.md file in the project root and follow its guidelines and instructions. CLAUDE.md does only contain instructions for the agent but no project specific info. - -Other readme files may be included in CLAUDE.md. read them as context. diff --git a/.clinerules/projct_rules.md b/.clinerules/projct_rules.md new file mode 100644 index 0000000..d2261a2 --- /dev/null +++ b/.clinerules/projct_rules.md @@ -0,0 +1,6 @@ +# Project-specific rules for Cline + +## Always read and follow assistant.md +Before starting any task, read the assistant.md file in the project root and follow its guidelines and instructions. assistant.md does only contain instructions for the agent but no project specific info. + +Other readme files may be included in assistant.md. read them as context. diff --git a/assistants/CLAUDE.md b/assistants/assistant.md similarity index 100% rename from assistants/CLAUDE.md rename to assistants/assistant.md