From track
Find relevant best-practice and anti-pattern files for a given query.
How this skill is triggered — by the user, by Claude, or both
Slash command
/track:discover-best-practicesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Find relevant best-practice and anti-pattern files for a given query.
Find relevant best-practice and anti-pattern files for a given query.
Do not create your own top-level task list. The invoking command owns the user-facing task list. If this skill represents a single user-visible step in that list, your work maps to one entry. If you need finer-grained progress, update the existing task list rather than starting a new one.
${CLAUDE_PLUGIN_ROOT}/references/best-practices/_index.mdThis skill covers:
references/best-practices/components/) — per-file quality criteriareferences/best-practices/holistic/) — cross-challenge quality criteriareferences/best-practices/anti-patterns/) — known mistakes to avoidAgent invokes: "What best practices apply to check scripts?" Skill returns:
- components/check-scripts/assertion-patterns.md — Diagnostic sequencing of independent assertions
- components/check-scripts/fail-message-quality.md — Actionable messages with remediation steps
- components/check-scripts/no-pipefail-rule.md — No set -euo pipefail in check scripts
- components/check-scripts/timeout-awareness.md — 60-second hard limit, time budgeting
- components/check-scripts/idempotency.md — Side-effect-free, read-only operations
- anti-patterns/commented-out-set-flags.md — Commented-out set flags in scripts
- anti-patterns/missing-o-pipefail.md — Missing -o pipefail where required
Agent invokes: "What holistic criteria apply when reviewing challenge progression?" Skill returns:
- holistic/educational-progression/progressive-complexity.md — Complexity ramp across challenges
- holistic/educational-progression/scaffolding-pattern.md — Guided to independent progression
- holistic/educational-progression/builds-on-prior-knowledge.md — Each challenge builds on previous
- holistic/content-coherence/challenge-dependencies.md — Challenge dependency chain
npx claudepluginhub instruqt/ai-plugins --plugin trackGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.