Cline rules
.clinerules/setup_worker.mdCline rules
Quality
61/100
Scores the file, not the repository.Length
886 words
7 headings · 2 code blocksRepository
762
— · pushed 1 days agoLast changed
3 days ago
First indexed 3 days ago.1# **CRCT Set-up/Maintenance - Dependency Verification Worker Instructions**23This file defines the required verification behavior for delegated Set-up/Maintenance dependency tasks.45## I. Mandatory Bootstrap671. Apply these rules for every source->target relationship in the assigned task.82. If task instructions conflict with this file, follow this file and report the conflict.910## II. Worker Scope11121. Analyze assigned source/target files and determine dependency characters.132. Return determinations with explicit reasoning tied to file evidence.143. Do not assume outcomes before reading evidence.154. Do not modify trackers; return determinations for the orchestrator to apply.1617## III. Determine Relationship (CRITICAL STEP)1819```text20**Dependency Criteria**21 < (Row Requires Column): Row functionally relies on or requires Column for context/operation22 > (Column Requires Row): Column functionally relies on or requires Row for context/operation23 x (Mutual Requirement): Mutual functional reliance or deep conceptual link requiring co-consideration24 d (Documentation Link): Row is documentation essential for understanding/using Column, or vice-versa25 n (Verified No Dependency): Confirmed no functional requirement or essential conceptual link exists26```2728* **Determine Relationship (CRITICAL STEP)**: Based on file contents, determine the **true relational necessity or essential conceptual link** between the source (`key_string`) and each target key being verified.29* **Go Beyond Semantic Similarity**: Suggestions ('s', 'S') might only indicate related topics. However, if the source file defines the "Why," the rules, or the architecture for the target, it is an essential dependency.30* **Focus on Relational and Contextual Necessity**: Ask:31 * **Logic & Purpose**: Does the *row file* provide the business logic, requirements, or purpose that the *column file* implements? (Leads to 'd' or '<').32 * **Technical Reliance**: Does the code in the *row file* directly **import, call, or inherit from** code in the *column file*? (Leads to '<' or 'x').33 * **Knowledge Requirement**: Does a developer/LLM need to read the *column file* to safely or correctly modify the *row file*? (Leads to '<' or 'd').34 * **Implementation Link**: Is the *row file* essential documentation for understanding or implementing the concepts/code in the *column file*? (Leads to 'd' or '>').35 * **Architectural Fit**: Are these files part of the same specific feature or architectural pattern where changing one without the other would cause conceptual drift or technical debt? (Leads to 'x' or 'd').36* **Purpose of Dependencies**: Remember, these verified dependencies guide the **Strategy phase** (determining task order) and the **Execution phase** (loading minimal necessary context). A dependency should mean "This file is part of the necessary context required to work effectively on the other."37* **Assign 'n' ONLY for Unrelated Content**: If the relationship is purely coincidental, uses similar common terms in a different context, or is an unrelated file, assign 'n' (verified no dependency). **If there is any doubt regarding conceptual relevance, err on the side of 'd' (Documentation/Conceptual link) rather than 'n'.**38* **State Reasoning (MANDATORY)**: **clearly state your reasoning** for the chosen dependency character (`<`, `>`, `x`, `d`, or `n`) for *each specific relationship* you intend to set, based on your direct file analysis and the relational necessity criteria.3940## IV. Stage-Specific Guidance41421. **Doc tracker and mini-tracker verification**:43 * Verify by reading source and target files, not by similarity alone.44 * Include conceptual/documentation relationships.45 * If either the source or target file *should* reference the other, but does not, a positive dependency **must** be established so the system can add the missing information.46 * When determining documentation dependency relations, think beyond direct connectivity. Does the described system or functionality interact with the other in *any* way? For proper planning we must be able to see relations beyond the obvious first tier connections. We must ask if a change in either system would have downstream effects on the other.47482. **Module relationship tracker verification**:49 * **Determine Relationship & State Reasoning**: Base decision on aggregated dependencies from mini-trackers and high-level design intent.50 * **Focus on Module-Level Reliance**: Ask:51 * **Logic Flow**: Does Module A provide the data or the trigger that Module B processes? (Leads to '<' or 'x').52 * **Architectural Dependence**: Is Module A the "Controller" or "Core" that Module B (as a "Plugin" or "Utility") requires to have purpose? (Leads to '<' or 'd').53 * **Direct Code Interaction**: Does *any file within* module A directly **import, call, or inherit from** code in *any file within* module B? (Leads to '<' or 'x').54 * **Knowledge/Conceptual Link**: Is there a **deep, direct conceptual link** where understanding or modifying one module *necessitates* understanding the other? (Consider '<', '>', 'x', or 'd' based on the nature of the link).55 * **State Reasoning (MANDATORY)**: **Clearly state your reasoning** for the chosen dependency character (`<`, `>`, `x`, `d`, or `n`) for *each specific relationship* you intend to set, based on your analysis of module-level dependencies.56573. **Code-Documentation cross-reference**:58 * Determine whether documentation is essential context for understanding, implementing, or safely modifying code.59 * Explicitly note when doc->code and code->doc links should both exist.6061## V. Output Contract6263Use this output format unless the parent task specifies a stricter format:6465```markdown66Key {source_key} Dependency Verification Results:6768[Target Key] [Target Path] -> [Dependency Character]69Reasoning: [Evidence-backed reasoning]7071[Repeat for each target]72```7374If evidence is insufficient, state exactly what is missing and why.7576## File Paths7778If you do not have the paths to the files or the correct keys, you can look them up in the global_key_map.json file located at `cline_utils\dependency_system\core\global_key_map.json`.79
Also in RPG-fan/Cline-Recursive-Chain-of-Thought-System-CRCT-
Diff this repo’s formatsOne repository carrying more than one format is the comparison this product exists for: does anyone actually write different content in each file, or is one a copy of the other?
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| RPG-fan/Cline-Recursive-Chain-of-Thought-System-CRCT-.clinerules/cleanup_consolidation_plugin.md · 762 | Cline rules | monorepoagent-behaviour | 34/100 | 3 days ago | |
| RPG-fan/Cline-Recursive-Chain-of-Thought-System-CRCT-.clinerules/core_prompt(put this in Custom Instructions).md · 762 | Cline rules | lint-formatstylearchui+3 | 73/100 | 2 days ago | |
| RPG-fan/Cline-Recursive-Chain-of-Thought-System-CRCT-.clinerules/default-rules.md · 762 | Cline rules | style | 24/100 | 3 days ago | |
| RPG-fan/Cline-Recursive-Chain-of-Thought-System-CRCT-.clinerules/execution_plugin.md · 762 | Cline rules | no sections | 46/100 | 3 days ago | |
| RPG-fan/Cline-Recursive-Chain-of-Thought-System-CRCT-.clinerules/setup_maintenance_plugin.md · 762 | Cline rules | archdependenciesdo-notagent-behaviour | 73/100 | 2 days ago | |
| RPG-fan/Cline-Recursive-Chain-of-Thought-System-CRCT-.clinerules/strategy_dispatcher_plugin.md · 762 | Cline rules | styleagent-behaviour | 46/100 | 3 days ago | |
| RPG-fan/Cline-Recursive-Chain-of-Thought-System-CRCT-.clinerules/strategy_worker_plugin.md · 762 | Cline rules | style | 38/100 | 3 days ago |
Diff against .clinerules/cleanup_consolidation_plugin.md Diff against .clinerules/core_prompt(put this in Custom Instructions).md Diff against .clinerules/default-rules.md Diff against .clinerules/execution_plugin.md Diff against .clinerules/setup_maintenance_plugin.md Diff against .clinerules/strategy_dispatcher_plugin.md Diff against .clinerules/strategy_worker_plugin.md
Similar configs
Same format, overlapping stack, ranked by quality.
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| u9401066/zotero-keeper.clinerules/50-pubmed-project.md · 6 | Cline rules | testlint-formatstylearch+1 | 94/100 | 3 days ago | |
| u9401066/zotero-keepervscode-extension/resources/repo-assets/pubmed-search-mcp/.clinerules/50-pubmed-project.md · 6 | Cline rules | testlint-formatstylearch+1 | 94/100 | 3 days ago | |
| u9401066/pubmed-search-mcp.clinerules/50-pubmed-project.md · 23 | Cline rules | testlint-formatstylearch+1 | 94/100 | 3 days ago | |
| ryok/python-boilerplate.clinerules/common-commands.md · 0 | Cline rules | setupbuildtestlint-format+3 | 90/100 | 2 days ago | |
| u9401066/pubmed-search-mcp.clinerules/00-project.md · 23 | Cline rules | testlint-formatstylearch+1 | 86/100 | 3 days ago | |
| u9401066/pubmed-search-mcp.clinerules/60-pubmed-python.md · 23 | Cline rules | setuptestlint-formatstyle+2 | 86/100 | 3 days ago | |
| u9401066/zotero-keeper.clinerules/60-pubmed-python.md · 6 | Cline rules | setuptestlint-formatstyle+2 | 86/100 | 3 days ago | |
| u9401066/zotero-keepervscode-extension/resources/repo-assets/pubmed-search-mcp/.clinerules/60-pubmed-python.md · 6 | Cline rules | setuptestlint-formatstyle+2 | 86/100 | 3 days ago |
