@schnick371/devsteps-cli
v0.8.5
Published
Never Code Alone. CLI for AI-assisted developer task tracking.
Downloads
2,680
Maintainers
Readme
@schnick371/devsteps-cli
Never Code Alone. Command-line interface for AI-assisted developer task tracking.
Overview
DevSteps CLI provides terminal commands for managing work items, tracking traceability, and organizing agile/waterfall projects.
Installation
npm install -g @schnick371/devsteps-cliQuick Start
# Initialize a new project
devsteps init my-project --methodology scrum
# Add work items
devsteps add epic --title "User Authentication"
devsteps add story --title "Login Form" --parent EPIC-001
devsteps add task --title "API Integration" --parent STORY-001
# List items
devsteps list --type task --status in-progress
devsteps list --priority critical
# Update status
devsteps update TASK-001 --status done
# Search
devsteps search "authentication"
# Show project status
devsteps status
# Export project
devsteps export --format markdown --output project.mdCommands
Project Management
devsteps init <name>- Initialize new DevSteps projectdevsteps status- Show project statisticsdevsteps context- Generate AI context (quick/standard/deep)
Work Items
devsteps add <type>- Create new work item (epic/story/task/bug/etc.)devsteps get <id>- Show work item detailsdevsteps update <id>- Update work item propertiesdevsteps list- List work items with filters
Search & Filter
devsteps search <query>- Full-text searchdevsteps list --status <status>- Filter by statusdevsteps list --priority <priority>- Filter by prioritydevsteps list --type <type>- Filter by type
Traceability
devsteps link <source> <target>- Create relationshipdevsteps trace <id>- Show traceability tree
Maintenance
devsteps archive <id>- Archive single itemdevsteps purge- Bulk archive done/cancelled itemsdevsteps doctor- Check project healthdevsteps export- Export to Markdown/JSON/HTML
Methodologies
DevSteps supports three development methodologies:
Scrum
- Epic → Story → Task
- Bugs/Tests implement Epic or relate to Story
- Sprint-based iteration
Waterfall
- Requirement → Feature → Task
- Bugs/Tests implement Requirement or relate to Feature
- Phase-based progression
Hybrid
- Both Scrum and Waterfall hierarchies
- Flexible team workflows
Examples
Scrum Workflow
devsteps init my-app --methodology scrum
devsteps add epic --title "User Management"
devsteps add story --title "User Registration" --parent EPIC-001
devsteps add task --title "Create API Endpoint" --parent STORY-001
devsteps link STORY-001 tested-by TEST-001Waterfall Workflow
devsteps init enterprise-sys --methodology waterfall
devsteps add requirement --title "Authentication System"
devsteps add feature --title "SSO Integration" --parent REQ-001
devsteps add task --title "Configure SAML" --parent FEAT-001Integration
VS Code Extension
Install DevSteps VS Code Extension for visual project management.
AI Integration
Use with MCP-compatible AI assistants (Claude, GitHub Copilot) for AI-assisted development.
Documentation
License
Apache-2.0 © Thomas Hertel
