aid-execute

aid-execute is a skill for Claude Code from AndreVianna/aid-methodology. It costs 95 tokens per session (5,690 once invoked), scanned A, original, MIT.

A workflow for carrying out one already-planned task and reviewing the result. It supports task types such as research, design, implementation, testing, documentation, migration, refactoring, and configuration.

In plain words
What is it for?
Use it when task details are complete and the work is ready to be performed and reviewed.
Why use it?
It gives an approved task a defined execution and review cycle, including fixes when the review finds problems. This keeps task progress and completion state visible.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is bash .claude/aid/scripts/execute/slice-requirements.sh .aid/works/{work} task-NNN.

Good fit Use it when task details are complete and the work is ready to be performed and reviewed.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/AndreVianna/aid-methodology
agentmods
npx agentmods add skills/andrevianna/aid-methodology/aid-execute

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for aid-execute

README.md
[![agentmods](https://agentmods.dev/badge/skills/andrevianna/aid-methodology/aid-execute/github.svg)](https://agentmods.dev/skills/andrevianna/aid-methodology/aid-execute)
Your own site
<a href="https://agentmods.dev/skills/andrevianna/aid-methodology/aid-execute"><img src="https://agentmods.dev/badge/skills/andrevianna/aid-methodology/aid-execute/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for aid-execute

Your own site · 80×15
<a href="https://agentmods.dev/skills/andrevianna/aid-methodology/aid-execute"><img src="https://agentmods.dev/badge/skills/andrevianna/aid-methodology/aid-execute.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 95 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,690 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00095 $0.05690
Opus 5 $0.00048 $0.02845
Sonnet 5 $0.00019 $0.01138
Haiku 4.5 $0.00010 $0.00569

Measured 8d ago against content hash 62ee774793e6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

aid-execute scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/aid-execute/SKILL.md · 440 lines

How it starts

The opening of the file, as written. The whole thing — 440 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Execute Task

Read the type. Do the work. Review it. Fix it. Ship it.

⚠️⚠️ MANDATORY: write task State AS IT CHANGES -- read this first

Whoever executes this task -- the main/orchestrator agent running it DIRECTLY, or a dispatched sub-agent -- MUST write the task's State field the instant it changes: In Progress before starting work, In Review before dispatching the reviewer, and a terminal value (Done / Failed) when finished. No agent may skip, batch, or defer these writes, on the flat OR full layout, whether this task is run alone or as part of a pool dispatch. The full mandate, the exact command for each transition, and the why lives in references/state-execute.md § MANDATORY: State-Write Protocol -- read it before Step 1 below. Skipping these writes is the single most common root cause of a task that shows Pending in the dashboard for its entire execution and then jumps straight to Done.

⚠️ Pre-flight Checks

Check 1: Locate Work and Task

  1. Read first arg: if it starts with work- → use that work directory; if it starts with task- → treat as shorthand (single-work auto-select below)

  2. If work arg not provided (or shorthand): enumerate works cross-worktree: run bash .claude/aid/scripts/works/enumerate-works.sh (main tree + every git worktree; never the local .aid/works/ glob, which is empty on master), taking each record's field-1 work_id — single record → auto-select; multiple records → list them, ask user to choose; zero records on any worktree → STOP. "No works found. Run /aid-describe first."

  3. Read second arg (or first arg when shorthand): the task-NNN identifier; also resolve delivery-NNN from the task identifier or from the Source field

    Locate + enter the work's worktree. Now that the work id is resolved (steps 1-3 above) and before step 4 below reads anything under .aid/works/{work}/…, follow .claude/aid/templates/downstream-worktree-entry.md to normalize the work id to its bare work-NNN branch name, locate the worktree (which always exits 0 and returns <path>\t<status>), and enter the returned path. Keep the defensive empty-path/non-zero backstop that stops rather than operate blindly — it should not fire against the real helper. Never create a new worktree — creation belongs to the work-starting skills only.

  4. Detect the layout (per-work, DECLARED first; additive — does not change the full-path resolution below). Read pipeline.path from the work-root STATE.yml: lite → flat, full → nested. Infer from file presence ONLY when no value is declared, which means an un-migrated work:

    • Full path (nested): .aid/works/{work}/deliveries/ exists → tasks live at deliveries/delivery-NNN/tasks/task-NNN/DETAIL.md.
    • Flat path (feature-001, single-delivery): .aid/works/{work}/tasks/task-NNN/DETAIL.md exists directly under the work root AND no deliveries/ wrapper under it → the delivery is always the synthesized delivery-001 (no per-task STATE.yml; task mutable cells live in the work-root STATE.yml's tasks_lifecycle mapping instead — see ## Workspace below).
  5. Find the task definition at the layout-appropriate path from step 4.

  6. Task not found → STOP. List available tasks.

Read the full file on GitHub · 440 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 440 lines · 95 tokens per session scan A 62ee774793e6

Subscribe to this mod's changes

aid-execute is a skill published in the GitHub repository AndreVianna/aid-methodology (5 stars, last pushed yesterday), licensed MIT. It adds 95 tokens to every session and 5,690 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

systemic-issue-triage

Trigger: new issue, bug report, triage, backlog, issue flood, community report, root cause, dead-end, blocked user. Attack issues by root class, never one-by-one; fixes must shrink the system, not grow it.

Gentleman-Programming/gentle-ai · 57 tokens

triage-issue

Intelligently triage bug reports and error messages by searching for duplicates in Jira and offering to create new issues or add comments to existing ones. When an agent needs to: (1) Triage a bug report or error message, (2) Check if an issue is a duplicate, (3) Find similar past issues, (4) Create a new bug ticket…

atlassian/atlassian-mcp-server · 116 tokens

bug-triage

Read all open bugs in production/qa/bugs/, re-evaluate priority vs. severity, assign to sprints, surface systemic trends, and produce a triage report. Run at sprint start or when the bug count grows enough to need re-prioritization.

Donchitos/Claude-Code-Game-Studios · 59 tokens

investigation

Create an investigation ticket + live-doc for sustained root-cause work (retros, bug archaeology, regression hunts).

me2resh/apexyard · 26 tokens

browse-flows

Browse Power Automate environments and flows interactively. Use when the user wants to browse, list, or explore their flows and environments.

microsoft/power-platform-skills · 31 tokens

operating-cadence

Designs the rhythm an organization runs on — which reviews happen weekly, monthly and quarterly, what each one decides, who owns the numbers presented, and how a signal at the front line reaches the people who can act on it. Use this to set up a management operating system, fix a meeting calendar that produces no…

cbrock84/headcount · 95 tokens