Provides paths to cc-track utility scripts for validation, task completion, and git operations. Use when a cc-track command needs to run a script.
/plugin marketplace add cahaseler/cc-track/plugin install cc-track@cc-track-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
lib/claude-md.test.tslib/claude-md.tslib/claude-sdk.test.tslib/claude-sdk.tslib/config.test.tslib/config.tslib/detection.test.tslib/detection.tslib/diff-summary.test.tslib/diff-summary.tslib/diff-truncator.test.tslib/diff-truncator.tslib/error-messages.test.tslib/error-messages.tslib/git-helpers.test.tslib/git-helpers.tslib/github-helpers.test.tslib/github-helpers.tslib/lint-parsers.test.tslib/lint-parsers.tsThis skill provides access to cc-track's utility scripts. When invoked, you receive the base directory path which you use to run scripts.
bun {base_directory}/scripts/{script-name}.ts [args]Runs validation suite (TypeScript, lint, tests, knip) for the active task.
bun {base_directory}/scripts/prepare-completion.ts
Completes the active task: updates metadata, squashes WIP commits, creates PR.
bun {base_directory}/scripts/complete-task.ts
Creates spec infrastructure: git branch, spec folder, metadata, CLAUDE.md update, GitHub issue.
bun {base_directory}/scripts/specify.ts "Feature title"
Add items to the project backlog or list existing items.
# Add an item
bun {base_directory}/scripts/backlog.ts "Your backlog item text"
# List all items
bun {base_directory}/scripts/backlog.ts --list
Git session utilities for managing WIP commits.
# Squash WIP commits with a message
bun {base_directory}/scripts/git-session.ts squash "commit message"
# Show diff since last user commit
bun {base_directory}/scripts/git-session.ts diff
# Show WIP commits
bun {base_directory}/scripts/git-session.ts wip
# Prepare for push (run lint/tests)
bun {base_directory}/scripts/git-session.ts prepare-push
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.