goap-agent

goap-agent is a skill for Claude Code, Codex from d-o-hub/github-template-ai-agents. It costs 0 tokens per session (1,520 once invoked), scanned A, original, MIT.

A planning and coordination guide for large coding tasks that need several steps or agents working together. It breaks work into goals, maps dependencies, chooses an approach, and tracks progress.

In plain words
What is it for?
Use it to plan major code changes, split cross-domain problems into smaller goals, coordinate multiple agents, and organize validation steps.
Why use it?
It helps prevent complex work from becoming a list of disconnected tasks. Checkpoints and shared state make it easier to coordinate work and verify results.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/d-o-hub/github-template-ai-agents/goap-agent
Any agent
npx skills add d-o-hub/github-template-ai-agents --skill goap-agent
Clone the repo
git clone --depth 1 https://github.com/d-o-hub/github-template-ai-agents

Made for: Claude Code, Codex.

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 goap-agent

README.md
[![agentmods](https://agentmods.dev/badge/skills/d-o-hub/github-template-ai-agents/goap-agent.svg)](https://agentmods.dev/skills/d-o-hub/github-template-ai-agents/goap-agent)
Your own site
<a href="https://agentmods.dev/skills/d-o-hub/github-template-ai-agents/goap-agent"><img src="https://agentmods.dev/badge/skills/d-o-hub/github-template-ai-agents/goap-agent.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,520 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00000 $0.01520
Opus 5 $0.00000 $0.00760
Sonnet 5 $0.00000 $0.00304
Haiku 4.5 $0.00000 $0.00152

Measured 6d ago against content hash 0b023156403b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

goap-agent 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 6d 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.

.agents/skills/goap-agent/SKILL.md · 201 lines

How it starts

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

GOAP Agent Skill: Goal-Oriented Action Planning

Enable intelligent planning and execution of complex multi-step tasks through systematic decomposition, dependency mapping, and coordinated multi-agent execution.

Always use the plans/ folder for all files. Use plans/GOAP_STATE.md to track persistent state.

Quick Reference

  • execution-strategies.md - Detailed guide on execution patterns
  • references/guide.md - Complete examples, templates, and advanced topics

When to Use

Use this skill when facing:

  • Complex Multi-Step Tasks: Tasks requiring 5+ distinct steps
  • Cross-Domain Problems: Issues spanning multiple areas
  • Optimization Opportunities: Tasks benefiting from parallel execution
  • Quality-Critical Work: Projects requiring validation checkpoints

Core GOAP Methodology

The GOAP Planning Cycle

1. ANALYZE → 2. DECOMPOSE → 3. STRATEGIZE → 4. COORDINATE → 5. EXECUTE → 6. SYNTHESIZE

Phase 1: Task Analysis (Analyze & Strategize)

Before decomposing tasks, ensure architectural decisions are sound:

  1. Analyze: Use triz-analysis or triz-solver to evaluate the problem and resolve contradictions.
  2. Decide: Formulate an ADR (Architecture Decision Record) detailing Context, Decision, and Consequences.
  3. Gate: Wait for human approval of the ADR before proceeding to decomposition.
## Task Analysis

**Primary Goal**: [Clear statement of what success looks like]
**Constraints**: [Time, Resources]
**Complexity**: Simple/Medium/Complex
**ADR Link**: [Link to approved Architecture Decision Record]

Context: Use Explore agent, check past patterns, perform TRIZ analysis, and record architectural decisions.

Phase 2: Task Decomposition

Decompose high-level objectives into manageable, testable sub-tasks.

Decomposition Framework

  1. Requirements Analysis: Extract primary objective, implicit requirements, constraints, success criteria.
  2. Goal Hierarchy: Top-down decomposition into sub-goals and atomic tasks.
  3. Dependency Mapping: Sequential (A→B→C), Parallel (A,B,C), Converging (A,B,C→D).
  4. Success Criteria: Define inputs, outputs, quality standards.

Read the full file on GitHub · 201 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 6d ago First seen · 201 lines · 0 tokens per session scan A 0b023156403b

Subscribe to this mod's changes

goap-agent is a skill published in the GitHub repository d-o-hub/github-template-ai-agents (2 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,520 tokens. 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-08-31.

Related

Other skills, from other repositories

git-flow-pr

Executes the full PR-driven development workflow: create an isolated feature branch from the current work, commit all staged changes, rebase cleanly onto the selected base branch (skipping any ancestor commits already merged), push the branch, and open a GitHub pull request linked to a related issue. Includes guidance…

soulcodex/agentic · 103 tokens

memory-continuity

Preserves cross-session continuity with deterministic MEMORY.md, index.md, and snapshot handoffs under .agentic/memories/.

soulcodex/agentic · 30 tokens

new-gh-issue-orchestration

Orchestrates a GitHub-issue-driven delivery workflow from issue intake to PR creation using reviewer-first then worker execution. Invoked when the user provides a GitHub issue link/number and asks to start end-to-end delivery.

soulcodex/agentic · 54 tokens

git-worktree-workspaces

Sets up and uses Git worktrees for parallel task workspaces in the same repository clone, including safe cleanup of local worktrees. Invoked when the user asks to work on multiple branches at once, isolate tasks without extra clones, or create/remove worktrees.

soulcodex/agentic · 58 tokens

browser-remote-control

Use when an AI agent needs to automate a real browser through Agent Browser Bridge CLI, including remote Chrome control, page extraction, clicking, typing, navigation, or screenshots.

justlovemaki/PrismFlowAgent · 39 tokens

prismflow-memory-read

检索 PrismFlow 长期记忆与知识库的专用技能。用于用户提到“之前”“上次”“我喜欢的”“项目背景”“历史决策”等需要回溯上下文的场景,或当 Codex 意识到当前回复存在信息缺口时。必须同时调用 querymemory 和 queryknowledge 获取相关历史参考信息,并且只返回历史参考信息,不负责写入新记忆或生成综合结论。.

justlovemaki/PrismFlowAgent · 106 tokens