# πŸš€ Spec-Kit: Antigravity Skills & Workflows > **The Event Horizon of Software Quality.** > _Adapted for Google Antigravity IDE from [github/spec-kit](https://github.com/github/spec-kit)._ > _Version: 1.2.0 β€” LCBP3-DMS Edition (v1.8.1 UAT Ready)_ --- ## 🌟 Overview Welcome to the **Antigravity Edition** of Spec-Kit. This system is architected to empower your AI pair programmer (Antigravity) to drive the entire Software Development Life Cycle (SDLC) using two powerful mechanisms: **Workflows** and **Skills**. ### πŸ”„ Dual-Mode Intelligence In this edition, Spec-Kit commands have been split into two interactive layers: 1. **Workflows (`/command`)**: High-level orchestrations that guide the agent through a series of logical steps. **The easiest way to run a skill is by typing its corresponding workflow command.** 2. **Skills (`@speckit-name`)**: Packaged agentic capabilities. Mentions of a skill give the agent immediate context and autonomous "know-how" to execute the specific toolset associated with that phase. > **To understand the power of Skills in Antigravity, read the docs here:** > [https://antigravity.google/docs/skills](https://antigravity.google/docs/skills) --- ## πŸ› οΈ Installation To enable these agent capabilities in your project: 1. **Add the folder**: Drop the `.agents/` folder into the root of your project workspace. 2. **That's it!** Antigravity automatically detects the `.agents/skills` and `.agents/workflows` directories. It will instantly gain the ability to perform Spec-Driven Development. > **πŸ’‘ Compatibility Note:** This toolkit is compatible with multiple AI coding agents. To use with Claude Code, rename the `.agents` folder to `.claude`. The skills and workflows will function identically. ### Prerequisites (Optional) Some skills and scripts reference a `.specify/` directory for templates and project memory. If you want the full Spec-Kit experience (template-driven spec/plan creation), create this structure at repo root: ```text .specify/ β”œβ”€β”€ templates/ β”‚ β”œβ”€β”€ spec-template.md # Template for /speckit-specify β”‚ β”œβ”€β”€ plan-template.md # Template for /speckit-plan β”‚ β”œβ”€β”€ tasks-template.md # Template for /speckit-tasks β”‚ └── agent-file-template.md # Template for update-agent-context.sh └── memory/ └── constitution.md # Project governance rules (/speckit-constitution) ``` > **Note:** If `.specify/` is absent, skills will still function β€” they'll create blank files instead of using templates. The constitution workflow (`/speckit-constitution`) will create this structure for you on first run. --- ## πŸ—οΈ The Architecture The toolkit is organized into modular components that provide both the logic (Scripts) and the structure (Templates) for the agent. ```text .agents/ β”œβ”€β”€ skills/ # @ Mentions (Agent Intelligence) β”‚ β”œβ”€β”€ nestjs-best-practices/ # NestJS Architecture Patterns β”‚ β”œβ”€β”€ next-best-practices/ # Next.js App Router Patterns β”‚ β”œβ”€β”€ speckit-analyze/ # Consistency Checker β”‚ β”œβ”€β”€ speckit-checker/ # Static Analysis Aggregator β”‚ β”œβ”€β”€ speckit-checklist/ # Requirements Validator β”‚ β”œβ”€β”€ speckit-clarify/ # Ambiguity Resolver β”‚ β”œβ”€β”€ speckit-constitution/ # Governance Manager β”‚ β”œβ”€β”€ speckit-diff/ # Artifact Comparator β”‚ β”œβ”€β”€ speckit-implement/ # Code Builder (Anti-Regression) β”‚ β”œβ”€β”€ speckit-migrate/ # Legacy Code Migrator β”‚ β”œβ”€β”€ speckit-plan/ # Technical Planner β”‚ β”œβ”€β”€ speckit-quizme/ # Logic Challenger (Red Team) β”‚ β”œβ”€β”€ speckit-reviewer/ # Code Reviewer β”‚ β”œβ”€β”€ speckit-security-audit/ # Security Auditor (OWASP/CASL/ClamAV) β”‚ β”œβ”€β”€ speckit-specify/ # Feature Definer β”‚ β”œβ”€β”€ speckit-status/ # Progress Dashboard β”‚ β”œβ”€β”€ speckit-tasks/ # Task Breaker β”‚ β”œβ”€β”€ speckit-taskstoissues/ # Issue Tracker Syncer (GitHub + Gitea) β”‚ β”œβ”€β”€ speckit-tester/ # Test Runner & Coverage β”‚ └── speckit-validate/ # Implementation Validator β”‚ β”œβ”€β”€ workflows/ # / Slash Commands (Orchestration) β”‚ β”œβ”€β”€ 00-speckit-all.md # Full Pipeline (10 steps: Specify β†’ Validate) β”‚ β”œβ”€β”€ 01–11-speckit-*.md # Individual phase workflows β”‚ β”œβ”€β”€ speckit-prepare.md # Prep Pipeline (5 steps: Specify β†’ Analyze) β”‚ β”œβ”€β”€ schema-change.md # DB Schema Change (ADR-009) β”‚ β”œβ”€β”€ create-backend-module.md # NestJS Module Scaffolding β”‚ β”œβ”€β”€ create-frontend-page.md # Next.js Page Scaffolding β”‚ β”œβ”€β”€ deploy.md # Deployment via Gitea CI/CD β”‚ └── util-speckit-*.md # Utilities (checklist, diff, migrate, etc.) β”‚ └── scripts/ β”œβ”€β”€ bash/ # Bash Core (Kinetic logic) β”‚ β”œβ”€β”€ common.sh # Shared utilities & path resolution β”‚ β”œβ”€β”€ check-prerequisites.sh # Prerequisite validation β”‚ β”œβ”€β”€ create-new-feature.sh # Feature branch creation β”‚ β”œβ”€β”€ setup-plan.sh # Plan template setup β”‚ β”œβ”€β”€ update-agent-context.sh # Agent file updater (main) β”‚ β”œβ”€β”€ plan-parser.sh # Plan data extraction (module) β”‚ β”œβ”€β”€ content-generator.sh # Language-specific templates (module) β”‚ └── agent-registry.sh # 17-agent type registry (module) β”œβ”€β”€ powershell/ # PowerShell Equivalents (Windows-native) β”‚ β”œβ”€β”€ common.ps1 # Shared utilities & prerequisites β”‚ └── create-new-feature.ps1 # Feature branch creation β”œβ”€β”€ fix_links.py # Spec link fixer β”œβ”€β”€ verify_links.py # Spec link verifier └── start-mcp.js # MCP server launcher ``` --- ## πŸ—ΊοΈ Mapping: Commands to Capabilities | Phase | Workflow Trigger | Antigravity Skill | Role | | :---------------- | :---------------------------- | :------------------------ | :------------------------------------------------------ | | **Full Pipeline** | `/00-speckit-all` | N/A | Runs full SDLC pipeline (10 steps: Specify β†’ Validate). | | **Governance** | `/01-speckit-constitution` | `@speckit-constitution` | Establishes project rules & principles. | | **Definition** | `/02-speckit-specify` | `@speckit-specify` | Drafts structured `spec.md`. | | **Ambiguity** | `/03-speckit-clarify` | `@speckit-clarify` | Resolves gaps post-spec. | | **Architecture** | `/04-speckit-plan` | `@speckit-plan` | Generates technical `plan.md`. | | **Decomposition** | `/05-speckit-tasks` | `@speckit-tasks` | Breaks plans into atomic tasks. | | **Consistency** | `/06-speckit-analyze` | `@speckit-analyze` | Cross-checks Spec vs Plan vs Tasks. | | **Execution** | `/07-speckit-implement` | `@speckit-implement` | Builds implementation with safety protocols. | | **Quality** | `/08-speckit-checker` | `@speckit-checker` | Runs static analysis (Linting, Security, Types). | | **Testing** | `/09-speckit-tester` | `@speckit-tester` | Runs test suite & reports coverage. | | **Review** | `/10-speckit-reviewer` | `@speckit-reviewer` | Performs code review (Logic, Perf, Style). | | **Validation** | `/11-speckit-validate` | `@speckit-validate` | Verifies implementation matches Spec requirements. | | **Preparation** | `/speckit-prepare` | N/A | Runs Specify β†’ Analyze prep sequence (5 steps). | | **Schema** | `/schema-change` | N/A | DB schema changes per ADR-009 (no migrations). | | **Security** | N/A | `@speckit-security-audit` | OWASP Top 10 + CASL + ClamAV audit. | | **Checklist** | `/util-speckit-checklist` | `@speckit-checklist` | Generates feature checklists. | | **Diff** | `/util-speckit-diff` | `@speckit-diff` | Compares artifact versions. | | **Migration** | `/util-speckit-migrate` | `@speckit-migrate` | Port existing code to Spec-Kit. | | **Red Team** | `/util-speckit-quizme` | `@speckit-quizme` | Challenges logical flaws. | | **Status** | `/util-speckit-status` | `@speckit-status` | Shows feature completion status. | | **Tracking** | `/util-speckit-taskstoissues` | `@speckit-taskstoissues` | Syncs tasks to GitHub/Gitea issues. | --- ## πŸ›‘οΈ The Quality Assurance Pipeline The following skills are designed to work together as a comprehensive defense against regression and poor quality. Run them in this order: | Step | Skill | Core Question | Focus | | :-------------- | :------------------ | :-------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------- | | **1. Checker** | `@speckit-checker` | _"Is the code compliant?"_ | **Syntax & Security**. Runs compilation, linting (ESLint/GolangCI), and vulnerability scans (npm audit/govulncheck). Catches low-level errors first. | | **2. Tester** | `@speckit-tester` | _"Does it work?"_ | **Functionality**. Executes your test suite (Jest/Pytest/Go Test) to ensure logic performs as expected and tests pass. | | **3. Reviewer** | `@speckit-reviewer` | _"Is the code written well?"_ | **Quality & Maintainability**. Analyzes code structure for complexity, performance bottlenecks, and best practices, acting as a senior peer reviewer. | | **4. Validate** | `@speckit-validate` | _"Did we build the right thing?"_ | **Requirements**. Semantically compares the implementation against the defined `spec.md` and `plan.md` to ensure all feature requirements are met. | > **πŸ€– Power User Tip:** You can amplify this pipeline by creating a custom **MCP Server** or subagent that delegates heavy reasoning to a dedicated LLM. > > - **Use Case:** Bind the `@speckit-validate` and `@speckit-reviewer` steps to a large-context model. > - **Benefit:** Large-context models (1M+ tokens) excel at analyzing the full project context against the Spec, finding subtle logical flaws that smaller models miss. > - **How:** Create a wrapper script `scripts/gemini-reviewer.sh` that pipes the `tasks.md` and codebase to an LLM, then expose this as a tool. --- ## πŸ—οΈ The Design & Management Pipeline These workflows function as the "Control Plane" of the project, managing everything from idea inception to status tracking. | Step | Workflow | Core Question | Focus | | :----------------- | :-------------------------------------------------- | :-------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------- | | **1. Preparation** | `/speckit-prepare` | _"Are we ready?"_ | **The Macro-Workflow**. Runs Skills 02–06 (Specify $\to$ Clarify $\to$ Plan $\to$ Tasks $\to$ Analyze) in one sequence to go from "Idea" to "Ready to Code". | | **2. Migration** | `/util-speckit-migrate` | _"Can we import?"_ | **Onboarding**. Reverse-engineers existing code into `spec.md`, `plan.md`, and `tasks.md`. | | **3. Red Team** | `/util-speckit-quizme` | _"What did we miss?"_ | **Hardening**. Socratic questioning to find logical gaps in your specification before you plan. | | **4. Export** | `/util-speckit-taskstoissues` | _"Who does what?"_ | **Handoff**. Converts your `tasks.md` into GitHub or Gitea issues with labels and milestones. | | **5. Status** | `/util-speckit-status` | _"Are we there yet?"_ | **Tracking**. Scans all artifacts to report feature completion percentage. | | **6. Utilities** | `/util-speckit-diff`
`/util-speckit-checklist` | _"What changed?"_ | **Support**. View artifact diffs or generate quick acceptance checklists. | ### πŸ”„ The Design Sequence **Stage 1: Inception** - _Legacy Project?_ $\to$ Run **`/util-speckit-migrate`**. - _New Feature?_ $\to$ Run **`/speckit-prepare`**. **Stage 2: Hardening** - Run **`/util-speckit-quizme`** to catch edge cases. - Run **`/speckit-prepare`** again to regenerate the Plan based on restricted specs. **Stage 3: Handoff** - Run **`/util-speckit-taskstoissues`** to sync with your board. --- ## πŸš€ Getting Started in Antigravity Once the `.agents` folder is present, you can talk to your agent as a partner. You can trigger a full process using a slash command or reference a specific capability using a skill mention. **Example Conversation:** > **Developer**: "**/02-speckit-specify** Add a real-time notification system using WebSockets." > > **Antigravity**: "Understood. Executing the **@speckit-specify** skill. Creating feature branch `005-notifications` and drafting the initial specification..." > _(Antigravity creates branch, drafts spec.md)_ > > **Antigravity**: "Specification ready. I've identified some ambiguity in the reconnection strategy. Should I use **@speckit-clarify** to resolve this?" > > **Developer**: "Yes, use **@speckit-clarify**." > _(Antigravity executes the skill logic, interviewing the developer and updating the spec)_ > > **Antigravity**: "The spec is now robust. I'm ready to trigger **/04-speckit-plan** and **/05-speckit-tasks** to prepare for implementation." --- ## πŸ† Best Practices for Antigravity To get the most out of this system, follow these **Spec-Driven Development (SDD)** rules: ### 1. The Constitution is King πŸ‘‘ **Never skip `/01-speckit-constitution`.** - This file is the "Context Window Anchor" for the AI. - It prevents hallucinations about tech stack (e.g., "Don't use jQuery" or "Always use TypeScript strict mode"). - **Tip:** If Antigravity makes a style mistake, don't just fix the codeβ€”update the Constitution so it never happens again. ### 2. The Layered Defense πŸ›‘οΈ Don't rush to code. The workflow exists to catch errors _cheaply_ before they become expensive bugs. - **Ambiguity Layer**: `/03-speckit-clarify` catches misunderstandings. - **Logic Layer**: `/util-speckit-quizme` catches edge cases. - **Consistency Layer**: `/06-speckit-analyze` catches gaps between Spec and Plan. ### 3. The 15-Minute Rule ⏱️ When generating `tasks.md` (Skill 05), ensure tasks are **atomic**. - **Bad Task**: "Implement User Auth" (Too big, AI will get lost). - **Good Task**: "Create `User` Mongoose schema with email validation" (Perfect). - **Rule of Thumb**: If a task takes Antigravity more than 3 tool calls to finish, it's too big. Break it down. ### 4. "Refine, Don't Rewind" ⏩ If you change your mind mid-project: 1. Don't just edit the code. 2. Edit the `spec.md` to reflect the new requirement. 3. Run `/util-speckit-diff` to see the drift. 4. This keeps your documentation alive and truthful. --- ## 🧩 Adaptation Notes - **Skill-Based Autonomy**: Mentions like `@speckit-plan` trigger the agent's internalized understanding of how to perform that role. - **Shared Script Core**: Logic resides in `.agents/scripts/bash` (modular) with PowerShell equivalents in `scripts/powershell/` for Windows-native execution. - **Agent-Native**: Designed to be invoked via Antigravity tool calls and reasoning rather than just terminal strings. - **LCBP3-DMS Specific**: Includes project-specific skills (`nestjs-best-practices`, `next-best-practices`, `speckit-security-audit`) and workflows (`/schema-change`, `/create-backend-module`, `/deploy`). --- ## πŸ—οΈ LCBP3-DMS Project Notes (v1.8.1) ### πŸ“Š Current Status: UAT Ready (2026-03-11) | Area | Status | |------|--------| | Backend | βœ… 18 Modules, Production Ready | | Frontend | βœ… 100% Complete | | Database | βœ… Schema v1.8.0 Stable | | Documentation | βœ… **10/10 Gaps Closed** | | AI Migration | πŸ”„ Pre-migration Setup (n8n + Ollama) | | UAT | πŸ”„ In Progress | | Deployment | πŸ“‹ Pending Go-Live | ### πŸ“ Key Spec Files (Always Check Before Writing Code) | เอกΰΈͺΰΈ²ΰΈ£ | Path | ΰΉƒΰΈŠΰΉ‰ΰΉ€ΰΈ‘ΰΈ·ΰΉˆΰΈ­ | |--------|------|--------| | Schema Tables | `specs/03-Data-and-Storage/lcbp3-v1.8.0-schema-02-tables.sql` | ΰΈΰΉˆΰΈ­ΰΈ™ΰΉ€ΰΈ‚ΰΈ΅ΰΈ’ΰΈ™ Query | | Data Dictionary | `specs/03-Data-and-Storage/03-01-data-dictionary.md` | ΰΈ•ΰΈ£ΰΈ§ΰΈˆ Business Rules | | Edge Cases | `specs/01-Requirements/01-06-edge-cases-and-rules.md` | 37 Rules | | Migration Scope | `specs/03-Data-and-Storage/03-06-migration-business-scope.md` | Migration Bot | | Release Policy | `specs/04-Infrastructure-OPS/04-08-release-management-policy.md` | ΰΈΰΉˆΰΈ­ΰΈ™ Deploy | | UAT Criteria | `specs/01-Requirements/01-05-acceptance-criteria.md` | ΰΈ•ΰΈ£ΰΈ§ΰΈˆ Feature | ### ⚑ Project-Specific Workflow Cheatsheet | Task | Workflow / Command | Notes | |------|--------------------|-------| | Create Backend Module | `/create-backend-module` | Scaffolds NestJS module | | Create Frontend Page | `/create-frontend-page` | Next.js App Router page | | Schema Change | `/schema-change` | ADR-009: No migrations | | Deploy | `/deploy` | Blue-Green via Gitea CI/CD | | UAT Feature Check | `/11-speckit-validate` | vs `01-05-acceptance-criteria.md` | | Security Audit | `@speckit-security-audit` | OWASP + CASL + ClamAV | ### 🚫 Critical Forbidden Actions - ❌ DO NOT bypass Release Gates before deploying β€” `04-08-release-management-policy.md` - ❌ DO NOT start Migration without Gate #1 approval β€” `03-06-migration-business-scope.md` - ❌ DO NOT use TypeORM Migrations β€” modify schema SQL directly (ADR-009) - ❌ DO NOT give Ollama direct DB access β€” all writes via DMS API (ADR-018) - ❌ DO NOT use `any` TypeScript type anywhere --- _Built with logic from [Spec-Kit](https://github.com/github/spec-kit). Powered by Antigravity._