agentic-engineering — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited agentic-engineering (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Refactor a skill or workflow so the model can execute more work with less human steering, while preserving verification, provenance, security, and the professional quality ceiling.
Agentic Engineering is the step after vibe coding: speed is useful only if quality does not degrade. Humans keep ownership of taste, judgment, architecture, and risk boundaries; agents execute bounded macro actions with evidence.
Use the Karpathy-style LLM OS mapping as the design baseline:
| OS concept | Agent workflow meaning |
|---|---|
| LLM = CPU | The model runs the next reasoning/action loop. |
| Context = RAM | Load only the state needed for the next step. |
| Wiki/logs = Disk | Durable knowledge lives outside chat memory. |
| Tools = System calls | Actions must have contracts, permissions, and evidence. |
| Loop = Scheduler | Plan -> Act -> Observe -> Iterate controls work. |
The agent is a process with state, tools, permissions, and write-back duties. Do not design skills as advice pages; design them as executable control loops.
Use the Google I/O '26 wiki update as the new maturity signal: useful agents are moving from chat boxes into full-stack product surfaces.
| Surface | Agentic engineering requirement |
|---|---|
| Developer IDE or CLI | subagents, hooks, async queues, tests, diffs, task state |
| Personal agent | user intent, memory boundary, tool allowlist, resumable tasks |
| Agentic search | source grounding, comparison criteria, reversible action preview |
| Agentic commerce | explicit mandate, budget, payment boundary, audit trail |
| Generative media | provenance, edit history, watermark or disclosure path |
| Ambient device | sensor boundary, privacy mode, interrupt and fallback controls |
Do not treat these as separate prompt styles. They are one full-stack agent design problem: model -> context -> tool calls -> product surface -> verification -> governance.
Before adding orchestration, classify the work at the lowest sufficient level:
| Level | Use when | Gate before upgrading |
|---|---|---|
| Prompt | One-off answer, small edit, short analysis | Is the work repeating? |
| Skill | Reusable workflow or domain method | Does it need isolated execution? |
| Subagent | Independent side task or context isolation | Does it need communication or shared state? |
| Agent team | Multiple roles must coordinate or review each other | Can file ownership, IPC, and join gates be defined? |
| Long-running goal | Depth problem: iterate until objective criteria pass | Is done externally verifiable and budgeted? |
| Dynamic workflow | Width problem: many independent shards can run in parallel | Is script review, cost envelope, and runtime observability in place? |
Default to the lower level when value, independence, or verification is unclear. Higher orchestration increases token cost, permission surface, and audit burden.
Prompt
Use agentic-engineering to revise this skill/workflow. Make it model-native, concise, autonomous, verifiable, and long-horizon capable.Use Case
Expected Result
Output Example
SKILL.md with model assumptions, autonomous execution loop, quality gates, and anti-patterns.Verification Case
Verified Effect
Design around the model as it is, not as a human assistant metaphor.
| Meta-property | Skill design response |
|---|---|
| Context is scarce working memory | Keep SKILL.md short; move examples/details to references; load only what is needed. |
| Output is probabilistic | Require tests, citations, diffs, screenshots, or link checks before claims. |
| Tool use is the action layer | Name allowed tools, denied actions, and idempotent retries. |
| Long-horizon drift is normal | Add checkpoints, state files, stop criteria, and recovery paths. |
| Durable knowledge is external | Persist reusable results into wiki, docs, logs, or state files. |
| The model is strong at synthesis | Do not over-explain generic concepts; specify local constraints and unusual rules. |
| The model can over-ask | Provide safe defaults and ask only for irreversible, high-risk, or genuinely ambiguous decisions. |
| Cost and latency matter | Route simple work to thin loops; reserve deep context for high-uncertainty decisions. |
Name the standard that must not drop:
Quality ceiling:
User-visible risk:
Security risk:
Verification evidence:
Human judgment required:If quality cannot be measured or inspected, do not delegate broad autonomous work yet.
State the workflow in one sentence:
Input -> transformation -> durable output -> verification evidenceIf this sentence is vague, fix it before adding steps.
Before assigning a large unit of work, define:
Objective:
Scope:
Non-goals:
Inputs:
Owned files or territory:
Expected output:
Verification evidence:
Security/risk review:
Write-back destination:
Stop condition:Treat features, research, plans, and verification as macro actions. Shrink the action until ownership and proof are clear.
For delegated actions that can affect a user, account, purchase, external system, public claim, or generated media artifact, add:
User mandate:
Authority boundary:
Budget/cost limit:
Reversibility:
Audit/provenance record:
User confirmation point:Use this escalation policy:
| Situation | Default |
|---|---|
| Reversible local edit | Proceed, then verify. |
| Missing low-risk detail | Make a conservative assumption and record it. |
| Conflicting existing files | Preserve user changes and adapt. |
| Destructive, irreversible, credential, payment, legal, or production action | Stop and ask. |
| User explicitly requested a choice | Ask once, briefly. |
For long tasks, create or update one durable state artifact:
Goal:
Current step:
Assumptions:
Files touched:
Evidence:
Open risks:
Next action:Avoid relying on chat memory for multi-hour or multi-session continuity.
Boot minimal context.
Plan the next smallest useful step.
Act with tools as system calls.
Observe environmental evidence.
Update durable state.
Verify or iterate.
Write back reusable learning.
Stop when definition of done is proven.Keep the loop short. Do not produce broad plans unless the task is broad.
Use a separate critic, test suite, or adversarial pass when output touches:
For security-sensitive work, the minimum pattern is:
Builder output -> evaluator review -> adversarial test -> fix loop -> final proofAllow long autonomous experimentation only when:
Otherwise keep the loop supervised with human review gates.
Replace repeated human check-ins with artifacts:
| Human need | Agentic interface |
|---|---|
| "What are you doing?" | Task state + changed files + next action |
| "Is it done?" | Verification command/output + residual risk |
| "Why this choice?" | Assumption ledger + tradeoff table |
| "Can this be reused?" | SOP, skill update, or wiki output |
Every completion claim needs fresh evidence:
For vendor-keynote, launch, or product-roadmap claims, mark single-source status until checked against public docs, changelogs, or independent usage evidence.
After significant output, decide where the result belongs:
| Output | Durable home |
|---|---|
| Source-derived claim | sources/ reference + wiki/ synthesis |
| Reusable workflow | skill, SOP, or command file |
| Project decision | wiki/decisions/ or project log |
| Correction | related wiki page + change log |
| Open risk | review queue or issue tracker |
SKILL.md removes generic teaching and keeps only non-obvious procedure.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.