๐ช A CLI tool for Purpose/Scope/Outcome planning
Project description
๐ช scopemate
A CLI tool for breaking down complex tasks into smaller subtasks with LLM-powered scope estimation and planning.
Conceptual Framework
Scopemate is built around a three-part framework for strategic decision making:
๐งญ Purpose โ Strategic Relevance
"Why does this matter now?"
- Is it aligned with a company priority, customer need, or mission-critical goal?
- If we didn't do it, would anything break or stall?
- Does this move us closer to where we want to be?
โ If not strategic, it's a distraction.
๐ฆ Scope โ Executable Shape
"Can we actually do this โ fast and clearly?"
- Is it defined tightly enough to start today or this week?
- Can one person or squad own it end-to-end?
- What's the smallest useful version we can ship?
โ If it's vague or sprawling, it needs slicing.
๐ฏ Outcome โ Meaningful Result
"What will change once this is done?"
- Will this give us clarity, value, or unlock something else?
- How will we measure success โ learning, delivery, or stability?
- What does "done" look like in a way others can see?
โ If the outcome is fuzzy, stop and clarify.
Features
- Break down complex tasks into smaller subtasks
- LLM-driven scope estimation & breakdown
- Interactive task breakdown with alternative approaches
- Automatic fixing of inconsistent time estimates
- Checkpointing (pause & resume)
- Auto-detect when child tasks take more time than parents
- Auto-adjust parent scope estimates based on child complexity
- Pydantic validation
- Cross-platform support (Windows, macOS, Linux)
- Works with Python 3.10 and above
- Automatic Markdown export of plans for easy sharing
Requirements
- Python 3.10 or higher
- An API key for one of the supported LLM providers:
- OpenAI API key (default)
- Google AI (Gemini) API key
- Anthropic (Claude) API key
Installation
From PyPI (Recommended)
The easiest way to install scopemate is from PyPI:
# Install using pip (any platform)
pip install scopemate
# Or using pip3 on some systems
pip3 install scopemate
Platform-Specific Installation Scripts
macOS and Linux
# Clone the repository
git clone https://github.com/atmb4u/scopemate.git
cd scopemate
# Install using the script (automatically checks Python version)
./install.sh
Windows
# Clone the repository
git clone https://github.com/atmb4u/scopemate.git
cd scopemate
# Install using the script (automatically checks Python version)
.\install.bat
Manual Installation from Source
# Clone the repository
git clone https://github.com/atmb4u/scopemate.git
cd scopemate
# Install in development mode
pip install -e .
Setting up API Keys
scopemate now supports multiple LLM providers. Set up the API key for your preferred provider:
OpenAI (Default)
Set the OpenAI API key as an environment variable:
macOS/Linux
export OPENAI_API_KEY=your-api-key-here
Windows Command Prompt
set OPENAI_API_KEY=your-api-key-here
Windows PowerShell
$env:OPENAI_API_KEY = "your-api-key-here"
Google AI (Gemini)
Set the Google AI API key as an environment variable:
macOS/Linux
export GEMINI_API_KEY=your-api-key-here
Windows Command Prompt
set GEMINI_API_KEY=your-api-key-here
Windows PowerShell
$env:GEMINI_API_KEY = "your-api-key-here"
Anthropic (Claude)
Set the Anthropic API key as an environment variable:
macOS/Linux
export ANTHROPIC_API_KEY=your-api-key-here
Windows Command Prompt
set ANTHROPIC_API_KEY=your-api-key-here
Windows PowerShell
$env:ANTHROPIC_API_KEY = "your-api-key-here"
Selecting LLM Provider
You can select which LLM provider to use by setting the SCOPEMATE_LLM_PROVIDER environment variable:
macOS/Linux
# Use OpenAI (default)
export SCOPEMATE_LLM_PROVIDER=OPENAI
# Use Gemini
export SCOPEMATE_LLM_PROVIDER=GEMINI
# Use Claude
export SCOPEMATE_LLM_PROVIDER=CLAUDE
Windows Command Prompt
# Use OpenAI (default)
set SCOPEMATE_LLM_PROVIDER=OPENAI
# Use Gemini
set SCOPEMATE_LLM_PROVIDER=GEMINI
# Use Claude
set SCOPEMATE_LLM_PROVIDER=CLAUDE
Windows PowerShell
# Use OpenAI (default)
$env:SCOPEMATE_LLM_PROVIDER = "OPENAI"
# Use Gemini
$env:SCOPEMATE_LLM_PROVIDER = "GEMINI"
# Use Claude
$env:SCOPEMATE_LLM_PROVIDER = "CLAUDE"
Selecting Model
You can also specify which model to use for each provider:
# OpenAI model (default is o4-mini)
export SCOPEMATE_OPENAI_MODEL=gpt-4-turbo
# Gemini model (default is gemini-flash)
export SCOPEMATE_GEMINI_MODEL=gemini-2.0-flash
# Claude model (default is claude-3-haiku-20240307)
export SCOPEMATE_CLAUDE_MODEL=claude-3-7-sonnet-20250219
For permanent setup, add these environment variables to your shell profile or system environment variables.
Usage
Quick Start
# Run in interactive mode (recommended for first-time users)
scopemate --interactive
Command-line Options
# Get help and see all available options
scopemate --help
# Generate a project plan with purpose and outcome
scopemate --purpose="Build a REST API for user management" --outcome="A documented API with authentication and user CRUD operations" --output="project_plan.json"
Note: A Markdown version of the output is automatically generated alongside the JSON file. For example, if you specify --output="project_plan.json", a file named project_plan.md will also be created.
Interactive Mode Workflow
The interactive mode (scopemate --interactive) will guide you through:
-
Initial Setup:
- Create a new task or load an existing plan
- Set the main purpose and intended outcome
-
Task Definition:
- Define the scope of work
- Set dependencies and identify risks
- Define acceptance criteria
-
Task Breakdown:
- Automatically break down complex tasks into manageable subtasks
- Review and modify suggested breakdowns
- Explore alternative approaches to solving the problem
-
Validation and Refinement:
- Automatically detect and fix inconsistent time estimates
- Check for tasks where children take more time than parents
- Adjust parent scope estimates based on child complexity
-
Save and Export:
- Save your plan to a JSON file
- Resume work later using checkpoints
Output Format
scopemate generates both JSON and Markdown output files:
- JSON Output - Structured data format with the following structure:
{
"tasks": [
{
"id": "TASK-abc123",
"title": "Task title",
"purpose": {
"detailed_description": "Why this task matters",
"alignment": ["Strategic goal 1", "Strategic goal 2"],
"urgency": "strategic"
},
"scope": {
"size": "complex",
"time_estimate": "sprint",
"dependencies": ["Dependency 1"],
"risks": ["Risk 1", "Risk 2"]
},
"outcome": {
"type": "customer-facing",
"detailed_outcome_definition": "What will be delivered",
"acceptance_criteria": ["Criterion 1", "Criterion 2"],
"metric": "Success measurement",
"validation_method": "How to validate"
},
"meta": {
"status": "backlog",
"priority": 1,
"created": "2023-06-01T12:00:00Z",
"updated": "2023-06-01T12:00:00Z",
"due_date": null,
"confidence": "medium"
},
"parent_id": null
}
]
}
- Markdown Output - Human-readable format automatically generated with the same basename as the JSON file. The Markdown output includes:
- A summary of the plan with task counts and complexity breakdown
- Hierarchical task structure preserving parent-child relationships
- All relevant task details formatted for easy reading
- Properly formatted sections for purpose, scope, outcome, and metadata
This dual output approach makes it easy to both process the data programmatically (using the JSON) and share the plan with team members (using the Markdown).
Integrating with Other Tools
You can use scopemate's JSON output with other project management tools:
- Import tasks into JIRA using their API
- Convert to CSV for import into spreadsheets
- Integrate with custom project dashboards
Development
Setting Up Development Environment
Prerequisites
- Python 3.10 or higher
- Git
Using pip
# Clone the repository
git clone https://github.com/atmb4u/scopemate.git
cd scopemate
# Install development dependencies
pip install -r requirements-dev.txt
# Install the package in development mode
pip install -e .
Using uv (Recommended)
uv is a fast Python package installer and resolver:
# Install uv if you don't have it
pip install uv
# Clone the repository
git clone https://github.com/atmb4u/scopemate.git
cd scopemate
# Install development dependencies with uv
uv pip install -r requirements-dev.txt
# Install the package in development mode
uv pip install -e .
Using pipx
pipx is useful for installing and running Python applications in isolated environments:
# Install pipx if you don't have it
pip install pipx
# Clone the repository
git clone https://github.com/atmb4u/scopemate.git
cd scopemate
# Install the package in development mode with force flag
# This is useful when making changes and wanting to test the CLI immediately
pipx install --force .
Running Tests
# Run all tests
pytest
# Run tests with verbose output
pytest -v
# Run a specific test file
pytest tests/test_basic.py
# Run tests with coverage report
pytest --cov=scopemate
Building Distribution Packages
macOS and Linux
# Build distribution packages
./publish.sh
# Upload to PyPI (when ready)
twine upload dist/*
Windows
# Build distribution packages
.\publish.bat
# Upload to PyPI (when ready)
twine upload dist/*
Code Style and Linting
We use ruff for linting and code formatting:
# Run linter
ruff check src tests
# Format code
ruff format src tests
Testing Cross-Platform Compatibility
Use tox to test across multiple Python versions:
# Install tox
pip install tox
# Run tox
tox
# Run tox for a specific Python version
tox -e py310
Repository Structure
.
โโโ LICENSE # MIT License
โโโ MANIFEST.in # Package manifest
โโโ README.md # Project documentation
โโโ publish.sh # Build and publish script (Unix)
โโโ publish.bat # Build and publish script (Windows)
โโโ install.sh # Installation script (Unix)
โโโ install.bat # Installation script (Windows)
โโโ pyproject.toml # Project configuration
โโโ requirements.txt # Project dependencies
โโโ requirements-dev.txt # Development dependencies
โโโ setup.py # Package setup
โโโ tox.ini # Tox configuration
โโโ tests/ # Test directory
โ โโโ __init__.py # Test package initialization
โ โโโ test_basic.py # Basic tests
โ โโโ test_platform.py # Platform compatibility tests
โโโ src/ # Source code
โโโ scopemate/ # Main package
โโโ __init__.py # Package initialization
โโโ __main__.py # Entry point
โโโ breakdown.py # Task breakdown logic
โโโ cli.py # Command-line interface
โโโ core.py # Core functionality
โโโ engine.py # Main application logic
โโโ interaction.py # User interaction helpers
โโโ llm.py # LLM integration
โโโ models.py # Data models
โโโ storage.py # Task storage
โโโ task_analysis.py # Task analysis helpers
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
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 Distributions
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 scopemate-0.2.0-py3-none-any.whl.
File metadata
- Download URL: scopemate-0.2.0-py3-none-any.whl
- Upload date:
- Size: 41.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66d405a71f5bc9825a1f541cfeff5e51c294bade6b281f946a6070762a3a9fa1
|
|
| MD5 |
c7a9dcbfc090455910a9cd17b7878b29
|
|
| BLAKE2b-256 |
78017cc6b446e4e62eb28a3452b94775a0161cc877e51c83b01da7b71066f20b
|