/track
Create a tracking item in the Nimbalyst tracker system.
$ npx -y skills add nimbalyst/nimbalyst --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/track
Context preview
What this command does when you run it.
Create a tracking item in the Nimbalyst tracker system.
Command definition
track.mdpackageVersion: 1.0.0
packageId: core
description: Create a tracking item in the Nimbalyst tracker system.
/track Command
Create a tracking item using the Nimbalyst tracker system.
Usage
When the user types `/track [type] [description]`:
Where `[type]` is the tracker type (e.g., bug, task, idea, feature, decision, feedback, tech-debt, etc.)
1. Parse the type and description from the command 2. Determine priority based on description keywords:
- "critical", "urgent", "blocking" -> critical/high
- "nice to have", "minor", "low" -> low
- Otherwise -> medium
3. Create the tracker item using `tracker_create` 4. Confirm to the user with the item ID and title
How to Create
Use the `tracker_create` MCP tool:
tracker_create({
type: "[type]",
title: "[description]",
priority: "[priority]",
labels: ["[area]"], // infer from context if possible
description: "[optional longer description if the user provided extra context]"
})Supported Types
- **bug**: Issues and defects that need fixing
- **task**: Work items and todos
- **idea**: Concepts and proposals to explore
- **decision**: Important decisions and their rationale
- **feature**: Feature requests
- **feedback**: User feedback and insights
- **tech-debt**: Technical debt items
Examples
/track bug Login fails on mobile Safari
/track task Update API documentation
/track idea Add dark mode support
/track feature Export to PDF functionality
/track decision Use PostgreSQL for database
/track feedback Users find settings page confusing
Notes
- `tracker_create` does NOT auto-link the new item to the current session. Pass `linkSession: true` to opt in, or call `tracker_link_session` afterward.
- Use `tracker_link_session` to link an existing tracker item to the current session.
Read more
packageVersion: 1.0.0 packageId: core description: Create a tracking item in the Nimbalyst tracker system.
/track Command
Create a tracking item using the Nimbalyst tracker system.
Usage
When the user types `/track [type] [description]`:
Where `[type]` is the tracker type (e.g., bug, task, idea, feature, decision, feedback, tech-debt, etc.)
1. Parse the type and description from the command 2. Determine priority based on description keywords:
- "critical", "urgent", "blocking" -> critical/high
- "nice to have", "minor", "low" -> low
- Otherwise -> medium
3. Create the tracker item using `tracker_create` 4. Confirm to the user with the item ID and title
How to Create
Use the `tracker_create` MCP tool:
tracker_create({
type: "[type]",
title: "[description]",
priority: "[priority]",
labels: ["[area]"], // infer from context if possible
description: "[optional longer description if the user provided extra context]"
})Supported Types
- **bug**: Issues and defects that need fixing
- **task**: Work items and todos
- **idea**: Concepts and proposals to explore
- **decision**: Important decisions and their rationale
- **feature**: Feature requests
- **feedback**: User feedback and insights
- **tech-debt**: Technical debt items
Examples
/track bug Login fails on mobile Safari /track task Update API documentation /track idea Add dark mode support /track feature Export to PDF functionality /track decision Use PostgreSQL for database /track feedback Users find settings page confusing
Notes
- `tracker_create` does NOT auto-link the new item to the current session. Pass `linkSession: true` to opt in, or call `tracker_link_session` afterward.
- Use `tracker_link_session` to link an existing tracker item to the current session.
Nimbalyst is a free, open-source, local, interactive visual editor & session/task manager for developers, product managers, designers, builders.
Repo: nimbalyst/nimbalyst
Other commands on nimbalyst.
- /android-release
Prepare and execute an Android release (patch/minor/major)
Open command - /bug-report
Gather details and draft an actionable bug report for developers.
Open command - /commit
Create a git commit with concise, bullet-point commit message
Open command - /design
Create a new plan document for tracking work.
Open command - /e2e-devcontainer
Run E2E tests in a dev container (isolated environment)
Open command - /implement
Execute a plan document while keeping progress synchronized.
Open command

