├── .github ├── copilot-instructions.md ├── instructions │ └── run.instructions.md └── prompts │ ├── new.prompt.md │ ├── plan.prompt.md │ └── research.prompt.md ├── .gitignore ├── .vscode └── mcp.json ├── LICENSE ├── README.md └── docs └── plans ├── idea.md ├── memory.md └── research.md /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/spec-driven-app-template/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/instructions/run.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/spec-driven-app-template/HEAD/.github/instructions/run.instructions.md -------------------------------------------------------------------------------- /.github/prompts/new.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/spec-driven-app-template/HEAD/.github/prompts/new.prompt.md -------------------------------------------------------------------------------- /.github/prompts/plan.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/spec-driven-app-template/HEAD/.github/prompts/plan.prompt.md -------------------------------------------------------------------------------- /.github/prompts/research.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/spec-driven-app-template/HEAD/.github/prompts/research.prompt.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/spec-driven-app-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/spec-driven-app-template/HEAD/.vscode/mcp.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/spec-driven-app-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/spec-driven-app-template/HEAD/README.md -------------------------------------------------------------------------------- /docs/plans/idea.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/plans/memory.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/plans/research.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------