bearings 0.2.0 → 0.3.0
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/README.md +10 -7
- package/dist/chunk-GUIHDRBB.js +659 -0
- package/dist/cli.js +54 -377
- package/dist/update-GAIUBEGX.js +799 -0
- package/package.json +1 -1
- package/templates/AGENTS.md +18 -33
- package/templates/agents/commands/refresh-repo-map.md +161 -0
- package/templates/agents/commands/setup-repo.md +67 -32
- package/templates/agents/skills/commit-convention/SKILL.md +83 -20
- package/templates/agents/skills/defer-work/SKILL.md +2 -2
- package/templates/agents/skills/enforcement-gates/SKILL.md +1 -0
- package/templates/agents/skills/implementing-task/SKILL.md +16 -7
- package/templates/agents/skills/installing-dependencies/SKILL.md +6 -0
- package/templates/agents/skills/recording-decisions/SKILL.md +51 -0
- package/templates/agents/skills/repo-navigation/SKILL.md +27 -8
- package/templates/agents/skills/resurface-deferred-work/SKILL.md +2 -2
- package/templates/agents/skills/secrets-handling/SKILL.md +1 -0
- package/templates/docs/ARCHITECTURE.md +37 -0
- package/templates/docs/CODEBASE_MAP.md +33 -0
- package/templates/docs/DOMAIN.md +33 -0
- package/templates/docs/adr/0000-template.md +12 -0
- package/templates/docs/adr/INDEX.md +6 -0
- package/templates/docs/deferred/INDEX.md +5 -3
- package/templates/agents/commands/current-state.md +0 -163
- package/templates/docs/CURRENT_STATE.md +0 -38
- package/templates/docs/conventions/current-state.md +0 -9
- package/templates/docs/conventions/doc-lifecycle.md +0 -16
package/README.md
CHANGED
|
@@ -20,18 +20,18 @@ bearings verify
|
|
|
20
20
|
AGENTS.md
|
|
21
21
|
CLAUDE.md
|
|
22
22
|
docs/
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
doc-lifecycle.md
|
|
23
|
+
DOMAIN.md
|
|
24
|
+
ARCHITECTURE.md
|
|
25
|
+
CODEBASE_MAP.md
|
|
27
26
|
adr/
|
|
27
|
+
INDEX.md
|
|
28
28
|
0000-template.md
|
|
29
29
|
deferred/
|
|
30
30
|
INDEX.md
|
|
31
31
|
.agents/
|
|
32
32
|
bearings.json
|
|
33
33
|
commands/
|
|
34
|
-
|
|
34
|
+
refresh-repo-map.md
|
|
35
35
|
setup-repo.md
|
|
36
36
|
skills/
|
|
37
37
|
repo-navigation/SKILL.md
|
|
@@ -42,6 +42,7 @@ docs/
|
|
|
42
42
|
commit-convention/SKILL.md
|
|
43
43
|
defer-work/SKILL.md
|
|
44
44
|
resurface-deferred-work/SKILL.md
|
|
45
|
+
recording-decisions/SKILL.md
|
|
45
46
|
.claude/
|
|
46
47
|
commands/*
|
|
47
48
|
skills/*
|
|
@@ -50,6 +51,8 @@ docs/
|
|
|
50
51
|
skills/*
|
|
51
52
|
```
|
|
52
53
|
|
|
54
|
+
`/setup-repo` creates `docs/diagrams/c4-component.puml` (via `/refresh-repo-map`) once the repo is tailored; it is not part of the generated scaffold or the manifest.
|
|
55
|
+
|
|
53
56
|
Existing scaffold targets are backed up as `<path>.bkp` before replacement. Re-running `init` skips unchanged managed files.
|
|
54
57
|
|
|
55
58
|
## The Model
|
|
@@ -58,8 +61,8 @@ Agent-friendly context is routed, not dumped.
|
|
|
58
61
|
|
|
59
62
|
```text
|
|
60
63
|
user task
|
|
61
|
-
-> root agent seed
|
|
62
|
-
->
|
|
64
|
+
-> root agent seed (AGENTS.md)
|
|
65
|
+
-> routed knowledge map (DOMAIN / ARCHITECTURE / CODEBASE_MAP / ADR / deferred index)
|
|
63
66
|
-> situation-specific skills
|
|
64
67
|
-> task/runbook/spec docs when needed
|
|
65
68
|
-> executable guardrails before completion
|