plan-execute-verify-claude-code

作者 aufamubarak已验证

Best AI Coding Workflow Plugin Pipeline 2026

151
Stars
0
Forks
HTML
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/aufamubarak/plan-execute-verify-claude-code

快速入门

使用 plan-execute-verify-claude-code 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

preview

NeuroStack Architect

A cognitive orchestration platform that choreographs AI model pipelines through recursive verification layers — the next evolution of Plan-Execute-Verify thinking, repurposed for distributed agent swarms.

NeuroStack Language License Status


🧠 Overview

Imagine a blueprint that doesn't just sit on paper — it breathes. NeuroStack Architect is a self-validating orchestration harness designed for developers who build with large language models at scale. Inspired by the Plan-Execute-Verify paradigm, this repository reimagines the three-phase pipeline as a living architecture where every plan is questioned, every execution is observed, and every verification seeds the next iteration.

Think of it as a conductor for AI symphonies — where each instrument (agent, model, or tool) plays its part, but the conductor listens, corrects, and rewrites the score in real time.


🔍 What Makes This Distinct?

Unlike traditional coding harnesses that treat verification as a final gate, NeuroStack Architect embeds hook-driven verification at every decision node. The harness doesn't just check output — it audits the intent, process, and result across three distinct cognitive layers:

LayerRoleMetaphor
PlanStrategic decomposition of tasks into verifiable unitsThe cartographer drawing maps that must survive the terrain
ExecuteControlled execution with state snapshots at each stepThe clockmaker assembling gears under a magnifying glass
VerifyRecursive validation against intent, context, and constraintThe librarian checking every returned book for hidden notes

Download


🎯 Why Build With This?

🧩 For the Architect of Tomorrow

If you're stitching together LLM chains, agent networks, or multi-model workflows, you've likely encountered the silent drift problem — where pipelines produce plausible but wrong outputs. NeuroStack Architect solves this by introducing verification contracts that every execution unit must satisfy before the next phase begins.

🌐 Multilingual by Design

The verification engine speaks the language of your data. Whether your prompts are in English, Mandarin, Arabic, or Spanish, the hook system adapts its validation grammar to the linguistic context of the request. This isn't translation — it's semantic mirroring.

⚡ Responsive to the Second

Every hook in the pipeline can be toggled, tuned, or replaced without restarting the orchestration layer. This hot-swappable architecture means your 24/7 workflows never sleep — and your verification logic can evolve while the system hums.


🏛️ Core Architecture

┌─────────────────────────────────────────────────┐
│                  Plan Phase                      │
│  ┌──────────┐  ┌─────────┐  ┌───────────────┐ │
│  │ Intent   │→ │ Decom-  │→ │ Constraint    │ │
│  │ Parser   │  │ poser   │  │ Mapper        │ │
│  └──────────┘  └─────────┘  └───────────────┘ │
└───────────────────┬─────────────────────────────┘
                    │
┌───────────────────▼─────────────────────────────┐
│                 Execute Phase                    │
│  ┌──────────┐  ┌─────────┐  ┌───────────────┐ │
│  │ Context  │→ │ Action  │→ │ State         │ │
│  │ Loader   │  │ Runner  │  │ Snapshotter   │ │
│  └──────────┘  └─────────┘  └───────────────┘ │
└───────────────────┬─────────────────────────────┘
                    │
┌───────────────────▼─────────────────────────────┐
│                 Verify Phase                     │
│  ┌──────────┐  ┌─────────┐  ┌───────────────┐ │
│  │ Outcome  │→ │ Loop    │→ │ Seed Next     │ │
│  │ Auditor  │  │ Detector│  │ Plan          │ │
│  └──────────┘  └─────────┘  └───────────────┘ │
└─────────────────────────────────────────────────┘

🧰 Features That Matter

📋 Plan-Phase Intelligence

  • Intent Decomposition Engine — breaks high-level goals into atomic, verifiable micro-tasks
  • Constraint Propagation — ensures every sub-plan inherits global boundaries
  • Conflict Detection — identifies contradiction between plan steps before execution begins

🛠️ Execute-Phase Controls

  • Deterministic Snapshots — every execution branch is captured as an immutable state object
  • Graceful Degradation — when a step fails, the harness reroutes instead of crashing
  • Parallel Path Awareness — multiple execution threads are tracked and synchronized at verification gates

✅ Verify-Phase Depth

  • Recursive Verification Hooks — each verification can spawn sub-verifications for complex outputs
  • Semantic Equivalence Checking — goes beyond string matching to verify meaning preservation
  • Bias and Drift Detection — automated scanning for output patterns that deviate from intended distribution

🔌 Integration-Ready Design

  • Plugin Architecture — attach custom verifiers, executors, or planners without modifying core
  • Event Logging — every hook fires structured logs suitable for downstream analysis
  • Adapter Layer — connect to any model provider, vector store, or external API through a unified interface

🌍 For Whom This Harness Sings

You Are...And You Want...NeuroStack Delivers...
An AI application builderReliable multi-step agent chainsVerification gates that catch hallucinations mid-pipeline
A research engineerReproducible experiment workflowsState snapshots that replay any point in the pipeline
A product team shipping 24/7Systems that don't drift overnightHot-swappable verification rules without downtime
A language specialistCulturally aware output validationMultilingual semantic checking at every hook

🧭 Getting Oriented

The harness is organized around three concentric circles:

  1. Core Engine — the Plan-Execute-Verify loop with hook injection points
  2. Plugin Registry — where custom planners, executors, and verifiers are registered
  3. Workspace — the configuration, state storage, and output directory

Each component communicates through typed event channels, meaning you can observe, intercept, or replay any message in the system.


📐 Configuration Philosophy

NeuroStack Architect embraces convention over configuration — but convention is just a starting point. Every phase can be tuned through a single configuration document that reads like a specification:

{
  "plan": {
    "depth": 5,                     // Maximum decomposition depth
    "conflictThreshold": "strict",  // Reject on any conflict
    "language": "auto"              // Auto-detect from input
  },
  "execute": {
    "maxRetries": 3,
    "snapshotInterval": "everyStep",
    "parallelism": "bounded"
  },
  "verify": {
    "recursive": true,
    "semanticModel": "default",
    "driftWindow": 100              // Compare against last 100 verifications
  }
}

Download


🧪 Quality Without Compromise

Every verification hook undergoes its own validation suite before integration. This meta-verification ensures that the harness's ability to catch errors doesn't itself become a source of error. The result is a system where trust is earned, not assumed.


🔐 License & Access

This project is released under the MIT License — use it, modify it, embed it, ship it. The only expectation is that you build something meaningful with the feedback loops this architecture provides.

Read the full license


⚠️ Disclaimer

NeuroStack Architect is a structural tool for improving the reliability of AI-generated outputs. No verification system can guarantee 100% accuracy, completeness, or safety of model outputs. Users are encouraged to implement human-in-the-loop oversight for high-stakes applications. The authors assume no liability for decisions made based on outputs processed through this harness.


🌱 Growing the Ecosystem

This repository is the seed. The forest is what you build around it. Contributions that extend the verification vocabulary, introduce new planner strategies, or improve the semantic checking engine are welcome. The hook system is designed to be extended, not replaced.


🗓️ Versioning & Roadmap

Current release: Beta 2026.1
Focus areas for upcoming iterations:

  • Real-time verification visualization dashboard
  • Cross-model verification contracts (compare outputs across providers)
  • Temporal drift analysis across extended workflow runs

Download


Built with the conviction that verification isn't a step — it's a culture.

常见问题

What is plan-execute-verify-claude-code?

plan-execute-verify-claude-code is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by aufamubarak. Best AI Coding Workflow Plugin Pipeline 2026. It has 151 GitHub stars.

Is plan-execute-verify-claude-code safe to use?

Yes. plan-execute-verify-claude-code passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install plan-execute-verify-claude-code?

Clone the repository with "git clone https://github.com/aufamubarak/plan-execute-verify-claude-code" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is plan-execute-verify-claude-code written in?

plan-execute-verify-claude-code is primarily written in HTML. It is open-source under aufamubarak on GitHub, so you can review or fork the full source.

Are there alternatives to plan-execute-verify-claude-code?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh plan-execute-verify-claude-code against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情