@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.
Files changed (3) hide show
  1. package/AGENTS.md +6 -4
  2. package/README.md +2 -4
  3. 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. Skip this receipt and do not run the context command for trivial tasks (e.g., simple version bumps, minor typo fixes, or simple commits).
28
+ Keep it short. Do not load every rule just to fill it out.
29
29
 
30
30
  ## Default Activation And Command Economy
31
- At session start, enforce default-on surfaces: run `agentic-senior-core context` for non-trivial work, prefer `ascx git status` / `ascx git diff` / `ascx npm test` when available, and apply `compact-natural-mode.md` for final replies. Avoid repeated command output; use raw commands for pipes, redirects, or unsupported commands.
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. MCP validation passed through `npm run validate`.
168
+ 5. Project validation passed through `npm run validate`.
167
169
 
168
170
  ## Knowledge Inventory Checklist
169
171
 
170
- Verify reachability when relevant: Layer 1 Rules, Layer 2 Runtime Decision Signals, Layer 3 Structural Planning Signals, Layer 4 Execution Contracts, Layer 5 Prompts, Layer 6 Governance Modes, Layer 7 State, Layer 8 Policies, Layer 9 Project Context.
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 git status` | Run `git status` through the local evidence-preserving output wrapper |
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` currently compresses only `git status`, `git diff`, and `npm test`. Other commands, pipes, redirects, and unsupported shell shapes 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.
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ryuenn3123/agentic-senior-core",
3
- "version": "4.2.1",
3
+ "version": "4.2.2",
4
4
  "type": "module",
5
5
  "description": "Change your AI Agent to code like a Staff Engineer, not a Junior.",
6
6
  "bin": {