Skip to content

Commit d448776

Browse files
committed
another stab at memory-bank/componets: replace index by find
1 parent 0a69627 commit d448776

File tree

1 file changed

+6
-14
lines changed

1 file changed

+6
-14
lines changed

.clinerules/memory-bank.md

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,10 @@ flowchart TD
1111
PB[projectbrief.md] --> PC[productContext.md]
1212
PB --> SP[systemPatterns.md]
1313
PB --> TC[techContext.md]
14-
PB --> CI[components.md]
1514
1615
PC --> AC[activeContext.md]
1716
SP --> AC
1817
TC --> AC
19-
CI --> AC
2018
2119
AC --> P[progress.md]
2220
```
@@ -62,13 +60,6 @@ flowchart TD
6260
- Known issues
6361
- Evolution of project decisions
6462

65-
7. `components.md`
66-
- **Master index** for the per-component documentation in the `memory-bank/components/` directory
67-
- Provides **keywords** for each component to facilitate searching for relevant detailed documentation
68-
- Lists key components with direct links to their individual markdown files
69-
- Serves as the primary entry point for discovering and navigating to **per-component documentation files**.
70-
- **Instruction:** Use this index to search for keywords to identify specific component documentation files to read in depth.
71-
7263
### Additional Context
7364
Create additional files/folders within memory-bank/ when they help organize:
7465
- Complex feature documentation
@@ -79,9 +70,8 @@ Create additional files/folders within memory-bank/ when they help organize:
7970

8071
#### Per-component Documentation
8172
- The `memory-bank/components/` directory houses individual Markdown files containing detailed documentation for each component
82-
- The main `memory-bank/components.md` file acts as a comprehensive **index** to these per-component files
83-
- It includes keywords and direct links, and you **MUST use this index to search for keywords to identify the specific component documentation files to read in depth**
84-
- These individual component documents, as well as the main `components.md` index, should be updated whenever necessary
73+
- **Usage: search the documentation using the `find` CLI tool to identify component documentation files to read in depth**
74+
- Update the individual component documents whenever necessary
8575

8676
## Core Workflows
8777

@@ -95,15 +85,17 @@ flowchart TD
9585
Plan --> Document[Document in Chat]
9686
9787
CheckFiles -->|Yes| Verify[Verify Context]
98-
Verify --> Strategy[Develop Strategy]
88+
Verify --> SearchAndReadComponentDocumentation[Search relevant docs in memory-bank/components and read those docs]
89+
SearchAndReadComponentDocumentation --> Strategy[Develop Strategy]
9990
Strategy --> Present[Present Approach]
10091
```
10192

10293
### Act Mode
10394
```mermaid
10495
flowchart TD
10596
Start[Start] --> Context[Check Memory Bank]
106-
Context --> Update[Update Documentation]
97+
Context --> SearchAndReadComponentDocumentation[Search relevant docs in memory-bank/components and read those docs]
98+
SearchAndReadComponentDocumentation --> Update[Update Documentation]
10799
Update --> Execute[Execute Task]
108100
Execute --> Document[Document Changes]
109101
```

0 commit comments

Comments
 (0)