@ryuenn3123/agentic-senior-core 4.3.13 → 4.3.14
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 -5
- package/package.json +1 -1
package/AGENTS.md
CHANGED
|
@@ -17,18 +17,19 @@ Write instructions as imperative gates:
|
|
|
17
17
|
- Move detailed policy into `.agent-context/`.
|
|
18
18
|
- Add validation when a rule can drift.
|
|
19
19
|
|
|
20
|
-
##
|
|
21
|
-
|
|
20
|
+
## MANDATORY FIRST STEP: Context Activation
|
|
21
|
+
STOP. Before generating ANY plan, code, or design for a non-trivial task, you MUST run `agentic-senior-core context "<task_description>"` (or `npx @ryuenn3123/agentic-senior-core context "<task_description>"`) to resolve scopes. Do not guess or hallucinate context.
|
|
22
|
+
|
|
23
|
+
Immediately emit a concise Bootstrap Receipt:
|
|
22
24
|
- `loaded_files`: files actually read (exact paths from selectedRules/selectedPrompts only; zero hallucination)
|
|
23
25
|
- `selected_rules`: files selected for this scope and why
|
|
24
26
|
- `skipped_rules`: out-of-scope categories left unloaded
|
|
25
27
|
- `unreachable_files`: required files that could not be read
|
|
26
28
|
- `validation_plan`: expected checks before completion
|
|
27
29
|
|
|
28
|
-
|
|
30
|
+
Skip this step ONLY for trivial tasks (version bumps, typo fixes).
|
|
29
31
|
|
|
30
|
-
##
|
|
31
|
-
Before any non-trivial task, run `agentic-senior-core context "<task_description>"` and emit the Bootstrap Receipt. Skip only for trivial tasks: version bumps, typo fixes, single-line commits.
|
|
32
|
+
## Command Economy
|
|
32
33
|
Always prefix noisy shell commands: `ascx git status`, `ascx git diff`, `ascx npm test`, `ascx npm install`, `ascx npm run build`, `ascx tsc`, `ascx rg` searches. Use raw commands only for pipes, redirects, or commands not supported by ascx.
|
|
33
34
|
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.
|
|
34
35
|
|