@erclx/aitk 0.82.1 → 0.82.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/docs/agents/records.md
CHANGED
|
@@ -78,8 +78,11 @@ A person creates the records repository once per machine, and the verbs refuse w
|
|
|
78
78
|
```bash
|
|
79
79
|
git --git-dir=.claude/.records.git init
|
|
80
80
|
git --git-dir=.claude/.records.git remote add origin <private-repo-url>
|
|
81
|
+
printf '.claude/.records.git/\n' >> .gitignore
|
|
81
82
|
```
|
|
82
83
|
|
|
84
|
+
The ignore line is part of the setup rather than part of the installed gitignore group, because the person running these commands is the one who creates the directory. Every path that group ships is written by a toolkit command without anyone asking, and this one is not, so a project that never sets up records would carry a rule for a directory it will never hold. Leaving it out and adding it here puts the rule where whoever creates the directory reads it.
|
|
85
|
+
|
|
83
86
|
Point it at a private repository, and at one that is not a remote of the project. Records carry the memory pen, the review reports, and the groundwork trails, so a public project publishes all of it to anyone who fetches all refs. `push` compares the configured origin against every remote of the project and refuses on a match. A read of that list which fails refuses as well, since an empty list clears the comparison for every origin and a gate that passes on its own failure is no gate.
|
|
84
87
|
|
|
85
88
|
### Refusals
|
package/package.json
CHANGED
|
@@ -8,4 +8,4 @@ runtime = ""
|
|
|
8
8
|
scaffold = ""
|
|
9
9
|
|
|
10
10
|
[gitignore]
|
|
11
|
-
"# Claude" = [".claude/.
|
|
11
|
+
"# Claude" = [".claude/.tmp/", ".claude/groundwork/", ".claude/intake/", ".claude/memory/", ".claude/plans/", ".claude/plans-archive/", ".claude/review/", ".claude/task-archive/", ".claude/worktrees/", ".claude/tasks/"]
|