en un clic
using-agent-skills
Discovers and invokes agent skills. Use when starting a session or when you need to discover which skill applies to the current task. This is the meta-skill that governs how all other skills are discovered and invoked.
Menu
Discovers and invokes agent skills. Use when starting a session or when you need to discover which skill applies to the current task. This is the meta-skill that governs how all other skills are discovered and invoked.
Create, update, or review Agent Skill directories and SKILL.md files for valid frontmatter, structure, portability, progressive disclosure, and validation readiness.
Extracts what the user actually wants instead of what they think they should want. Achieves this through one-question-at-a-time interview until ~95% confidence about the underlying intent. Use when an ask is underspecified ("build me X" without "for whom" or "why now"), when the user explicitly invokes ("interview me", "grill me", "are we sure?", "stress-test my thinking"), or when you catch yourself silently filling in ambiguous requirements before any plan, spec, or code exists.
Discover and run the project's local formatting, linting, static analysis, test, and build checks before handoff.
Update project-facing documentation after a user-visible behavior, configuration, operation, or workflow change.
Add logs, metrics, traces, profiling, or operational notes for meaningful workflows without unsupported performance claims.
Design stable APIs, module contracts, schemas, component boundaries, command interfaces, or other public integration surfaces that are predictable, documented, and hard to misuse.
| name | using-agent-skills |
| description | Discovers and invokes agent skills. Use when starting a session or when you need to discover which skill applies to the current task. This is the meta-skill that governs how all other skills are discovered and invoked. |
| metadata | {"version":"1.0.4"} |
Agent Skills is a collection of engineering workflow skills organized by development phase. Each skill encodes a specific process that senior engineers follow. This meta-skill helps you discover and apply the right skill for your current task.
At the start of a task, identify the development phase and apply the corresponding skill.
Use this routing guide:
Task arrives
- User does not know what they want yet: interview-me
- Have a rough concept and need variants: idea-refine
- New project, feature, or change: spec-driven-development
- Have a spec and need tasks: planning-and-task-breakdown
- Need plan review before coding: review-implementation-plan
- Implementing code: incremental-implementation
- UI work: frontend-ui-engineering
- API work: api-and-interface-design
- Need better context: context-engineering
- Need doc-verified code: source-driven-development
- Stakes high or unfamiliar code: doubt-driven-development
- Writing or running tests: test-driven-development
- Browser-based testing: browser-runtime-verification
- Need full local quality checks: run-local-quality-gate
- Adding logs, metrics, traces, profiling, or dashboards: add-observability
- Something broke: debugging-and-error-recovery
- Reviewing code: code-review-and-quality
- Too complex: code-simplification
- Security concerns: security-and-hardening
- Performance concerns: performance-optimization
- Committing or branching: git-workflow-and-versioning
- CI/CD pipeline work: ci-cd-and-automation
- Deprecating or migrating: deprecation-and-migration
- Writing docs or ADRs: documentation-and-adrs
- Need a project documentation update: update-project-docs
- Need an architecture decision record: write-adr
- Creating, updating, or reviewing skills: author-agent-skill
- Deploying or launching: shipping-and-launch
These behaviors apply at all times, across all skills. They are non-negotiable.
Before implementing anything non-trivial, explicitly state your assumptions:
Assumptions I am making:
1. [assumption about requirements]
2. [assumption about architecture]
3. [assumption about scope]
Correct me now or I will proceed with these.
Don't silently fill in ambiguous requirements. The most common failure mode is making wrong assumptions and running with them unchecked. Surface uncertainty early — it's cheaper than rework.
When you encounter inconsistencies, conflicting requirements, or unclear specifications:
Bad: Silently picking one interpretation and hoping it's right. Good: "I see X in the spec but Y in the existing code. Which takes precedence?"
You are not a yes-machine. When an approach has clear problems:
Sycophancy is a failure mode. "Of course!" followed by implementing a bad idea helps no one. Honest technical disagreement is more valuable than false agreement.
Your natural tendency is to overcomplicate. Actively resist it.
Before finishing any implementation, ask:
If you build 1000 lines and 100 would suffice, you have failed. Prefer the boring, obvious solution. Cleverness is expensive.
Touch only what you're asked to touch.
Do not:
Your job is surgical precision, not unsolicited renovation.
Every skill includes a verification step. A task is not complete until verification passes. "Seems right" is never sufficient — there must be evidence (passing tests, build output, runtime data).
These are the subtle errors that look like productivity but create problems:
Check for an applicable skill before starting work. Skills encode processes that prevent common mistakes.
Skills are workflows, not suggestions. Follow the steps in order. Don't skip verification steps.
Multiple skills can apply. A feature implementation might involve idea-refine, then spec-driven-development, then planning-and-task-breakdown, then incremental-implementation, then test-driven-development, then code-review-and-quality, then code-simplification, then shipping-and-launch.
When in doubt, start with a spec. If the task is non-trivial and there's no spec, begin with spec-driven-development.
For a complete feature, the typical skill sequence is:
1. interview-me: Extract what the user actually wants
2. idea-refine: Refine vague ideas
3. spec-driven-development: Define what we're building
4. planning-and-task-breakdown: Break into verifiable chunks
5. context-engineering: Load the right context
6. source-driven-development: Verify against official docs
7. incremental-implementation: Build slice by slice
8. doubt-driven-development: Cross-examine non-trivial decisions in-flight
9. test-driven-development: Prove each slice works
10. code-review-and-quality: Review before merge
11. code-simplification: Reduce unnecessary complexity while preserving behavior
12. git-workflow-and-versioning: Clean commit history
13. documentation-and-adrs: Document decisions
14. deprecation-and-migration: Retire old systems and move users safely when needed
15. shipping-and-launch: Deploy safely
Not every task needs every skill. A bug fix might only need debugging-and-error-recovery, then test-driven-development, then code-review-and-quality.
| Phase | Skill | One-Line Summary |
|---|---|---|
| Define | interview-me | Surface what the user actually wants before any plan, spec, or code exists |
| Define | idea-refine | Refine ideas through structured divergent and convergent thinking |
| Define | spec-driven-development | Requirements and acceptance criteria before code |
| Plan | planning-and-task-breakdown | Decompose into small, verifiable tasks |
| Plan | review-implementation-plan | Review a plan for gaps, risks, sequencing, dependencies, and validation readiness |
| Build | incremental-implementation | Thin vertical slices, test each before expanding |
| Build | source-driven-development | Verify against official docs before implementing |
| Build | doubt-driven-development | Adversarial fresh-context review of every non-trivial decision |
| Build | context-engineering | Right context at the right time |
| Build | frontend-ui-engineering | Production-quality UI with accessibility |
| Build | api-and-interface-design | Stable interfaces with clear contracts |
| Verify | test-driven-development | Failing test first, then make it pass |
| Verify | browser-runtime-verification | Real-browser verification of UI behavior, console output, network activity, and accessibility basics |
| Verify | run-local-quality-gate | Discover and run local formatting, linting, static analysis, test, and build checks |
| Verify | debugging-and-error-recovery | Reproduce, localize, fix, and guard |
| Review | code-review-and-quality | Five-axis review with quality gates |
| Review | code-simplification | Preserve behavior while reducing unnecessary complexity |
| Review | security-and-hardening | OWASP prevention, input validation, least privilege |
| Review | performance-optimization | Measure first, optimize only what matters |
| Ship | git-workflow-and-versioning | Atomic commits, clean history |
| Ship | ci-cd-and-automation | Automated quality gates on every change |
| Ship | deprecation-and-migration | Remove old systems and migrate users safely |
| Ship | documentation-and-adrs | Document the why, not just the what |
| Ship | update-project-docs | Keep project-facing documentation aligned with behavior, configuration, or workflow changes |
| Ship | write-adr | Record durable architectural decisions with context and consequences |
| Ship | shipping-and-launch | Pre-launch checklist, monitoring, rollback plan |
| Skill | author-agent-skill | Create, update, or review Agent Skill directories and SKILL.md files |