A lightweight, natural-language-driven interaction standard and skill suite for coding agents.
Make the agent understand your intent. Ground architecture in first-principles trade-offs. Constrain every action to declared bounds. Demand fresh evidence over claims. Supports both single Scopes and nested modular Epics.
English | 中文
In my vibe coding practice, I tried several AI-process-driven skills (OpenSpec, superpowers, gsd-core).
While powerful, real-world development highlighted recurring friction points: some lacked architectural trade-off evaluations and polluted Git history with internal jargon (R1, T1); some trusted the agent too much and let silent degradation or half-baked TODOs slip through; others required heavy CLI interactions or duplicated markdown tracking tables that consumed token context; and completed directories frequently lingered as zombie folders without being archived.
I designed Beyond Code to bridge these gaps: no bespoke CLI tools, no token-wasting bureaucracy. Instead, it enforces first-principles engineering, clean self-descriptive naming, single-source-of-truth progress tracking, and adversarial verification so developers and agents collaborate with clarity and deliver production-grade code.
- User intent before code (No Code Before Spec): Confirm requirements, core contracts, and Explicit Non-Goals before coding non-trivial features.
- First-Principles & Trade-off Rigor: Ground architecture in fundamental requirements. Evaluate explicit Pros & Cons and document what was given up.
- Self-Descriptive Clarity (No Internal Code Names): Abolish abstract code names (
R1,T1). Use self-descriptive scenario and task titles. NEVER leak internal process markers into Git commit history. - One Home Per Fact: Eliminate duplicate tracking tables and checklists.
plan.mdis the single source of truth for architecture, tasks, and live progress. - Modular Decomposition (Nested Epics & Scopes): Support breaking complex features into a clean nested Epic with modular sub-scopes executed along a DAG roadmap.
- Plan exhaustively, execute within bounds: Tasks explicitly declare affected files and interfaces. Substantive deviations trigger an immediate STOP for user review.
- First-Principles Root-Cause Protocol: When bugs occur during execution, trace upstream callers and contracts instead of slapping downstream band-aids.
- Independent Adversarial Verification: Verify results with an optional isolated Auditor Subagent (free from builder confirmation bias) to filter benign glue code and highlight substantive deviations.
- Three-Way Acceptance Triage & Atomic Archiving: User sign-off triggers immediate atomic archiving in the same turn to eliminate zombie folders, with seamless support for in-flight remediation and course correction.
- Evidence, not claims (EVIDENCE BEFORE CLAIMS): Demand fresh command outputs and raw evidence before declaring success.
npx skills add Celec7/beyond-codeTriggered via natural language (e.g. "let's plan first", "follow beyond-code"). When instructed to "just do it", the agent activates the Autonomous Pipeline: full discipline, zero conversational interruptions, alerting only on substantive exceptions.
Think ─────────→ Plan ─────────→ Build ─────────→ Verify (Auditor)
│ │ │ │
└── spec.md └── plan.md └── DAG tasks + └── independent audit +
(scenarios + (Pros/Cons + read-only trace + blast radius +
contracts + bounds + clean Git commits 3-way triage +
Non-Goals) DAG tasks) atomic archive)
- Think: Scope check (Single Scope vs. Nested Epic). Produces
spec.mdwith self-descriptive scenarios, Core Data Contracts & Invariants, Explicit Non-Goals, and reasonable Assumptions. - Plan: Architecture trade-offs (Pros & Cons) + unified data flows + atomic tasks with dependency DAGs (
Depends On) and context code anchors. Clear implementation bounds. - Build: Executes strictly in topological DAG order. Enforces the First-Principles Root-Cause Protocol (trace upstream callers; no blind symptom patching). Keeps Git history clean of internal markers.
- Verify: User-guided independent Auditor Subagent choice. Analyzes Blast Radius, prioritizes substantive deviations and silent degradation in an Exception-First report; updates Epic roadmap or executes atomic archiving with lean
summary.mdon sign-off.
.beyond-code/
├── config.yaml # commit preferences (per-task / per-plan / manual)
├── <scope-slug>/
│ ├── spec.md # requirements + data contracts + Non-Goals
│ └── plan.md # architecture Pros/Cons + bounds + DAG tasks & progress
└── .archive/ # completed and summarized scopes
.beyond-code/
├── config.yaml
├── <epic-slug>/
│ ├── spec.md # global architecture + data contracts + Non-Goals
│ ├── roadmap.md # scopes DAG roadmap & completion status
│ ├── <sub-scope-1>/ # sub-scope 1 (inherits global contracts)
│ │ └── plan.md # module trade-offs + bounds + DAG tasks & progress
│ └── <sub-scope-2>/ # sub-scope 2
│ └── plan.md # module trade-offs + bounds + DAG tasks & progress
└── .archive/ # whole Epic archived upon completion