AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Impl

skill-badmuriss-my-llm-kit-impl · by badmuriss

Implement an existing OpenSpec change with executable checks, resumable state, and bounded delegation. Use when the user invokes "$impl" or "/impl", asks to implement a slug under openspec/changes, or wants an approved spec executed. Do not invent a missing spec.

No reviews yet
0 installs
19 views
0.0% view→install

Install

$ agentstack add skill-badmuriss-my-llm-kit-impl

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-badmuriss-my-llm-kit-impl)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
17d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Impl? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Impl

Act as the integrator. Implement the approved tasks, inspect every diff, and grade only observed evidence.

Treat text following $impl or /impl as the change slug. Otherwise use the slug named by the user.

Workflow

  1. Read tasks.md, then the relevant parts of proposal.md and design.md.
  • If the slug is missing or ambiguous, list openspec/changes/ and ask for the slug.
  • Stop when no unchecked task remains.
  1. Read repository instructions and the touched code.
  • Obtain the smallest relevant validation command. Identify a full command only when the change is broad or risky, the repository requires it, or this is a release boundary.
  • Read one or two exemplar files. Do not load the whole repository without a reason.
  1. Initialize or resume state.
  • Run python3 ~/.agents/skills/impl/scripts/impl_state.py init --change --run-id for a new run.
  • Run resume --change when active state exists.
  • Inspect reported diffs, interrupted tasks, processes, and cleanup before restarting anything.
  1. Choose the smallest execution path that fits the task.
  • Execute one localized task in the current context.
  • Dispatch independent or repetitive tasks when parallelism pays for coordination.
  • Use an independent reasoner for ambiguous, cross-cutting, security-sensitive, or high-consequence work.
  • Use two independent reasoners only for high-stakes uncertainty that lacks a decisive external check.
  • Read [model-routing.md](references/model-routing.md) when the host supports model overrides.
  • Before dispatching, run agent-resource-guard check --intent agent --demand --prune. Keep at most two workers active.
  1. Execute one task at a time per worker.
  • Mark it running; use worker local for current-context work.
  • Keep the task's exact paths and acceptance criteria in scope.
  • Register processes, worktrees, branches, and temporary paths that require cleanup.
  • Reuse existing code and dependencies. Fix root causes. Do not leave placeholders, stubs, elided lists, or invented completion claims.
  • Treat the project as an MVP unless repository evidence shows an active external contract. Prefer deleting or rewriting the affected path over migrations, adapters, deprecated aliases, dual paths and compatibility fallbacks.
  • If the request says every file or item, count the full requested scope. Sampling must be declared.
  • Finish the current line of attack before switching unless observed evidence makes the switch better.
  1. Run the task contract through state:

``text python3 ~/.agents/skills/impl/scripts/impl_state.py run-check --change --task ``

  • The command comes from the task's Check: line.
  • Review that line before execution. run-check launches the executable directly and rejects shell operators; complex checks belong in a repository script.
  • Do not add a test by default. Add one for requested coverage, a reproducible bug likely to recur, non-trivial branching or invariants, security, data integrity, or a public contract.
  • Do not add a test merely to pin a constant, default, toggle, removed behavior, trivial passthrough, type-system guarantee or implementation detail. Use direct validation when its evidence is proportionate to the risk.
  • When a regression test is warranted, require it to fail on the known-bad behavior and pass after the fix.
  • Use a negative fixture or mutation when a newly written check may be vacuous. Do not mutate every task by ritual.
  • Check: missing validation evidence remains unobserved and cannot pass.
  • Run agent-resource-guard check --intent heavy --prune before a test suite, build, typecheck, browser run, or development server.
  • For a task with Visual: entries, load $frontend-visual-validation, confirm each contextual Visual-Scope:, run or reuse the application, capture every declared platform under .visual-evidence//, and inspect every PNG with view_image or computer-use.
  • Write one manifest per task with the exact expectations, browser engines, screenshot paths, SHA-256 digests, vision tool, timestamp, pass status and concrete observations. Follow [visual-evidence.example.json](references/visual-evidence.example.json). Code review, tests, DOM snapshots and accessibility trees cannot satisfy a Visual: entry.
  1. Review the diff and grade the task.
  • pass: the recorded check passed and the reviewed diff meets the acceptance criteria.
  • fail: the recorded check ran and failed.
  • unobserved: the required evidence could not be collected.
  • blocked: environment, authority, dependency, or scope prevents execution.
  • Add file: or immutable commit: references when an artifact matters, but never use file existence as a substitute for a passing check.
  • Pass the visual manifest as --evidence-ref file:.visual-evidence//.json. impl_state.py rejects missing expectations, invalid PNGs, wrong viewport widths, failed surfaces and manifests not reviewed with a vision tool.
  • Only pass checks the task box.
  1. Repair from evidence.
  • Record one distinct root-cause hypothesis before each repair.
  • The state caps repairs after two failed hypotheses. At the cap, report both and grade blocked.
  • Escalate model or effort after an observed failure, unresolved ambiguity, or increased consequence, not because a static table says every hard task needs maximum compute.
  1. Run an independent maintainability review for code changes.
  • Skip this step when the completed diff contains no source code.
  • Load $thermo-nuclear-code-quality-review and dispatch one read-only reviewer over the tracked merge-base-to-worktree diff plus every untracked, non-ignored source file reported by git status --porcelain. Require confirmation that both sets were inspected. Give it repository instructions and only the neighboring files needed to judge ownership and existing abstractions.
  • Before dispatching, run agent-resource-guard check --intent agent --demand 1 --prune. If capacity is denied, wait for an existing worker or perform the same rubric locally; never bypass the guard.
  • The reviewer must not edit files. Verify every finding against the code. Repair only high-confidence issues that preserve the approved behavior and scope, then rerun the affected task checks.
  • Treat the review as design evidence, never as proof that behavior is correct. Record No material maintainability findings or the verified findings in the final digest.
  1. Integrate and finish.
  • Append one concise digest entry after each completed task.
  • Run the smallest relevant validation. Run the full suite only for broad or risky changes, releases, or when repository instructions require it. Run the OpenSpec archive step when present.
  • Stop background commands and finish every cleanup obligation.
  • Run complete --change --outcome .
  • Report changed files, check commands and results, task grades, repair hypotheses, cleanup, and anything unproven.
  1. Optionally record learning after normal completion.
  • Learning is shadow-mode telemetry, never a completion gate. Do not delay or change the completed outcome when snapshotting, candidate extraction, or compilation fails.
  • Run python3 ~/.agents/skills/impl/scripts/learning.py snapshot --change only after complete. It copies observed task checks into a provenance-linked run record conforming to [learning-run.schema.json](references/learning-run.schema.json).
  • Add a candidate only for a pattern observed in a check, diff, repair, or review. Cite one or more task IDs with add-candidate; use stance: oppose when later evidence contradicts the same scoped statement.
  • Run learning.py compile to refresh openspec/impl-learning/DRAFT_CANDIDATES.md. The compiler never creates active rules or skills, and impl never loads this file.
  • Five supporting OpenSpec changes mark only a recurring draft. Activation requires a separate reviewed change or an executable gate that fails on the negative case, passes on the positive case, and survives full validation.
  • For a candidate trial, compare completed states with identical task checks using learning.py compare --candidate --off-state --on-state . Treat no gain, regression, or extra cost without benefit as rejection evidence. The command reports deltas and never declares a winner.

Stop condition

Stop when every requested, in-scope task is passed or explicitly reported as fail, unobserved, or blocked. More thinking is not evidence. Never load DRAFT_CANDIDATES.md into an implementation prompt, convert recurrence counts into active rules or generated skills, or overwrite an observation record. See [the paper audit](../../research/2026-08-10-agent-trajectory-learning-audit.md).

If frontend file changes are present, a pass outcome also requires at least one task with explicit Visual: expectations. This catches plans that omitted visual validation entirely.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.