Skip to main content

๐Ÿชœ 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

Requirements

  • Python 3.10 or higher
  • OpenAI API key set as environment variable (OPENAI_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 the OpenAI API Key

scopemate requires an OpenAI API key to function. Set it 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"

For permanent setup, add this to your shell profile or 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"

# Fix inconsistent estimates in an existing plan
scopemate --fix-estimates --input="project_plan.json" --output="fixed_plan.json"

Interactive Mode Workflow

The interactive mode (scopemate --interactive) will guide you through:

  1. Initial Setup:

    • Create a new task or load an existing plan
    • Set the main purpose and intended outcome
  2. Task Definition:

    • Define the scope of work
    • Set dependencies and identify risks
    • Define acceptance criteria
  3. Task Breakdown:

    • Automatically break down complex tasks into manageable subtasks
    • Review and modify suggested breakdowns
    • Explore alternative approaches to solving the problem
  4. 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
  5. Save and Export:

    • Save your plan to a JSON file
    • Resume work later using checkpoints

Output Format

scopemate generates a structured JSON output with the following format:

{
  "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
    }
  ]
}

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 .

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.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

scopemate-0.1.0-py3-none-any.whl (31.0 kB view details)

Uploaded Python 3

File details

Details for the file scopemate-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: scopemate-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 31.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for scopemate-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 76aeca572bde52047efc1992f257e8ac60771e9020cd1fddbe022a140ce55567
MD5 f213cb840f2ce6038aea0e831b3f5c03
BLAKE2b-256 baacab7f2fcbe3ed9f221e399fdbc74e9f5a6189a0422c8150a73f5e0be029dd

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page