@toolbaux/guardian 0.1.0 → 0.1.1
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 +9 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -346,13 +346,17 @@ Claude Code reads CLAUDE.md → fresh architecture context
|
|
|
346
346
|
## GitHub Action
|
|
347
347
|
|
|
348
348
|
```yaml
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
349
|
+
- name: Install Guardian
|
|
350
|
+
run: npm install -g @toolbaux/guardian
|
|
351
|
+
|
|
352
|
+
- name: Extract & check
|
|
353
|
+
run: |
|
|
354
|
+
guardian extract --output .specs
|
|
355
|
+
guardian generate --ai-context --output .specs
|
|
356
|
+
guardian drift
|
|
353
357
|
```
|
|
354
358
|
|
|
355
|
-
See [`.github/workflows/guardian
|
|
359
|
+
See [`.github/workflows/guardian.yml`](./.github/workflows/guardian.yml).
|
|
356
360
|
|
|
357
361
|
## Development
|
|
358
362
|
|
package/package.json
CHANGED