CLI tool that decomposes big coding tasks into self-contained chunks, each with a ready-to-paste prompt including codebase context, targeted instructions, and dependency tracking. Supports phase, component, and manual decomposition strategies. https://claude.ai/code/session_01Fzv8baXnEVVhnrffAb3Ucc
19 lines
486 B
TOML
19 lines
486 B
TOML
[build-system]
|
|
requires = ["setuptools>=68.0", "wheel"]
|
|
build-backend = "setuptools.backends._legacy:_Backend"
|
|
|
|
[project]
|
|
name = "claude-task-chunker"
|
|
version = "0.1.0"
|
|
description = "Break large coding tasks into self-contained chunks for efficient Claude Code sessions"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = {text = "MIT"}
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
ctc = "claude_task_chunker.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["claude_task_chunker*"]
|