@ryuenn3123/agentic-senior-core 4.2.1 → 4.2.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/AGENTS.md +6 -4
- package/README.md +2 -4
- package/package.json +1 -1
package/AGENTS.md
CHANGED
|
@@ -25,10 +25,12 @@ For non-trivial coding, review, planning, or governance work, run `agentic-senio
|
|
|
25
25
|
- `unreachable_files`: required files that could not be read
|
|
26
26
|
- `validation_plan`: expected checks before completion
|
|
27
27
|
|
|
28
|
-
Keep it short. Do not load every rule just to fill it out.
|
|
28
|
+
Keep it short. Do not load every rule just to fill it out.
|
|
29
29
|
|
|
30
30
|
## Default Activation And Command Economy
|
|
31
|
-
|
|
31
|
+
Before any non-trivial task, run `agentic-senior-core context` and emit the Bootstrap Receipt. Skip only for trivial tasks: version bumps, typo fixes, single-line commits.
|
|
32
|
+
Always prefix noisy shell commands: `ascx git status`, `ascx git diff`, `ascx npm test`, `ascx rg` searches. Use raw commands only for pipes, redirects, or commands not supported by ascx.
|
|
33
|
+
Always read and apply `.agent-context/prompts/compact-natural-mode.md` for every final user-facing reply. Never repeat full command output; reference tee file paths when truncated.
|
|
32
34
|
|
|
33
35
|
## Layer Index
|
|
34
36
|
### Layer 1: Rules (21 Files) [SCOPE-RESOLVED]
|
|
@@ -163,11 +165,11 @@ Never claim done without:
|
|
|
163
165
|
2. PR and architecture checklists considered.
|
|
164
166
|
3. Universal SOP gates satisfied: public and developer root `README.md`; `docs/architecture-decision-record.md`; plus `docs/DESIGN.md` and `docs/design-intent.json` for UI scope.
|
|
165
167
|
4. If `.agent-context/state/active-memory.json` exists and material project progress happened, refresh it while preserving privacy rules and user-owned entries.
|
|
166
|
-
5.
|
|
168
|
+
5. Project validation passed through `npm run validate`.
|
|
167
169
|
|
|
168
170
|
## Knowledge Inventory Checklist
|
|
169
171
|
|
|
170
|
-
Verify reachability
|
|
172
|
+
Verify reachability of relevant files in Layer 1 to Layer 9 before generating implementation code. If a required instruction file is missing or unreachable, halt and report the missing dependency.
|
|
171
173
|
|
|
172
174
|
## Operating Gates
|
|
173
175
|
|
package/README.md
CHANGED
|
@@ -46,16 +46,14 @@ Preview changes with `--dry-run`, then apply with `--yes`. Upgrade prunes obsole
|
|
|
46
46
|
| `agentic-senior-core init` | Initialize the compact project guidance pack and native agent entrypoints |
|
|
47
47
|
| `agentic-senior-core upgrade --dry-run` | Preview managed-surface upgrades |
|
|
48
48
|
| `agentic-senior-core context "<request>" --json --file src/app/page.tsx` | Resolve request labels, rules, prompts, docs, file signals, budget status, and fallback status |
|
|
49
|
-
| `ascx
|
|
50
|
-
| `ascx git diff` | Run `git diff` through the local evidence-preserving diff summary wrapper |
|
|
51
|
-
| `ascx npm test` | Run `npm test` through the local evidence-preserving output wrapper |
|
|
49
|
+
| `ascx <command>` | Run a command through the local evidence-preserving output wrapper (safely falls back to passthrough if unsupported) |
|
|
52
50
|
| `asc optimize status` | Check ASCX runtime token saver readiness |
|
|
53
51
|
| `asc optimize doctor` | Diagnose ASCX availability, tee write safety, and compression conflicts |
|
|
54
52
|
| `agentic-senior-core optimize --show` | Show token optimization state |
|
|
55
53
|
| `agentic-senior-core mcp` | Start local MCP stdio runtime |
|
|
56
54
|
| `npm run clean:local` | Remove ignored local reports, backups, benchmarks, and active-memory state |
|
|
57
55
|
|
|
58
|
-
`ascx`
|
|
56
|
+
`ascx` dynamically compresses supported commands with noisy output (e.g., builds, tests, searches, and git logs). Other commands, pipes, redirects, and unsupported shell shapes safely pass through without compression. Compressed output includes a structured footer with command, exit code, filter name, estimated token reduction, and a raw tee path when safety requires it.
|
|
59
57
|
|
|
60
58
|
`asc` is a short alias for the main `agentic-senior-core` CLI. The doctor does not probe localhost services in this phase; `9router` status remains `not-checked`.
|
|
61
59
|
|