@erclx/canon 4.29.1 → 4.30.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 +6 -0
- package/claude/.claude-plugin/plugin.json +1 -1
- package/docs/agents/capture.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,6 +69,12 @@ Governance is the third shape, and it is worth seeing rather than reading about,
|
|
|
69
69
|
|
|
70
70
|
Stacks compose, so a react project inherits node and node inherits base. A rule with a glob loads only when a matching path is edited, and a rule with none loads every session. Both counts and every row above are read from the catalogs when the image is built.
|
|
71
71
|
|
|
72
|
+
The toolkit tracks its own work the same way, in a task board no catalog can read back.
|
|
73
|
+
|
|
74
|
+

|
|
75
|
+
|
|
76
|
+
`.canon/tasks/` is gitignored session scratch, so unlike the two frames above, this one is a hand-taken snapshot rather than something the build reads live, and it goes stale the moment the board moves.
|
|
77
|
+
|
|
72
78
|
## Documentation
|
|
73
79
|
|
|
74
80
|
Scaffolding your first project? Start with target projects, then the AI workflow loop. Everything else answers questions that arrive later.
|
package/docs/agents/capture.md
CHANGED
|
@@ -13,13 +13,13 @@ canon capture assets/install.html --selector .window
|
|
|
13
13
|
canon capture assets --selector .window --out .canon/review/captures
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
`--selector` is required and every example above passes it. The element a capture crops to belongs to the page, not to the command, so there is no value that could be right for an arbitrary project's markup. `.window` is what this repository's own
|
|
16
|
+
`--selector` is required and every example above passes it. The element a capture crops to belongs to the page, not to the command, so there is no value that could be right for an arbitrary project's markup. `.window` is what this repository's own five sources declare, and a project renders its own pages by naming whatever theirs declare.
|
|
17
17
|
|
|
18
18
|
## What this repository captures
|
|
19
19
|
|
|
20
|
-
`assets/` here holds
|
|
20
|
+
`assets/` here holds five sources, so one run over the folder rebuilds every one. None is edited by hand. `scripts/core/regen-hero.sh` writes each from a template beside it, filling one shared value map into all of them, and `bun run check` regenerates them and fails on the difference.
|
|
21
21
|
|
|
22
|
-
Three of the
|
|
22
|
+
Three of the five take catalog data, so a stack gaining a rule moves the frame on the next run. `install.html` and `showcase-task-board.html` are the two exceptions: the first holds terminal text from a real run and the second holds a hand-frozen snapshot of a gitignored board, each in its template rather than derived from a live catalog at build time.
|
|
23
23
|
|
|
24
24
|
The folder is read flat and never descends, by the regeneration script, by this command, and by the drift stage alike. A source in a subfolder is skipped by all three with nothing reported, so a new frame takes a name prefix rather than a folder of its own.
|
|
25
25
|
|