Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,925
总 Skills
177.2M
总安装量
2,758
贡献者
# Skill 仓库 描述 安装量
21101 cloud-devops sickn33/antigravity-awesome-skills
Cloud/DevOps Workflow Bundle Overview Comprehensive cloud and DevOps workflow for infrastructure provisioning, container orchestration, CI/CD pipelines, monitoring, and cloud-native application development. When to Use This Workflow Use this workflow when: Setting up cloud infrastructure Implementing CI/CD pipelines Deploying Kubernetes applications Configuring monitoring and observability Managing cloud costs Implementing DevOps practices Workflow Phases Phase 1: Cloud Infrastructure Setup Skil...
56
21102 svelte-expert oimiragieo/agent-studio
Svelte Expert svelte 5 component structure snippets When reviewing or writing code, apply these guidelines: Use snippets and render tags to create reusable chunks of markup inside components. Snippets help reduce duplication and enhance maintainability. svelte 5 general rules When reviewing or writing code, apply these guidelines: Always use Svelte 5 instead of Svelte 4. Use runes for controlling reactivity; runes replace certain non-runes features and provide more explicit control over stat...
56
21103 candidate-evaluation pollinations/pollinations
Candidate Evaluation Skill Evaluate GitHub contributors for engineering roles at Pollinations. When to Use User asks to evaluate a contributor or candidate User wants to research GitHub profiles for hiring User needs to update CONTRIBUTORS.md with candidate analysis User mentions "hiring", "candidate", "MLOps", or "evaluate contributor" Evaluation Criteria Must-Have Skills (Weight: High) Python : Primary language proficiency DevOps : Docker, CI/CD, infrastructure GPU/ML Deployment : Model servin...
56
21104 cucumber-best-practices thebushidocollective/han
Cucumber Best Practices Master patterns and practices for effective Cucumber testing. Scenario Design Principles 1. Write Declarative Scenarios Focus on what needs to happen, not how it happens. ❌ Imperative (implementation-focused): Scenario: Add product to cart Given I navigate to "http://shop.com/products" When I find the element with CSS ".product[data-id='123']" And I click the button with class "add-to-cart" And I wait for the AJAX request to complete Then the element ".cart...
56
21105 spring-boot-skill sivaprasadreddy/sivalabs-agent-skills
Spring Boot Skill Apply the practices below when developing Spring Boot applications. Read the linked reference only when working on that area. Maven pom.xml Configuration Read references/spring-boot-maven-config.md for Maven pom.xml configuration with supporting plugins and configurations to improve code quality, and testing. Package structure Read references/code-organization.md for domain-driven, module-based package layout and naming conventions. Spring Data JPA Implement the repository and ...
56
21106 github-workflow-automation ruvnet/claude-flow
🔧 GitHub Workflow Automation Patterns for automating GitHub workflows with AI assistance, inspired by Gemini CLI and modern DevOps practices. When to Use This Skill Use this skill when: Automating PR reviews with AI Setting up issue triage automation Creating GitHub Actions workflows Integrating AI into CI/CD pipelines Automating Git operations (rebases, cherry-picks) 1. Automated PR Review 1.1 PR Review Action .github/workflows/ai-review.yml name: AI Code Review on: pull_request: ty...
56
21107 createcli danielmiessler/personal_ai_infrastructure
Customization Before executing, check for user customizations at: ~/.claude/skills/CORE/USER/SKILLCUSTOMIZATIONS/CreateCLI/ If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults. CreateCLI Automated CLI Generation System Generate production-ready TypeScript CLIs with comprehensive documentation, type safety, error handling, and CLI-First Architecture...
56
21108 jira-assistant tech-leads-club/agent-skills
Jira Assistant You are an expert in using Atlassian MCP tools to interact with Jira. When to Use Use this skill when the user asks to: Search for Jira issues or tasks Create new Jira issues (Task, Epic, Subtask) Update existing issues Transition issue status (To Do → In Progress → Done, etc.) Add comments to issues Manage assignees Query issues with specific criteria Configuration Project Detection Strategy (Automatic): Check workspace rules first : Look for Jira configuration in .cursor/rules/j...
56
21109 b2c-webservices salesforcecommercecloud/b2c-developer-tooling
Web Services Skill This skill guides you through implementing web service integrations in B2C Commerce using the Service Framework. Overview The Service Framework provides a structured way to call external services with: Feature Description Configuration Service settings managed in Business Manager Rate Limiting Automatic throttling to protect external systems Circuit Breaker Automatic failure handling to prevent cascade failures Logging Communication logging with sensitive data filtering Mockin...
56
21110 bootstrap-layout sjnims/bootstrap-expert
Bootstrap 5.3 Layout System Bootstrap's layout system is built on flexbox and provides a powerful 12-column grid for creating responsive layouts. This skill covers containers, the grid system, breakpoints, and layout utilities. Breakpoints Bootstrap's responsive design uses six default breakpoints: Breakpoint Class infix Dimensions Extra small None <576px Small sm ≥576px Medium md ≥768px Large lg ≥992px Extra large xl ≥1200px Extra extra large xxl ≥1400px Breakpoints apply at the specified ...
56
21111 chain-integration shapeshift/web
Second-class EVM chain? If this is a second-class EVM chain integration, disregard the rest of this skill. Load and follow the contract at .claude/contracts/second-class-evm-chain.md instead - it contains the complete, authoritative checklist of every integration point required. Use the contract as your build todo list, checking off items as you go. Chain Integration Skill You are helping integrate a new blockchain as a second-class citizen into ShapeShift Web and HDWallet. This means basic supp...
56
21112 api-reference-documentation secondsky/claude-skills
API Reference Documentation Overview Generate professional API documentation that developers can use to integrate with your API, including endpoint specifications, authentication, request/response examples, and interactive documentation. When to Use Documenting REST APIs Creating OpenAPI/Swagger specifications GraphQL API documentation SDK and client library docs API authentication guides Rate limiting documentation Webhook documentation API versioning guides OpenAPI Specification Example open...
56
21113 go-expert oimiragieo/agent-studio
Go Expert go api development general rules When reviewing or writing code, apply these guidelines: You are an expert AI programming assistant specializing in building APIs with Go, using the standard library's net/http package and the new ServeMux introduced in Go 1.22. Always use the latest stable version of Go (1.22 or newer) and be familiar with RESTful API design principles, best practices, and Go idioms. Follow the user's requirements carefully & to the letter. First think step-by-step - ...
56
21114 zustand-5 gentleman-programming/gentleman-skills
Basic Store import { create } from "zustand"; interface CounterStore { count: number; increment: () => void; decrement: () => void; reset: () => void; } const useCounterStore = create<CounterStore>((set) => ({ count: 0, increment: () => set((state) => ({ count: state.count + 1 })), decrement: () => set((state) => ({ count: state.count - 1 })), reset: () => set({ count: 0 }), })); // Usage function Counter() { const { count, increment, decrement } = useCounterStore(); retur...
56
21115 checklist-generator oimiragieo/agent-studio
Quality Checklist Generator Overview Generate comprehensive, context-aware quality checklists combining IEEE 1028 standards (80-90%) with LLM-generated contextual items (10-20%). Ensures systematic quality validation before completion. Core principle: Universal quality standards enhanced with project-specific context. When to Use Always: Before completing implementation tasks During code review QA validation phase Pre-commit verification Before marking tasks complete Exceptions: Throwaway protot...
56
21116 accessibility-auditor patricio0312rev/skills
Accessibility Auditor Build inclusive web experiences with WCAG 2.1 compliance and comprehensive a11y patterns. Core Workflow Audit existing code: Identify accessibility issues Check WCAG compliance: Verify against success criteria Fix semantic HTML: Use proper elements and landmarks Add ARIA attributes: Enhance assistive technology support Implement keyboard nav: Ensure full keyboard accessibility Test with tools: Automated and manual testing Verify with screen readers: Real-world testing WCA...
56
21117 repo2skill zhangyanxs/repo2skill
repo2skill - Repository to Skill Converter System Instructions You are repo2skill, a specialized assistant that converts GitHub/GitLab/Gitee repositories into comprehensive OpenCode Skills. When a user asks to convert a repository, follow this exact workflow: Step 1: Parse Repository URL Detect platform and extract repository information: Platform Detection Patterns GitHub: github.com/{owner}/{repo} or www.github.com/{owner}/{repo} GitLab: gitlab.com/{owner}/{repo} or www.gitlab.com/{owner}...
56
21118 godot-genre-simulation thedivergentai/gd-agentic-skills
Genre: Simulation / Tycoon Optimization, systems mastery, and satisfying feedback loops define management games. Available Scripts sim_tick_manager.gd Expert tick-based simulation with variable speed control and batch processing. Core Loop Invest → Build/Manage → Generate Income → Optimize → Expand NEVER Do in Simulation Games NEVER process every simulated entity individually in _process() — Batch updates in fixed ticks (e.g., once per second). Simulating 1000 businesses individually = 60k calls...
56
21119 dependency-upgrade secondsky/claude-skills
Dependency Upgrade Master major dependency version upgrades, compatibility analysis, staged upgrade strategies, and comprehensive testing approaches. When to Use This Skill Upgrading major framework versions Updating security-vulnerable dependencies Modernizing legacy dependencies Resolving dependency conflicts Planning incremental upgrade paths Testing compatibility matrices Automating dependency updates Semantic Versioning Review MAJOR.MINOR.PATCH (e.g., 2.3.1) MAJOR: Breaking changes MINOR...
56
21120 react-performance thebushidocollective/han
React Performance Performance optimization patterns for React 18/19 and Next.js, adapted from Vercel Labs react-best-practices (MIT, v1.0.0). This skill organizes rules by priority and provides decision-tree guidance for active code review and refactoring. When to Activate Writing or reviewing React/Next.js code for performance Diagnosing slow page loads, slow interactions, or high CPU on the client Auditing bundle size or Lighthouse Core Web Vitals regressions Removing waterfalls in Server Comp...
56
21121 cypress-playwright-setup patricio0312rev/skills
Cypress & Playwright Setup Configure comprehensive end-to-end testing for web applications. Core Workflow Choose tool: Cypress or Playwright Configure project: Browser and test settings Create page objects: Reusable selectors Write tests: User journey coverage Setup fixtures: Test data Integrate CI: Automated testing Playwright Setup Installation npm init playwright@latest Configuration // playwright.config.ts import { defineConfig, devices } from '@playwright/test'; export default defineCon...
56
21122 state-machine-design melodic-software/claude-code-plugins
State Machine Design Skill When to Use This Skill Use this skill when: State Machine Design tasks - Working on statechart and state machine modeling for lifecycle and behavior specification Planning or design - Need guidance on State Machine Design approaches Best practices - Want to follow established patterns and standards Overview Design finite state machines and statecharts for modeling entity lifecycles, workflows, and system behavior. MANDATORY: Documentation-First Approach Before des...
56
21123 typescript-refactoring-patterns autohandai/community-skills
When you see multiple boolean flags, refactor to discriminated union: ``` // Before interface User { isAdmin: boolean; isGuest: boolean; permissions?: string[]; } // After type User = | { role: 'admin'; permissions: string[] } | { role: 'guest' } | { role: 'member'; permissions: string[] }; ``` Replace Conditional with Polymorphism When you see switch statements on type, use the strategy pattern: ``` // Before function process(item: Item) { switch (item.type) { case 'a':...
56
21124 speckit-plan dceoy/speckit-agent-skills
Spec Kit Plan Skill When to Use The feature spec is ready and you need a technical implementation plan. Inputs specs/<feature>/spec.md Repo context and .specify/ templates User-provided constraints or tech preferences (if any) If the spec is missing, ask the user to run speckit-specify first. Workflow Setup : Run .specify/scripts/bash/setup-plan.sh --json from repo root and parse JSON for FEATURE_SPEC, IMPL_PLAN, SPECS_DIR, BRANCH. For single quotes in args like "I'm Groot", use escape syntax: e...
56
21125 perf-web-optimization tech-leads-club/agent-skills
Web Performance Optimization Systematic approach: Measure → Identify → Prioritize → Implement → Verify. Target Metrics Metric Good Needs Work Poor LCP < 2.5s 2.5-4s > 4s INP < 200ms 200-500ms > 500ms CLS < 0.1 0.1-0.25 > 0.25 TTFB < 800ms 800ms-1.8s > 1.8s Quick Wins 1. Images (usually biggest impact on LCP) <!-- Hero/LCP image: eager + high priority --> < img src = " /hero.webp " alt = " Hero " width = " 1200 " height = " 600 " loading = " eager " fetchpriority = " high " decoding = " async " /...
56
21126 clinical-trial-schema-designer jorgealves/agent_skills
Clinical Trial Schema Designer Purpose and Intent The clinical-trial-schema-designer bridges the gap between clinical research and data engineering. It helps automate the creation of standardized data structures (CDISC) based on clinical protocols, reducing the manual effort required for data ingestion and submission preparation. When to Use Study Setup : Use during the "Start-up" phase of a clinical trial to design the Electronic Data Capture (EDC) schemas. Data Integration : When merging data ...
56
21127 godot bfollington/terma
Godot Skill Develop, test, build, and deploy Godot 4.x games. Quick Reference GdUnit4 - Unit testing framework (GDScript, runs inside Godot) godot --headless --path . -s res://addons/gdUnit4/bin/GdUnitCmdTool.gd --run-tests PlayGodot - Game automation framework (Python, like Playwright for games) export GODOT_PATH = /path/to/godot-automation-fork pytest tests/ -v Export web build godot --headless --export-release "Web" ./build/index.html Deploy to Vercel vercel deploy ./build --prod Testing ...
56
21128 coding-standards expensify/app
Coding Standards & Best Practices Baseline coding conventions applicable across projects. This skill is the shared floor, not the detailed framework playbook. Use frontend-patterns for React, state, forms, rendering, and UI architecture. Use backend-patterns or api-design for repository/service layers, endpoint design, validation, and server-specific concerns. Use rules/common/coding-style.md when you need the shortest reusable rule layer instead of a full skill walkthrough. When to Activate Sta...
56
21129 verl-rl-training orchestra-research/ai-research-skills
verl is a flexible, efficient, and production-ready RL training library for large language models from ByteDance's Seed team. It implements the HybridFlow framework (EuroSys 2025) and powers models like Doubao-1.5-pro achieving O1-level performance on math benchmarks. When to Use verl Choose verl when you need: - Production-ready RL training at scale (tested up to 671B parameters) - Flexibility to swap backends (FSDP ↔ Megatron-LM ↔ vLLM ↔ SGLang) - Support for multiple RL algorithms (PPO,...
56
21130 refine-prompt paulrberg/agent-skills
Context Working directory: ! pwd Request: $ARGUMENTS Task You are an expert prompt engineer. Create an optimized prompt based on $ARGUMENTS . 1. Craft the Prompt Apply relevant techniques: Few-shot examples (when helpful) Chain-of-thought reasoning Role/perspective setting Output format specification Constraints and boundaries Self-consistency checks Structure with: Clear role definition (if applicable) Explicit task description Expected output format Constraints and guidelines 2. Display the Re...
56
21131 performance sgcarstrends/sgcarstrends
Performance optimization Deep performance optimization based on Lighthouse performance audits. Focuses on loading speed, runtime efficiency, and resource optimization. How it works Identify performance bottlenecks in code and assets Prioritize by impact on Core Web Vitals Provide specific optimizations with code examples Measure improvement with before/after metrics Performance budget Resource Budget Rationale Total page weight < 1.5 MB 3G loads in ~4s JavaScript (compressed) < 300 KB Parsing ...
56
21132 app-review pollinations/pollinations
App Review Process app submissions from GitHub issues. Validation (registration, duplicates, stars) is pre-done by workflow. Categories Pick the best fit: image , video_audio , writing , chat , games , learn , bots , build , business APPS.md Row Format | EMOJI | Name | Web_URL | Description (~200 chars) | LANG | category | @author | github_id | repo_url | ⭐stars | discord | other | Submitted_Date | Issue_URL | Approved_Date | Submitted_Date : Issue creation date (when user submitted) Issue_URL :...
56
21133 erpnext-syntax-jinja openaec-foundation/erpnext_anthropic_claude_development_skill_package
ERPNext Jinja Templates Syntax Skill Correct Jinja syntax for Print Formats, Email Templates, and Portal Pages in ERPNext/Frappe v14/v15/v16. When to Use This Skill USE this skill when: Creating or modifying Print Formats Developing Email Templates Building Portal Pages (www/*.html) Adding custom Jinja filters/methods via hooks DO NOT USE for: Report Print Formats (they use JavaScript templating, not Jinja) Client Scripts (use erpnext-syntax-clientscripts) Server Scripts (use erpnext-syntax-serv...
56
21134 dev-api-design vasilyu1983/ai-agents-public
API Development & Design — Quick Reference Use this skill to design, implement, and document production-grade APIs (REST, GraphQL, gRPC, and tRPC). Apply it for contract design (OpenAPI), versioning/deprecation, authentication/authorization, rate limiting, pagination, error models, and developer documentation. Modern best practices (Jan 2026): HTTP semantics and cacheability (RFC 9110), Problem Details error model (RFC 9457), OpenAPI 3.1+, contract-first + breaking-change detection, strong Aut...
56
21135 nemo-curator orchestra-research/ai-research-skills
NeMo Curator - GPU-Accelerated Data Curation NVIDIA's toolkit for preparing high-quality training data for LLMs. When to use NeMo Curator Use NeMo Curator when: Preparing LLM training data from web scrapes (Common Crawl) Need fast deduplication (16× faster than CPU) Curating multi-modal datasets (text, images, video, audio) Filtering low-quality or toxic content Scaling data processing across GPU cluster Performance: 16× faster fuzzy deduplication (8TB RedPajama v2) 40% lower TCO vs CPU al...
56
21136 langsmith-observability orchestra-research/ai-research-skills
LangSmith - LLM Observability Platform Development platform for debugging, evaluating, and monitoring language models and AI applications. When to use LangSmith Use LangSmith when: Debugging LLM application issues (prompts, chains, agents) Evaluating model outputs systematically against datasets Monitoring production LLM systems Building regression testing for AI features Analyzing latency, token usage, and costs Collaborating on prompt engineering Key features: Tracing : Capture inputs, outputs...
56
21137 architecture-documentation melodic-software/claude-code-plugins
Architecture Documentation When to Use This Skill Use this skill when you need to: Generate architecture documentation for a system Create C4 diagrams (Context, Container, Component) Document architecture for different stakeholder viewpoints Produce technical overviews or executive summaries Keywords: document, c4, container, context, component, viewpoint, architecture description, technical overview, executive summary Document Types Type Audience Content Context All stakeholders System boun...
56
21138 accessible-motion dylantarre/animation-principles
Accessible Motion Design Apply Disney's 12 animation principles while ensuring accessibility for users with vestibular disorders, motion sensitivity, and cognitive disabilities. Quick Reference Principle Accessible Implementation Squash & Stretch Opacity/color change instead Anticipation State change indication without motion Staging Focus management, not motion-based Straight Ahead / Pose to Pose Instant state changes Follow Through / Overlapping Eliminated or minimal fade Slow In / Slow Out ...
56
21139 project-onboarding mgd34msu/goodvibes-plugin
When to Use Invoke this skill when: Starting work on an unfamiliar codebase After context is lost (new session) When check_onboarding_performed indicates no memories exist When user asks to "learn about this project" or "understand this codebase" Onboarding Workflow Step 1: Check Existing Knowledge First, check if onboarding was already performed: List files in: .claude/context/memory/ Look for: project-structure.md, build-commands.md, test-commands.md If memories exist, read them and skip to St...
56
21140 package-script-writer umbraco/umbraco-cms-backoffice-skills
Package Script Writer (psw) Generate and run Umbraco CMS installation scripts using the psw CLI tool. Workflow Check if PSW CLI is installed: psw --version If command not found, the .NET tools path may not be in PATH. Try: Linux/Mac: export PATH="$PATH:$HOME/.dotnet/tools" && psw --version Windows: %USERPROFILE%\.dotnet\tools\psw --version If not installed, install it: dotnet tool install --global PackageScriptWriter.Cli Then run the psw command (see below) Non-Interactive Usage (Claude Code) Th...
56
21141 reactive-dashboard-performance erichowens/some_claude_skills
Reactive Dashboard Performance Expert in building production-grade reactive dashboards that load in <100ms and have comprehensive test coverage. Core Expertise Performance Patterns (Linear, Vercel, Notion-grade) Skeleton-First Loading Render skeleton immediately (0ms perceived load) Stream in data progressively Never show spinners for <200ms loads Aggressive Caching React Query with staleTime: 5min, cacheTime: 30min Optimistic updates for mutations Prefetch on hover/mount Code Splitting ...
56
21142 swot-pestle-analysis melodic-software/claude-code-plugins
Strategic Environmental Analysis Perform strategic environmental analysis using SWOT, PESTLE, and Porter's Five Forces frameworks. Creates structured assessments for competitive positioning and strategic planning. What is Strategic Environmental Analysis? Strategic environmental analysis examines internal and external factors that impact an organization's ability to achieve its objectives. Three complementary frameworks provide different perspectives: Framework Focus Perspective Best For SWO...
56
21143 react-native gentleman-programming/gentleman-skills
@json-render/react-native React Native renderer that converts JSON specs into native mobile component trees with standard components, data binding, visibility, actions, and dynamic props. Quick Start import { defineCatalog } from "@json-render/core" ; import { schema } from "@json-render/react-native/schema" ; import { standardComponentDefinitions , standardActionDefinitions , } from "@json-render/react-native/catalog" ; import { defineRegistry , Renderer , type Components } from "@json-render/r...
56
21144 import-export groeimetai/snow-flow
Import/Export handles data migration, bulk operations, and data transfer. Import/Export Architecture ``` Data Sources ├── Files (CSV, Excel, XML) ├── JDBC Connections └── REST/SOAP Import Process ├── Import Set Tables ├── Transform Maps └── Target Tables Export Process ├── Scheduled Exports ├── Report Exports └── XML Export ``` Key Tables | `sys_import_set` | Import set records | `sys_data_source` | Data sources | `sys_transform_map` | Transfor...
56
21145 r3f-fundamentals bbeierle12/skill-mcp-claude
React Three Fiber Fundamentals Quick Start import { Canvas } from '@react-three/fiber' import { useRef } from 'react' import { useFrame } from '@react-three/fiber' function RotatingBox() { const meshRef = useRef() useFrame((state, delta) => { meshRef.current.rotation.x += delta meshRef.current.rotation.y += delta * 0.5 }) return ( <mesh ref={meshRef}> <boxGeometry args={[1, 1, 1]} /> <meshStandardMaterial color="hotpink" /> </mesh> ) } export default fun...
56
21146 chrome-debug zenobi-us/dotfiles
Chrome Debugging and Browser Manipulation via Remote Debugging Protocol Overview Chrome DevTools Protocol (CDP) enables remote browser automation and debugging through mcporter. Key capabilities: Live browser debugging alongside Agent conversations Automated form filling and interaction testing Visual feedback via screenshots Console log and network request inspection JavaScript execution in page context Prerequisites [CRITICAL] Before using Chrome DevTools, ensure: Chrome/Chromium is runni...
56
21147 b2c-scaffold salesforcecommercecloud/b2c-developer-tooling
B2C Scaffold Skill Use the b2c scaffold commands to generate B2C Commerce components from templates. Tip: If b2c is not installed globally, use npx @salesforce/b2c-cli instead. Examples List Available Scaffolds list all scaffolds b2c scaffold list list only cartridge scaffolds b2c scaffold list --category cartridge show extended info (description, tags) b2c scaffold list -x Generate a Cartridge generate interactively b2c scaffold cartridge generate with name b2c scaffold cartridge --name ap...
56
21148 docs-writer tech-leads-club/agent-skills
docs-writer skill instructions As an expert technical writer for the Gemini CLI project, your goal is to produce documentation that is accurate, clear, and consistent with the project's standards. You must adhere to the documentation contribution process outlined in CONTRIBUTING.md and the style guidelines from the Google Developer Documentation Style Guide. Step 1: Understand the goal and create a plan Clarify the request: Fully understand the user's documentation request. Identify the core f...
56
21149 hig-components-content raintree-technology/apple-hig-skills
Apple HIG: Content Components Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered. Key Principles Adapt to different sizes and contexts. Content components must work across screen sizes, orientations, and multitasking configurations. Use Auto Layout and size classes. Make content accessible. Charts need audio graph support. Images need alt text. Collections need proper VoiceOver navigation order. All content com...
56
21150 psi siviter-xyz/dot-agent
PSI - Plan Spec Implement Structured workflow for planning, specifying, and implementing changes with documentation-first approach. When to Use Only use when: Explicitly directed by the user Mentioned in project AGENTS.md file Do not use automatically - this is an opt-in workflow, not a default. Core Workflow Plan → Spec → Implement Phases are independent - you can start with any phase, but all must ensure documentation stays up-to-date. Key Principles Ephemeral planning - Plans stored ...
56