Bundle of the .spec-dev workspace template.
Project description
spec-dev
A small helper package that bundles the .spec-dev workspace template so it can be
installed with pip and copied into new projects.
Installation
pip install spec-dev
If you are working from the repository source, you can install it locally instead:
pip install .
CLI Usage
# Initialise a project (default destination is the current directory)
spec-dev init
spec-dev init path/to/app
spec-dev init --force # overwrite an existing .spec-dev folder
# Capture a session summary before handing work to another agent
spec-dev session --label agent-alpha
# Archive the current cycle and reset active templates/memories
spec-dev cycle --label fal-ai-image-gen
# Regenerate and validate the file coverage manifest for the current tasks
# Regenerate and validate the file coverage manifest for the current tasks
spec-dev tasks-manifest --rewrite --check
# Update task status without editing Markdown manually
spec-dev tasks-status T-123 --set done
spec-dev sessions # list existing session summaries
Run spec-dev --help for the full command list and examples.
Python API
from spec_dev import copy, create_session_summary, complete_cycle
from spec_dev.tasks_manifest import cmd_build_manifest
root = copy("/path/to/project", overwrite=True)
session = create_session_summary(root, label="agent-alpha")
archive = complete_cycle(root, label="fal-ai-image-gen")
manifest = cmd_build_manifest(root) # also available via CLI: spec-dev tasks-manifest
Each helper returns the Path it creates (the .spec-dev directory, the new
session summary, or the archived history folder).
Workflow Primer
The bundled instructions under .spec-dev/*.md walk you through the
Plan & Intent → Tasks → Implementation phases. Highlights:
.spec-dev/templates/active/contains fresh templates for each phase, ready to copy into.spec-dev/active-dev/. Add deeper discovery material alongside the plan only when it adds value.- The Plan & Intent artifact must list every existing file to modify, every new file to create, and spell out ordered phases (Phase 0, Phase 1, …) with objectives and exit criteria.
- Run
spec-dev tasks-manifest --auto-scope --rewrite --checkafter the task board is in place. It regeneratesactive-dev/file-coverage.json, validates that each(path, selector)maps to exactly one task (use@ <selector>to scope to a region), and becomes the checklist before you flip the gate to READY FOR IMPLEMENTATION. - Tasks mirror the plan phases using
## Phase N — …headings with status badges while keeping the strict### T-###+changesblocks for manifest compatibility. - Implementation logs capture each finished task while you keep the phase badges in sync (note phase completion in a task entry only if it helps reviewers).
- Update task status (
pending,in-progress,done) withspec-dev tasks-status T-XXX --set <status>so history stays intact until you archive the cycle. - Session summaries live under
.spec-dev/active-memories/; runspec-dev session [--label <agent-name>]before you hand the work to another agent, and usespec-dev sessionsto review existing notes. - After delivering a cycle, run
spec-dev cycle [--label <name>]to move the finished plan/tasks/implementation log and active memories into.spec-dev/history/, then resetactive-dev/andactive-memories/with clean templates for the next iteration. - After delivering a cycle, run
spec-dev cycle [--label <name>]to move the finished plan/tasks/implementation log and active memories into.spec-dev/history/, then resetactive-dev/andactive-memories/with clean templates for the next iteration.
Key Files
.spec-dev/Plan.md,.spec-dev/Tasks.md,.spec-dev/Implementation.md— phase instructions that govern the agent. Add any deeper discovery material alongside the plan on an as-needed basis..spec-dev/active-dev/— working copies for the current cycle..spec-dev/active-memories/— session summaries for hand-offs..spec-dev/active-dev/file-coverage.json— auto-generated manifest of task changes (maintained viaspec-dev tasks-manifest)..spec-dev/history/— archived cycles produced byspec-dev cycle.
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 spec_dev-0.4.1.tar.gz.
File metadata
- Download URL: spec_dev-0.4.1.tar.gz
- Upload date:
- Size: 22.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2d5d30dc16963d154f05157023c9eeaa942a503a5be5e1226d47caa0ac1b99d
|
|
| MD5 |
fbe3abe4a4b9021d267908c3d41c4bcf
|
|
| BLAKE2b-256 |
c31260f51b5f40e8035720b3ac3d9e5d6ec49d69e1698835451f643d9309b720
|
File details
Details for the file spec_dev-0.4.1-py3-none-any.whl.
File metadata
- Download URL: spec_dev-0.4.1-py3-none-any.whl
- Upload date:
- Size: 27.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8804765397db8e99ba187a00c8c7edc751e2632db75398d95411cad829366877
|
|
| MD5 |
1315f344e6b4a2039211113858ac6f2d
|
|
| BLAKE2b-256 |
f0ce86d90462bcf5f3daf3934f56cd89594221f39291ec64ed5d6a5c9b25100d
|