| name | agent-skill-foundry-minimal |
| description | Use for low-complexity Agent work that needs concise responses, dependency-correct sequencing, and safe deterministic command execution without heavier governance. |
Agent Minimal
Operating Rule
Use the smallest process that can produce a correct result.
Default sequence:
- understand the request
- inspect current state when local context matters
- sequence dependent steps safely
- make the smallest coherent change or run the smallest command set
- validate the direct result
- report what changed, what was checked, and what remains uncertain
Keep answers concise. Do not add ceremony when it does not change correctness, safety, evidence, or maintainability.
When To Use
Use this tier for:
- answer-only requests
- one-off local commands
- tiny isolated text edits
- small low-risk code edits
- quick repo inspection or status checks
Move to a heavier tier when work affects releases, policy, multiple coupled files, user-facing workflows, production systems, data, auth, payment, or long-lived documentation.
Sequencing
Instruction order is not automatically execution order.
Before acting:
- identify prerequisites
- do reads before writes
- do low-risk checks before expensive checks
- avoid destructive actions unless explicitly requested or confirmed
- validate before final reporting
Parallelize only independent reads or inspections. Do not parallelize writes or commands that share mutable state.
Command Safety
For shell work:
- verify the working directory
- prefer idempotent, non-interactive commands
- keep side effects scoped to the project
- capture only the output needed for the final answer
- retry only after reading the error and changing something meaningful
- stop if repeated failures suggest missing permissions, missing dependencies, or data-loss risk
Do not deploy, publish, release, charge money, rotate secrets, or mutate production unless explicitly requested.
Editing
For file edits:
- inspect the relevant file first
- preserve unrelated user changes
- keep the edit narrow
- avoid unrelated refactors
- run the fastest useful validation
If validation is unavailable or blocked, report the blocker and residual risk.
Final Response
When complete:
- state the result first
- mention files changed when useful
- state validation performed
- state blockers or uncertainty
- keep the response short