using-agent-skills

Discovers and routes tasks to the appropriate engineering workflow skill.

Updated Aug 11, 2026
One-click install
npx skills add https://github.com/Kunj-Sharma03/agent-contextify --skill using-agent-skills-kunj-sharma03
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: using-agent-skills
Source: https://github.com/Kunj-Sharma03/agent-contextify/tree/main/templates/skills/using-agent-skills
Command: npx skills add https://github.com/Kunj-Sharma03/agent-contextify --skill using-agent-skills-kunj-sharma03

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When working with a large library of agent skills, it is hard to know which workflow applies to the current task. This meta-skill maps incoming tasks to the correct engineering skill and enforces core operating behaviors like surfacing assumptions and verifying results. ## Core Features & Use Cases - Skill Discovery: A decision tree routes tasks by development phase (define, plan, build, verify, review, ship) to one of 20+ skills such as spec-driven-development or test-driven-development. - Core Operating Behaviors: Enforces six non-negotiable behaviors including surfacing assumptions, managing confusion, pushing back on bad ideas, and verifying outcomes. - Lifecycle Sequencing: Provides a canonical 16-step skill sequence for full features and a quick-reference table of every skill with a one-line summary. - Use Case: At the start of a session, describe your task (e.g., "fix a broken login flow") and the skill routes you to debugging-and-error-recovery followed by test-driven-development. ## Quick Start Ask the agent to identify which skill applies to your current task before starting any implementation work.

Frequently Asked Questions about using-agent-skills

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I choose which agent skill to use for a task?

Identify the development phase your task belongs to, then follow the decision tree: new features route to spec-driven-development, bugs route to debugging-and-error-recovery, and reviews route to code-review-and-quality. When in doubt, start with a spec.

What is a meta-skill for agent workflows?

A meta-skill governs how all other skills are discovered and invoked. It contains no implementation logic itself but provides routing rules, lifecycle sequencing, and shared operating behaviors that apply across every skill.

Can multiple agent skills apply to one task?

Yes. A feature implementation typically chains skills in sequence, such as spec-driven-development, planning-and-task-breakdown, incremental-implementation, test-driven-development, and code-review-and-quality. A bug fix may only need two or three.

When should I skip the skill discovery process?

Skill discovery should run before any non-trivial work begins. Only trivial tasks with no ambiguity can skip it, since skills encode verification steps that prevent common failure modes like unchecked assumptions.

What are the core operating behaviors enforced across all skills?

Six behaviors apply at all times: surface assumptions, manage confusion actively, push back when warranted, enforce simplicity, maintain scope discipline, and verify results with evidence rather than assuming correctness.