├── .gitignore ├── LICENSE ├── README.md ├── customized ├── README.md └── workflow_example │ ├── config.yaml │ └── templates │ ├── blueprint.md │ ├── prd.md │ └── tasks.md ├── docs ├── operating-principles.md ├── readmes │ ├── README-es.md │ ├── README-ja.md │ ├── README-zh-CN.md │ └── README-zh-TW.md └── test_guideline.md ├── misc └── banner.png ├── pyproject.toml ├── tempdd ├── __init__.py ├── cli.py ├── controller.py ├── core │ ├── configs │ │ ├── config_default.yaml │ │ └── config_simple.yaml │ └── templates │ │ ├── __init__.py │ │ ├── template_arch_default.md │ │ ├── template_blueprint_default.md │ │ ├── template_blueprint_simple.md │ │ ├── template_prd_default.md │ │ ├── template_research_default.md │ │ ├── template_tasks_default.md │ │ └── template_tasks_simple.md ├── file_manager.py ├── handlers │ ├── __init__.py │ ├── ai.py │ ├── help.py │ ├── init.py │ └── ui_helpers.py ├── integrations │ ├── claude │ │ └── .claude │ │ │ └── commands │ │ │ └── tempdd-go.md │ ├── copilot │ │ └── .github │ │ │ └── prompts │ │ │ └── tempdd-go.prompt.md │ ├── cursor │ │ └── .cursor │ │ │ └── commands │ │ │ └── tempdd-go.md │ └── gemini │ │ └── .gemini │ │ └── commands │ │ └── tempdd-go.toml ├── template_parser.py └── utils.py └── tests ├── __init__.py ├── conftest.py ├── test_commands.py ├── test_controller.py └── test_template_parser.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/README.md -------------------------------------------------------------------------------- /customized/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/customized/README.md -------------------------------------------------------------------------------- /customized/workflow_example/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/customized/workflow_example/config.yaml -------------------------------------------------------------------------------- /customized/workflow_example/templates/blueprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/customized/workflow_example/templates/blueprint.md -------------------------------------------------------------------------------- /customized/workflow_example/templates/prd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/customized/workflow_example/templates/prd.md -------------------------------------------------------------------------------- /customized/workflow_example/templates/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/customized/workflow_example/templates/tasks.md -------------------------------------------------------------------------------- /docs/operating-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/docs/operating-principles.md -------------------------------------------------------------------------------- /docs/readmes/README-es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/docs/readmes/README-es.md -------------------------------------------------------------------------------- /docs/readmes/README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/docs/readmes/README-ja.md -------------------------------------------------------------------------------- /docs/readmes/README-zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/docs/readmes/README-zh-CN.md -------------------------------------------------------------------------------- /docs/readmes/README-zh-TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/docs/readmes/README-zh-TW.md -------------------------------------------------------------------------------- /docs/test_guideline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/docs/test_guideline.md -------------------------------------------------------------------------------- /misc/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/misc/banner.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tempdd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/__init__.py -------------------------------------------------------------------------------- /tempdd/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/cli.py -------------------------------------------------------------------------------- /tempdd/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/controller.py -------------------------------------------------------------------------------- /tempdd/core/configs/config_default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/core/configs/config_default.yaml -------------------------------------------------------------------------------- /tempdd/core/configs/config_simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/core/configs/config_simple.yaml -------------------------------------------------------------------------------- /tempdd/core/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tempdd/core/templates/template_arch_default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/core/templates/template_arch_default.md -------------------------------------------------------------------------------- /tempdd/core/templates/template_blueprint_default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/core/templates/template_blueprint_default.md -------------------------------------------------------------------------------- /tempdd/core/templates/template_blueprint_simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/core/templates/template_blueprint_simple.md -------------------------------------------------------------------------------- /tempdd/core/templates/template_prd_default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/core/templates/template_prd_default.md -------------------------------------------------------------------------------- /tempdd/core/templates/template_research_default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/core/templates/template_research_default.md -------------------------------------------------------------------------------- /tempdd/core/templates/template_tasks_default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/core/templates/template_tasks_default.md -------------------------------------------------------------------------------- /tempdd/core/templates/template_tasks_simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/core/templates/template_tasks_simple.md -------------------------------------------------------------------------------- /tempdd/file_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/file_manager.py -------------------------------------------------------------------------------- /tempdd/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | """Commands package for TempDD CLI.""" -------------------------------------------------------------------------------- /tempdd/handlers/ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/handlers/ai.py -------------------------------------------------------------------------------- /tempdd/handlers/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/handlers/help.py -------------------------------------------------------------------------------- /tempdd/handlers/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/handlers/init.py -------------------------------------------------------------------------------- /tempdd/handlers/ui_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/handlers/ui_helpers.py -------------------------------------------------------------------------------- /tempdd/integrations/claude/.claude/commands/tempdd-go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/integrations/claude/.claude/commands/tempdd-go.md -------------------------------------------------------------------------------- /tempdd/integrations/copilot/.github/prompts/tempdd-go.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/integrations/copilot/.github/prompts/tempdd-go.prompt.md -------------------------------------------------------------------------------- /tempdd/integrations/cursor/.cursor/commands/tempdd-go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/integrations/cursor/.cursor/commands/tempdd-go.md -------------------------------------------------------------------------------- /tempdd/integrations/gemini/.gemini/commands/tempdd-go.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/integrations/gemini/.gemini/commands/tempdd-go.toml -------------------------------------------------------------------------------- /tempdd/template_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/template_parser.py -------------------------------------------------------------------------------- /tempdd/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tempdd/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Test package for TempDD.""" -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tests/test_commands.py -------------------------------------------------------------------------------- /tests/test_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tests/test_controller.py -------------------------------------------------------------------------------- /tests/test_template_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitYCC/TempDD/HEAD/tests/test_template_parser.py --------------------------------------------------------------------------------