SpecPulse v2.1.0 - AI-Enhanced Specification-Driven Development Framework
Project description
SpecPulse v2.1.0
AI-Enhanced Specification-Driven Development Framework
Build better software faster with specifications first, AI assistance, and intelligent workflow management.
Installation • Quick Start • Features • CLI Commands • Documentation
🎯 What is SpecPulse?
SpecPulse is a CLI-first, AI-enhanced framework for Specification-Driven Development (SDD). It helps teams build software by:
- Specification First: Every feature starts with a clear, validated specification
- AI-Enhanced: Works seamlessly with Claude Code and Gemini CLI
- CLI-Driven: Pure Python CLI - no scripts, fully cross-platform
- LLM-Friendly: Generates files optimized for AI assistants to expand
🚀 v2.1.0 Highlights
- ✅ No Scripts: Eliminated bash/PowerShell scripts - pure Python CLI
- ✅ Smaller Projects: ~50KB less per project (no scripts folder)
- ✅ Faster: ~3x faster execution (no shell overhead)
- ✅ Cross-Platform: Works identically on Windows, macOS, Linux
- ✅ LLM-Optimized: Files designed for AI expansion
📦 Installation
# Install from PyPI
pip install specpulse==2.1.0
# Or upgrade from previous version
pip install --upgrade specpulse
Requirements:
- Python 3.11 or higher
- Git (recommended for branch-based features)
- Works on Windows, macOS, and Linux
🚀 Quick Start
1. Initialize Project
# Create new project
specpulse init my-project --ai claude
# Or add to existing project
cd existing-project
specpulse init --here --ai claude
2. Start a Feature
# Initialize feature structure
specpulse feature init user-authentication
# This creates:
# - specs/001-user-authentication/
# - plans/001-user-authentication/
# - tasks/001-user-authentication/
# - Updates memory/context.md
3. Create Specification
# Create spec (LLM will expand this)
specpulse spec create "OAuth2 login with JWT tokens"
# Creates: specs/001-user-authentication/spec-001.md
# With template and LLM expansion markers
4. Work in Claude Code or Gemini CLI
Use custom slash commands for AI-assisted development:
# In Claude Code or Gemini CLI:
/sp-pulse user-authentication # Initialize feature
/sp-spec create OAuth2 with JWT # Create specification
/sp-plan generate # Generate implementation plan
/sp-task breakdown # Break down into tasks
/sp-execute # Execute tasks continuously
✨ Features
🎯 Core Features
- Feature Management: Initialize and switch between features
- Specification Management: Create, validate, and version specifications
- Plan Generation: AI-assisted implementation planning
- Task Breakdown: Convert plans into actionable tasks
- Execution Tracking: Track task progress and completion
- Memory System: Project context and decision tracking
- AI Integration: Works with Claude Code and Gemini CLI
🔧 3-Tier Template System
Choose the right level of detail for your project:
- Minimal (2-3 min): Quick prototypes and MVPs
- Standard (10-15 min): Most production features
- Complete (30-45 min): Enterprise-grade specifications
📊 Validation & Progress Tracking
- Automatic validation with actionable feedback
- Progress indicators for specs, plans, tasks
- Checkpoint system for safe iterations
- Auto-fix capabilities for common issues
💻 CLI Commands
Two Ways to Use SpecPulse:
- Inside AI Assistant (Primary) - LLM uses file operations
- Terminal (Optional) - Direct CLI commands for manual use
Feature Management
# Terminal use (optional - for manual workflow)
specpulse feature init <name> # Initialize new feature
specpulse feature continue <name> # Switch to existing feature
# Inside Claude/Gemini (primary - LLM does this automatically)
/sp-pulse user-authentication
# → LLM uses mkdir, Write, Edit tools to create structure
Specification Management
# Terminal use (optional)
specpulse spec create <description> # Create specification
specpulse spec update <id> <desc> # Update specification
specpulse spec validate # Validate specifications
specpulse spec progress <feature-id> # Show completion progress
# Inside Claude/Gemini (primary)
/sp-spec OAuth2 login with JWT
# → LLM uses Read (template) → Write (file) → Edit (expand)
Plan Management
# Terminal use (optional)
specpulse plan create <description> # Create implementation plan
specpulse plan update <id> <desc> # Update plan
# Inside Claude/Gemini (primary - LLM file operations)
/sp-plan generate
Task Management
# Terminal use (optional)
specpulse task create <description> # Create task
specpulse task breakdown <plan-id> # Generate tasks from plan
specpulse task update <id> <desc> # Update task
# Inside Claude/Gemini (primary - LLM file operations)
/sp-task breakdown
Execution Tracking
# Terminal use (optional)
specpulse execute start <task-id> # Mark task as started
specpulse execute done <task-id> # Mark task as completed
# Inside Claude/Gemini (primary - LLM edits task metadata)
/sp-execute
Project Management (Terminal Only)
These are utility commands - used from terminal, not by LLM:
specpulse init <project> # Initialize project
specpulse validate all --fix # Validate and auto-fix
specpulse doctor # System health check
specpulse sync # Synchronize project state
specpulse ai context # Show AI-detected context
specpulse ai suggest # Get AI recommendations
🤖 AI Integration
SpecPulse works seamlessly with AI assistants while maintaining privacy-first design (no external API calls).
How It Works
User in Claude Code / Gemini CLI
↓
Custom Slash Commands (/sp-pulse, /sp-spec, etc.)
↓
LLM Uses File Operations (Read, Write, Edit)
↓
1. Read template (templates/spec.md)
2. Write file (specs/001-feature/spec-001.md)
3. Read created file
4. Expand with AI intelligence
5. Write expanded content back
↓
Complete Specifications, Plans, Tasks
Note: CLI commands (specpulse spec create) are optional helpers for terminal use. LLM primarily uses file operations (Read/Write/Edit) for better control.
AI Commands
# Context detection
specpulse ai context # Show detected feature, branch, etc.
# Suggestions
specpulse ai suggest # Get next-step recommendations
specpulse ai suggest --query "help" # Get help on specific topic
# LLM switching
specpulse ai switch claude # Use Claude
specpulse ai switch gemini # Use Gemini
specpulse ai switch both # Use both
# Checkpoints
specpulse ai checkpoint "description" # Create workflow checkpoint
specpulse ai summary # Show workflow summary
📋 Complete Workflow Example
# 1. Initialize project
specpulse init my-app --ai claude
# 2. Start feature
specpulse feature init user-authentication
# 3. Create specification
specpulse spec create "OAuth2 login with JWT tokens and 2FA"
# 4. LLM expands spec (in Claude Code: /sp-spec validate)
# 5. Generate plan
specpulse plan create "Implementation roadmap for OAuth2"
# 6. LLM generates plan (in Claude Code: /sp-plan validate)
# 7. Break down tasks
specpulse task breakdown 001
# 8. LLM creates tasks (in Claude Code: /sp-task validate)
# 9. Execute tasks
specpulse execute start 001
# [Implement task]
specpulse execute done 001
# 10. Repeat for all tasks
📁 Project Structure
After initialization:
my-project/
├── .specpulse/ # SpecPulse configuration
├── .claude/commands/ # Claude Code slash commands
├── .gemini/commands/ # Gemini CLI slash commands
├── memory/ # Project context and decisions
│ └── context.md # Current feature, decisions
├── templates/ # Specification templates
│ ├── spec.md
│ ├── plan.md
│ └── task.md
├── specs/ # Feature specifications (created on-demand)
├── plans/ # Implementation plans (created on-demand)
└── tasks/ # Task breakdowns (created on-demand)
Note: No scripts/ folder! v2.1.0 uses pure CLI.
📚 Documentation
Comprehensive Guides
- Installation Guide - Detailed setup instructions
- AI Integration Guide - Complete AI integration documentation
- Migration Guide - Upgrading from previous versions
- Troubleshooting Guide - Common issues and solutions
Help System
# Get help
specpulse --help
specpulse feature --help
specpulse spec --help
# Show version
specpulse --version
🔄 Migration from v2.0.0
v2.1.0 is backward compatible with v2.0.0 projects:
# 1. Upgrade SpecPulse
pip install --upgrade specpulse
# 2. Delete old scripts (safe to remove)
rm -rf scripts/
# 3. That's it! Slash commands now use CLI
Breaking Changes:
- ⚠️ Scripts removed (replaced with CLI commands)
- ✅ All slash commands updated automatically
- ✅ No data migration needed
- ✅ Existing specs, plans, tasks remain compatible
🛠️ Advanced Features
Custom Templates
# List templates
specpulse template list
# Validate templates
specpulse template validate
# Backup templates
specpulse template backup
Memory Management
# Add architectural decision
specpulse memory add-decision "Use OAuth2" --rationale "Industry standard"
# Search memory
specpulse memory search "authentication"
# Export memory
specpulse memory export --format json
Checkpoint System
# Create checkpoint
specpulse checkpoint create 001 "Before major refactor"
# List checkpoints
specpulse checkpoint list 001
# Restore checkpoint
specpulse checkpoint restore 001 checkpoint-001
# Cleanup old checkpoints
specpulse checkpoint cleanup 001 --older-than-days 30
🤝 Contributing
We welcome contributions! Here's how:
# Clone repository
git clone https://github.com/specpulse/specpulse.git
cd specpulse
# Install development dependencies
pip install -e ".[dev]"
# Run tests
pytest
# Run code quality checks
black specpulse/
flake8 specpulse/
mypy specpulse/
See CONTRIBUTING.md for detailed guidelines.
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
🙏 Acknowledgments
Special thanks to:
- The SpecPulse community for feedback and contributions
- Claude Code and Gemini CLI teams for AI assistant platforms
- Everyone who helped shape v2.1.0's architecture
📞 Support
- Documentation: docs/
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Help Command:
specpulse --help
🎯 Why SpecPulse?
Before SpecPulse
❌ No standardized workflow
❌ Specifications often outdated
❌ Hard to track feature progress
❌ Manual context switching
❌ Inconsistent documentation
After SpecPulse
✅ Standardized SDD workflow
✅ Specifications always up-to-date
✅ Automatic progress tracking
✅ Smart context detection
✅ Consistent, validated documentation
🎉 Start building better software today with SpecPulse v2.1.0!
pip install specpulse==2.1.0
specpulse init my-project --ai claude
Made with ❤️ for developers who value specifications
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file specpulse-2.1.0.tar.gz.
File metadata
- Download URL: specpulse-2.1.0.tar.gz
- Upload date:
- Size: 226.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
011158f1ec0ff8132ca215ffcd246b133423deca2783376b6d7f31c5863e13b9
|
|
| MD5 |
5608ff63840e882c80ee26fabe8f5b5a
|
|
| BLAKE2b-256 |
cf4997511e9cae60383b4dfce1fbcc7d327a302733572094219e7618c514b3f4
|
File details
Details for the file specpulse-2.1.0-py3-none-any.whl.
File metadata
- Download URL: specpulse-2.1.0-py3-none-any.whl
- Upload date:
- Size: 197.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
279d1e4249f30ecbcf523bdbb9b4e7c28d7c4ee052155a6d4c8fbd58ce383ad1
|
|
| MD5 |
b96cd97d10a625e7db07ad0f16a9f944
|
|
| BLAKE2b-256 |
e7ba0f0e58fc494b19cb8b6263e12d661cb0be0dca27ccb88aefa58b5ba59845
|