cd /news/ai-agents/agile-v-turning-ai-agents-into-verif… Β· home β€Ί topics β€Ί ai-agents β€Ί article
[ARTICLE Β· art-14651] src=github.com pub= topic=ai-agents verified=true sentiment=↑ positive

Agile V: Turning AI Agents into Verifiable Engineering Systems

Agile V has released a framework that transforms unreliable AI agents into verifiable engineering systems by enforcing formal traceability, independent verification, and human gates before deployment. The framework requires every line of code to link to requirement, artifact, and test case IDs, and halts agents when requirements are unclear to prevent silent assumptions and hallucinations. This addresses the catastrophic failures of AI agents that generate code without requirements, skip testing, and deploy autonomously to production.

read21 min publishedMay 26, 2026

AI agents hallucinate. They generate code without requirements, skip testing, make silent assumptions, and deploy to production without approval. Great for demos. Catastrophic for real products.

Transform unreliable AI agents into Verifiable Engineering Systems with:

  • βœ… Formal Traceabilityβ€” Every line of code links toREQ-XXXX

β†’ART-XXXX

β†’TC-XXXX

  • βœ… Independent Verificationβ€” Red Team Verifier tests what Build Agent creates (no self-grading) - βœ… Hardware Awarenessβ€” Agents ask about RAM/CPU/GPU before optimizing (no "works on my machine") - βœ… Human Gatesβ€” Evidence Summaries before deployments (no autonomous production releases) - βœ… Halt on Ambiguityβ€” Agents stop and ask when requirements are unclear (no silent assumptions) - βœ… Compliance-Readyβ€” Auto-generates ISO 9001, ISO 27001, GxP artifacts from day 1 - βœ… Multi-Platformβ€” Works with Claude Code, Cursor, VS Code, GitHub Copilot

Claude Code:

/plugin install agile-v-skills

Cursor:

cp -r .cursor/rules/ /path/to/your/project/.cursor/

VS Code / GitHub Copilot:

cp -r agile-v-core/ ~/.copilot/skills/
cp -r build-agent/ ~/.copilot/skills/

πŸ‘‰ See Installation Guide for detailed platform-specific instructions

You: "Add user authentication"

Agent: ⚠️ HALT CONDITION: No requirement specification found

Before implementing, I'll invoke the Requirement Architect to:
1. Decompose "user authentication" into formal requirements
2. Define acceptance criteria
3. Identify security and compliance constraints

[Requirement Architect creates REQ-0001, REQ-0002...]

Build Agent: βœ“ Implementation complete (ART-0001 β†’ REQ-0001)
Red Team Verifier: Testing independently...
  - Found 2 security issues Build Agent missed
  - SECURITY-001: No max password length (DoS risk)
  
[Build Agent fixes issues based on Red Team feedback]

Red Team Verifier: βœ“ All tests pass
Agent: Ready for Human Gate approval

Result: Production-ready code with full traceability and independent verification.

Feature Typical AI Agents Agile V Framework
Traceability
❌ Code appears without requirements βœ… Every artifact links to REQ-XXXX
Verification
❌ Self-tests own code (confirmation bias) βœ… Independent Red Team Verifier
Hardware
❌ Assumes unlimited resources βœ… Validates RAM/CPU/GPU constraints
Deployment
❌ Autonomous production pushes βœ… Human Gates with Evidence Summaries
Ambiguity
❌ Silent assumptions, hallucinations βœ… Halts and asks clarifying questions
Compliance
❌ Manual audit prep (weeks) βœ… Auto-generated ISO/GxP artifacts
Multi-Cycle
❌ Fresh start each iteration βœ… Change Requests, version control, regression tests

This repository contains the official collection of Agent Skills for the Agile Vβ„’ framework. These skills transform standard LLMs into specialized engineering agents capable of building, verifying, and auditing complex systems with mathematical rigor.

The Agile Vβ„’ Manifesto provides the philosophy; this repository provides the mechanics.

By deploying these skills, you move away from "unstructured prompting" and toward a formal Autonomous Quality Management System (AQMS). Every skill in this library is built to enforce:

Traceability: Every action is linked to a Requirement ID.Verification: No artifact is created without a "Red Team" challenge.Human Curation: Automated stops at critical "Human Gates."

The skills are organized following the Agile Vβ„’ Infinity Loop. Each skill lives at the root level (or under domains/

for language-specific extensions) for ease of use. You can reference skills directly with simple paths like ./agile-v-core/SKILL.md

when configuring Cursor or other agent tools.

β”œβ”€β”€ agile-v-core/           # Foundation: Core philosophy and operational logic
β”œβ”€β”€ requirement-architect/  # Left Side: Intent and decomposition
β”œβ”€β”€ logic-gatekeeper/       # Left Side: Ambiguity and constraint validation
β”œβ”€β”€ build-agent/            # Apex: Core build agent (language-agnostic)
β”œβ”€β”€ test-designer/          # Apex: Verification suite design
β”œβ”€β”€ schematic-generator/    # Apex: Schematics, netlists, HDL
β”œβ”€β”€ domains/                # Apex: Language-specific build agent extensions
β”‚   β”œβ”€β”€ build-agent-dart/
β”‚   β”œβ”€β”€ build-agent-embedded/
β”‚   β”œβ”€β”€ build-agent-js/
β”‚   β”œβ”€β”€ build-agent-nestjs/
β”‚   └── build-agent-python/
β”œβ”€β”€ red-team-verifier/      # Right Side: Verification and Red Teaming
β”œβ”€β”€ compliance-auditor/     # Compliance: Audit and governance
└── documentation-agent/    # Documentation: Standards-based repo docs (ISO 9001, V-Model, ISO 27001)
Skill Category Path Purpose
agile-v-core Foundation agile-v-core/
The baseline "operating system" for all agents. Includes context engineering, orchestration pipeline, state persistence, and model tier guidance.
requirement-architect Left Side requirement-architect/
Converts intent into atomic, traceable requirements.
logic-gatekeeper Left Side logic-gatekeeper/
Validates requirements for ambiguity and physical/hardware constraints.
build-agent Apex build-agent/
Generates code, firmware, HDL from approved requirements (language-agnostic). Includes context engineering, pre-execution validation, and post-verification feedback loop.
test-designer Apex test-designer/
Designs verification suite from requirements onlyβ€”runs parallel to Build Agent.
schematic-generator Apex schematic-generator/
Generates schematics, netlists, HDL for hardware/PCB projects.
build-agent-python Apex domains/build-agent-python/
Comprehensive Python build agent for backends (FastAPI/Flask/Django), data pipelines, ML, and scripts. Includes architecture patterns, testing strategy, security guidance, and SCOPE-V integration.
build-agent-js Apex domains/build-agent-js/
Comprehensive JavaScript/TypeScript build agent for React/Next.js frontends and Node.js backends. Includes state management, security patterns, testing strategy, and build tools.
build-agent-dart Apex domains/build-agent-dart/
Comprehensive Dart/Flutter build agent for mobile apps. Includes BLoC/Provider state management, platform channels, widget patterns, and testing strategy.
build-agent-embedded Apex domains/build-agent-embedded/
Comprehensive embedded C/C++ build agent for safety-critical systems. Includes MISRA-C, RTOS patterns, hardware abstraction, security, and certification support (ISO 26262, IEC 61508).
build-agent-nestjs Apex domains/build-agent-nestjs/
Comprehensive NestJS build agent for enterprise backends. Includes dependency injection, TypeORM/Prisma, GraphQL, microservices, and testing patterns.
red-team-verifier Right Side red-team-verifier/
Challenges build artifacts; produces Validation Summary for Human Gate 2. Includes stub/anti-pattern detection and post-verification feedback protocol.
compliance-auditor Compliance compliance-auditor/
Automates decision logging, traceability matrix (ATM), and VSR for ISO/GxP.
documentation-agent Compliance documentation-agent/
Generates standards-based repo documentation (ISO 9001, V-Model, ISO 27001, optional GAMP 5) into docs/ with hub README, cross-reference matrix, Mermaid diagrams, and compliance posture documentation.

The repository includes a full compliance posture assessment under [docs/compliance/](docs/compliance/)

. This documentation was generated from a clause-by-clause audit of the v1.3 skills against ISO 9001:2015, ISO 13485:2016, AS9100D, ISO 27001:2022, and GxP/GAMP 5.

Document Purpose

ISO 9001 MatrixISO 13485 MatrixAS9100D MatrixISO 27001 MatrixGxP / GAMP 5 MatrixGap RoadmapNote

The skills claim "ISO 9001 / ISO 27001 Aligned (Design Phase); GxP-Aware"

. This is an honest scope -- the skills cover design and development controls, not production, manufacturing, or full organizational QMS. The compliance documentation tells you exactly what you get and what you still need to do for your regulatory context.

sequenceDiagram
    participant Human
    participant RA as Requirement Architect
    participant LG as Logic Gatekeeper
    participant BA as Build Agent
    participant TD as Test Designer
    participant RTV as Red Team Verifier
    participant CA as Compliance Auditor
    participant DA as Documentation Agent

    Human->>RA: Product Intent
    RA->>RA: REQ-XXXX, Blueprint
    RA->>Human: Human Gate 1: Approve Blueprint
    Human->>LG: Approved Blueprint
    LG->>LG: Ambiguity and Constraint Check
    opt Unclear constraints or ambiguity
        LG->>Human: Halt: Clarify ambiguity or constraints
        Human->>LG: Clarification
    end
    LG->>BA: Approved Requirements
    LG->>TD: Same Requirements (parallel)

    par Apex
        BA->>BA: Generate Artifacts and Build Manifest
        opt Ambiguous requirement
            BA->>Human: Halt: Clarify requirement
            Human->>BA: Clarification
        end
        TD->>TD: Generate TC-XXXX from REQ only
    end

    BA->>RTV: Artifacts and Manifest
    TD->>RTV: Test Cases
    RTV->>RTV: Execute Tests (independent verification)
    RTV->>Human: Human Gate 2: Validation Summary
    CA->>CA: Decision Log, ATM, VSR (throughout)
    opt On request
        Human->>DA: Generate or refresh docs
        DA->>DA: docs/ suite (hub, standards, cross-ref)
    end

The Requirement Architect exports the approved Blueprint (after Human Gate 1) to a requirements file (default: REQUIREMENTS.md

in the project root). The Logic Gatekeeper then reads that file, validates it (ambiguity, constraints, conflicts), and writes back any user-approved adjustments to the same file. All downstream agents (Build Agent, Test Designer, Red Team Verifier, Schematic Generator, Compliance Auditor) read requirements from this file, not from in-chat handoff. Using a single persisted file as the requirements source reduces context-window pressure, avoids carrying the full Blueprint in conversation, and lets parallel or sequential agent runs (e.g. build per feature) reference the same canonical artifact.

The Documentation Agent writes all output into the project's **docs/

** directory (created if missing). The hub **docs/README.md**

provides the document map, quick navigation and per-standard tables, cross-reference matrix (concerns Γ— standards), repository structure reference, and applicable standards table. One subdirectory per selected standard, e.g. **iso9001/**

, **iso27001/**

, **v-model/**

by default; (optionally **gamp5/**

or other standards when the user requests it) contains numbered markdown documents for that standard. Every generated document (except the hub) includes a header (Document ID, Version, Date, Classification, Status), navigation (Back to Documentation Hub, Previous/Next when applicable), and a footer with a Document History table; any diagrams are Mermaid only, embedded in markdown. The default standards are ISO 9001, V-Model (lifecycle), and ISO 27001; additional standards (e.g. GAMP 5) are included only when the user specifies them.

Version 1.2 introduces context engineering, orchestration pipeline, state persistence, and post-verification feedback patterns adapted from Get Shit Done (GSD) by Lex Christopherson (MIT License). These additions address how agents manage context windows, coordinate handoffs, persist project state across sessions, and iterate after verification failures.

Key additions:

Context Engineering(agile-v-core

,build-agent

, all domain agents): Rules for managing context window quality -- thin orchestrator pattern, fresh context per task, task sizing to 50% of context, passing file paths instead of contents.Orchestration Pipeline(agile-v-core

): Defines pipeline stages, handoff rules, wave-based parallel execution with dependency analysis, and checkpoint types (auto, human-verify, human-decision, human-action).State Persistence(agile-v-core

): Standard.agile-v/

project directory structure for persisting requirements, build manifests, decision logs, traceability matrices, and session state across sessions.Pre-Execution Validation(build-agent

): 5-dimension check before synthesis -- requirement coverage, artifact completeness, dependency order, scope sanity, and interface contracts.Post-Verification Feedback Loop(build-agent

,red-team-verifier

): Auto-fix rules, severity classification (CRITICAL/MAJOR/MINOR), 3-attempt limit per failure, and re-verification protocol with append-only records.Stub and Anti-Pattern Detection(red-team-verifier

): 11-item detection checklist for placeholder returns, TODO markers, empty handlers, hardcoded secrets, and more.Model Tier Guidance(agile-v-core

): Recommended model capability tiers per agent role (High for architecture decisions, Medium for code generation, Low for structured logging).

Version 1.3 introduces the multi-cycle V-loop -- the ability to run second and subsequent iterations while preserving full traceability, versioned documents, and audit evidence from prior cycles.

Key additions:

Iteration Lifecycle(agile-v-core

): Defines Cycle IDs (C1

,C2

, ...), cycle triggers, re-entry points, document versioning scheme, and cycle archival to.agile-v/cycles/CN/

. Requirements carry per-REQ status tags (approved

,modified

,new

,deprecated

,superseded

) with cycle references.Change Request Protocol(agile-v-core

,requirement-architect

):CR-XXXX

records in.agile-v/CHANGE_LOG.md

that formally track every requirement modification between cycles with rationale, impact analysis, and Human Gate approval.Multi-Cycle Re-Validation(logic-gatekeeper

): Scoped re-validation -- onlynew

andmodified

requirements go through full validation; unchanged requirements are skipped unless constraints shifted.Artifact Versioning(build-agent

):ART-XXXX.N

revision scheme -- unchanged artifacts carry forward without rebuild; modified artifacts get a revision bump with CR reference.Regression and Delta Testing(test-designer

): Test cases classified asdelta

(new/modified REQs) orregression

(unchanged REQs). Regression baseline carried forward from prior cycle. Retired tests preserved for traceability.Cycle-Aware Verification(red-team-verifier

): Delta and regression results reported separately. Unexpected regression failures (no related CR) are automaticallyCRITICAL.** Cycle-Aware ATM**(compliance-auditor

): Traceability matrix partitioned by cycle. CR end-to-end chain validation. Cycle boundary audit checklist. VSR extended with Cycle History table.

Version 1.4 adds Phase 1-2 adoption from the competitive analysis: machine-readable trace (TRACE_LOG.md

), eval flywheel (EVAL_RESULTS.md

  • Human Gate 2 EvalGate block in VALIDATION_SUMMARY.md

), policy-as-code (POLICY.yaml

  • templates), failure taxonomy (FT-*

codes on every VER-*

record), and durable Human Gate checkpoints (CHECKPOINTS.md

with resume_token

linked to APPROVALS.md

). Normative schema: docs/agile-v-runtime/01_SCHEMAS.md; copy templates from

.

templates/agile-v/

Version 1.6 consolidates runtime governance adoption by shipping the repository-level runtime schema spec + templates and aligning core routing/docs for Eval Gate evidence and durable HITL workflow. See v1.6 release notes.

Version 1.3 also includes compliance hardening based on a clause-by-clause audit against ISO 9001:2015, ISO 13485:2016, AS9100D, ISO 27001:2022, and GxP/GAMP 5. The compliance metadata has been updated from "ISO/GxP-Ready"

to "ISO 9001 / ISO 27001 Aligned (Design Phase); GxP-Aware"

to accurately reflect the scope.

Key additions:

Risk Management(agile-v-core

):RISK_REGISTER.md

with severity matrix, risk categories (technical, process, compliance, security), and assessment rules per pipeline stage. Addresses ISO 9001 6.1, AS9100D 8.1.1.CAPA Protocol(agile-v-core

):CAPA_LOG.md

with root cause analysis (5-Whys), corrective action, preventive action, and effectiveness verification. Addresses ISO 13485 8.5, ISO 9001 10.1/10.2.Human Gate Approval Records(agile-v-core

):APPROVALS.md

with approver identity, role/authority, signature method, and evidence reference. Minimum requirements by regulatory context (non-regulated through ISO 13485). Addresses 21 CFR Part 11, Annex 11.AI Agent Security Controls(agile-v-core

): LLM provider documentation inconfig.json

(data residency, retention, training usage, confidentiality certification), data classification rules, agent access controls, and file integrity verification. Addresses ISO 27001 A.5.23, A.8.3.Periodic Review and Revalidation(agile-v-core

):REVALIDATION_LOG.md

with defined triggers (model change, runtime change, skill change, accumulated CRs, 12-month interval). Model version tracking inconfig.json

. Addresses GxP/GAMP 5 periodic review.Quality Metrics and KPIs(compliance-auditor

): 7 defined metrics (first-pass verification rate, defect density, requirement coverage, regression pass rate, CR cycle time, open CAPA count, traceability completeness) with trend analysis. Addresses ISO 9001 9.1, AS9100D 9.1.1.Secure Coding(build-agent

): 7 minimum secure coding rules (input validation, error handling, no hardcoded secrets, parameterized queries, bounded operations, least privilege, dependency awareness). Addresses ISO 27001 A.8.28.Nonconformity Disposition(red-team-verifier

): Formal disposition categories (rework, accept-as-is, reject, defer) with CAPA trigger criteria. Addresses ISO 9001 8.7, ISO 13485 8.3.

All 8 core skill files have been rewritten for minimal context window consumption. Total reduction: 1,670 β†’ 670 lines (60%), with zero information loss.

Skill Before After Reduction
agile-v-core 610 lines / 33 KB 227 lines / 12 KB 63%
build-agent 151 lines / 9.6 KB 74 lines / 3.8 KB 51%
red-team-verifier 212 lines / 10.5 KB 89 lines / 4.2 KB 58%
compliance-auditor 186 lines / 8.4 KB 77 lines / 3.3 KB 59%
requirement-architect 119 lines 50 lines 58%
logic-gatekeeper 71 lines 38 lines 46%
test-designer 124 lines 53 lines 57%
documentation-agent 197 lines 62 lines 69%

Techniques used:

**sections_index

in YAML frontmatter** -- agents jump to the section they need without scanning the full document.Directive tables replace prose paragraphs -- 6 core directives fit in one table instead of 6 subsections.Inline notation(;

andΒ·

separators, numbered items on single lines) replaces verbose multi-line bullets.Format templates show structure only-- one example is sufficient; agents know how to repeat a pattern.** Cross-references**replace duplication -- "see agile-v-core" instead of re-explaining shared concepts.

Impact on agent execution:

agile-v-core

consumes ~~12 KB (~~3% of a 200K context window) instead of 33 KB (~8%).- A typical workflow loads core + one role skill: ~16 KB total vs ~43 KB before.

  • The sections_index

enables immediate section lookup, reducing scanning overhead.

Important

Maintain Rigorous Test Independence:

When running the workflow within a single chat or environment, always execute the Test Designer before launching the Build Agent. This ensures the Test Designer derives its test suite solely from the requirements and not from any artifacts, code, or outputs generated by the Build Agent.

By preserving this strict order, you safeguard the impartiality of the verification process and prevent accidental cross-contamination, thereby maximizing the integrity and trustworthiness of your independent test coverage.

Tip

Scaling the build phase: With a large number of features or requirements, consider running the build agent per feature or per small subset (sequentially) to improve focus and quality. Running multiple build-agent instances in parallel can speed things up but may introduce race conditions (e.g. concurrent edits to the same files); use with care and plan your merge or review strategy accordingly. See the Wave-Based Parallel Execution section in agile-v-core

for dependency-aware parallelism guidance.

Below are practical ways to use these skills in common editors and agents.

Cursor

Skills are discovered from.cursor/skills/

(project) or~/.cursor/skills/

(global). Each skill is a folder containing aSKILL.md

file with YAML frontmatter. The agent auto-applies relevant skills; you can also invoke a skill manually by typing/

in Agent chat and searching for the skill name. Clone this repo and copy the skill folders you need (e.g.agile-v-core/

,requirement-architect/

,domains/build-agent-python/

) into.cursor/skills/

. For more information on how to use Skills in Cursor please refer to theofficial documentation.Claude Code

Skills are discovered from.claude/skills/

(project) or~/.claude/skills/

(global). Each skill is a folder containing aSKILL.md

file with YAML frontmatter. The agent auto-applies relevant skills; you can also invoke a skill manually by typing/

in Agent chat and searching for the skill name. Clone this repo and copy the skill folders you need (e.g.agile-v-core/

,requirement-architect/

,domains/build-agent-python/

) into.claude/skills/

. For more information on how to use Skills in Cursor please refer to theofficial documentation.VS Code

VS Code supports two types of skills. Project skills, stored in your repository like.github/skills/

,.claude/skills

,.agents/skills/

or personal skills stored globally like~/.copilot/skills/

,~/.claude/skills

,~/.agents/skills/

. The agent auto-applies relevant skills; you can also invoke a skill manually by typing/

in Agent chat and searching for the skill name. Clone this repo and copy the skill folders you need (e.g.agile-v-core/

,requirement-architect/

,domains/build-agent-python/

) into one of the directories mentioned above. For more information on how to use Skills in VS Code please refer to theofficial documentation.GitHub Copilot

Github Copilot supports two types of skills. Project skills, stored in your repository like.github/skills/

,.claude/skills

or personal skills stored globally like~/.copilot/skills/

,~/.claude/skills

. The agent auto-applies relevant skills; you can also invoke a skill manually by typing/

in Agent chat and searching for the skill name. Clone this repo and copy the skill folders you need (e.g.agile-v-core/

,requirement-architect/

,domains/build-agent-python/

) into one of the directories mentioned above. For more information on how to use Skills with Github Copilot please refer to theofficial documentation.Other tools (Claude Agent SDK, Windsurf, Continue, Cody, Zed, etc.)

For other tools please refer to the official documentation of your desired tool.

To learn more about skills and how to use skills in general, please follow the instructions and documentation of Agent Skills.

Agile V is actively protecting your development process if you observe these behaviors:

  • βœ… Every code file includes // REQ-XXXX

or# Implements: REQ-XXXX

comments linking to requirements - βœ… .agile-v/REQUIREMENTS.md

exists with formal requirement specifications - βœ… .agile-v/BUILD_MANIFEST.md

maps every artifact (ART-XXXX) to its parent requirement - βœ… Each requirement includes acceptance criteria and rationale

Example:

  • βœ… Instead of assuming, agents ask clarifying questions before implementing
  • βœ… ⚠️ HALT CONDITION

messages appear when requirements are unclear or missing - βœ… Agents present multiple interpretations when faced with ambiguous requests

  • βœ… No "silent assumptions" about hardware, scope, or user intent

Example:

User: "Make the app faster"

Agent: ⚠️ HALT CONDITION: Ambiguous requirement

"Faster" could mean:
1. Faster response time (backend optimization)
2. Faster perceived speed (UI/UX improvements)
3. Faster time-to-first-byte (infrastructure)

Which aspect matters most for your use case?
  • βœ… Build Agent implements features
  • βœ… Red Team Verifier tests independently (separate agent, fresh context)
  • βœ… Red Team finds issues Build Agent didn't self-detect
  • βœ… Evidence Summaries show both perspectives before Human Gates

Example:

Build Agent: Implementation complete βœ“
Red Team Verifier: Found 4 security issues Build Agent missed
  - SECURITY-001: No maximum password length (DoS risk)
  - SECURITY-002: Unicode character bypass
  • βœ… Agents ask about target platform before optimizing (embedded vs cloud vs workstation)
  • βœ… Implementations stay within specified resource limits (RAM, CPU, GPU)
  • βœ… No assumptions about unlimited compute resources
  • βœ… Physical constraints documented in requirements

Example:

Agent: ⚠️ HALT CONDITION: Hardware constraints unknown

Before optimizing image processing:
1. Target platform? (RPi4, workstation, cloud?)
2. Available RAM?
3. GPU availability?
  • βœ… Before deployments, comprehensive Evidence Summaries appear
  • βœ… Approvals logged with timestamp and approver ID
  • βœ… No autonomous production deployments
  • βœ… Clear decision points documented

Example:

=== EVIDENCE SUMMARY ===
Scope: Deploy API v2.1.0 to production
Traceability: REQ-0101 to REQ-0115 (15 requirements) βœ“
Test Results: 47/47 PASS
Risk Assessment: RISK-003 mitigated βœ“

πŸ›‘ AWAITING HUMAN APPROVAL
  • βœ… .agile-v/DECISION_LOG.md

is append-only audit trail - βœ… Every significant choice includes timestamp, agent ID, rationale, and linked requirement

  • βœ… Alternative approaches considered and documented
  • βœ… Compliance-ready audit evidence

Example:

TIMESTAMP: 2026-05-26T10:30:00Z
AGENT_ID: build-agent-python
DECISION: Use sequential processing instead of parallel
RATIONALE: Target hardware (RPi4) has only 4GB RAM
LINKED_REQ: REQ-0010
ALTERNATIVE_CONSIDERED: ProcessPoolExecutor with 2 workers
ALTERNATIVE_REJECTED: Still risks OOM with high-res images
  • βœ… Change Requests (CR-XXXX) tracked in .agile-v/CHANGE_LOG.md

  • βœ… Prior cycle artifacts archived to .agile-v/cycles/C1/

,C2/

, etc. - βœ… Requirements carry status tags ( new

,modified

,deprecated

,superseded

) - βœ… Regression testing distinguishes delta tests from baseline tests

  • βœ… Requirements map to compliance standards (ISO 9001, ISO 27001, GxP)

  • βœ… Traceability matrix (ATM) auto-generated in .agile-v/ATM.md

  • βœ… Risk register and CAPA log maintained

  • βœ… Verification Summary Report (VSR) ready for audits

If you're NOT seeing these behaviors, the Agile V skills may not be properly loaded or configured. See EXAMPLES.md for concrete before/after scenarios, or refer to CLAUDE.md and CURSOR.md for platform-specific setup guides.

Agile Vβ„’ is built to function as the quality layer between your team’s expertise and any AI agent they use. Whether teams rely on proprietary LLMs, local models, or different IDEs, the engineering standard remains consistent across the organization. Thanks to Agent Skills every agent behaves according to the same engineering principles, no matter where or how it runs.

Organizations can extend the public Agile Vβ„’ skills (e.g., agile-v-core

) with private Company Skills that embed institutional knowledge directly into agent behavior.

Internal Compliance: Wrap Agile Vβ„’ skills with company-specific safety protocols, regulatory checklists, or GxP requirements so every agent interaction is compliant by default.Legacy Wisdom: Capture β€œlessons learned” from past projects in aGatekeeper Skill that prevents agents from repeating known failure modes or architectural mistakes.Tool Agnostic Logic: Because Agile Vβ„’ focuses onLogic GatesandTraceability, it works whether your team uses GitHub Copilot, Cursor, custom LangChain flows, or manual prompting.

Your standards live in the skills, not in the tool.

Agile Vβ„’ establishes a minimum quality floor across all teams and agents.

Uniform Audits: Every developer, regardless of experience level, uses agents that follow the sameRed Team Protocol and quality checks.Decoupled Intelligence: When switching from one AI model to another, yourAgile Vβ„’ Skills preserve engineering constraints, review gates, and your Definition of Done.Institutional Memory: With Principle #9 (Decision Logging), the reasoning behind engineering choices is stored in the repository, not in individual developers’ heads, ensuring long-term maintainability.

Tip

Teams can maintain a private /internal-skills

directory that inherits from the root-level skills (e.g., agile-v-core/

). This enables a β€œGlobal Standard, Local Context” workflow; shared principles with company-specific adaptations.

Agile V can consume an Understand Anything knowledge graph to add codebase-understanding, impact analysis, graph traceability, and regression-test selection to the Agile V lifecycle.

This enables:

  • Requirement β†’ component β†’ test traceability
  • Change-impact analysis before writing code
  • Regression-test selection from the dependency graph
  • Audit-ready evidence bundles with system context
  • Reviewer-friendly architecture maps
Skill Path Purpose
system-understanding-agent
skills/system-understanding-agent/
Gate 0: consume graph, produce system overview
impact-analysis-agent
skills/impact-analysis-agent/
Map change request to affected components
graph-traceability-agent
skills/graph-traceability-agent/
Link REQs to graph nodes, files, and tests
regression-selection-agent
skills/regression-selection-agent/
Select and prioritize regression tests
diff-evidence-agent
skills/diff-evidence-agent/
Compare predicted vs actual impact

See integrations/understand-anything/

for:

  • Adapter contract (graph format β†’ Agile V schema)
  • Evidence mapping (which artifacts go where in the bundle)
  • Graph assumptions and tolerant strategy
  • Security and privacy guidance for evidence exports
  • End-to-end examples

Understand the system. Change it safely. Prove what changed.

The agentic_agile_v

repository provides the runtime adapter, Python modules, JSON schemas, and unit tests. CLI commands are planned for Phase 3 and are not yet available. See docs/understand-anything-integration.md

in that repository.

Repository: The repo usessemantic versioningdriven byConventional Commits. On each push tomain

, a GitHub Action reads the commit message and bumps the version accordingly:feat:

β†’ minor,fix:

(andchore:

,docs:

, etc.) β†’ patch,BREAKING CHANGE

ortype!:

β†’ major. It then creates a new git tag (e.g.v1.5.1

) and updates the root[package.json](package.json)

. The version field and tag are maintained by the workflow; do not editpackage.json

version by hand for releases. The same file holds repo metadata (name, description, author, repository, license).Skills: Each skill is versioned independently viametadata.version

in itsSKILL.md

frontmatter (agentskills.iostyle). Skills are not version-locked to each other; bump a skill’s version only when that skill’s content or contract changes.

We welcome contributions! To add a new skill to the Agile Vβ„’ ecosystem, it must adhere to the following rules:

Strict Traceability: The skill must include procedures for logging the "Why" behind every output.Verification Step: If the skill generates an artifact, it must include a sub-process for checking that artifact against its parent requirement.No Hallucination: The skill must be instructed to "Halt and Ask" when requirements are ambiguous.Format: Must include a SKILL.md with valid YAML frontmatter as per theagentskills.io spec.License: The skill must be licensed underCC-BY-SA-4.0(Creative Commons Attribution-ShareAlike 4.0). Includelicense: CC-BY-SA-4.0

in the frontmatter.Metadata: The skill must includemetadata.author

(e.g.,agile-v.org

) andmetadata.version

(e.g.,"1.0"

). Each skill has its own version; maintainers bump it when that skill changes.

Note

Contribution guidelines in progress: We are currently developing comprehensive contribution guidelines for the community. The rules above are the current minimum requirements. A full spec, including review process, quality checklist, and community standards, will be published soon. Watch this space or check agile-v.org for updates.

The Agile Vβ„’ Agent Skills Library is published under the ** Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)** license.

── more in #ai-agents 4 stories Β· sorted by recency
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain β€” perfect for shipping the agent you just read about.

$git push zahid main
β†’ Live at https://your-agent.zahid.host βœ“
Get free account β†’ Pricing
from €0/mo Β· no card required
LIVE [news/agile-v-turning-ai-a…] indexed:0 read:21min 2026-05-26 Β· β€”