├── .claude └── commands │ └── changelog-update.md ├── .gitignore ├── .npmignore ├── .sdd ├── README.md ├── description.md ├── specs │ └── sdd-highway │ │ ├── design.md │ │ ├── requirements.md │ │ └── tasks.md ├── steering │ ├── product.md │ ├── structure.md │ └── tech.md └── target-spec.txt ├── AGENTS.md ├── CHANGELOG.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── INTRODUCTION.ja.md ├── INTRODUCTION.md ├── LICENSE ├── README.ja.md ├── README.md ├── assets └── youtube.png ├── bin └── cli.js ├── eslint.config.js ├── lib ├── commands │ ├── index.js │ ├── init.js │ ├── messages.js │ └── upgrade.js ├── index.js └── utils │ ├── logger.js │ └── paths.js ├── package.json ├── scripts ├── bump-version.sh └── version.txt ├── templates ├── en │ ├── init │ │ ├── description.md │ │ └── sdd-readme.md │ └── prompts │ │ ├── sdd-archive.md │ │ ├── sdd-design.md │ │ ├── sdd-highway.md │ │ ├── sdd-implement.md │ │ ├── sdd-requirements.md │ │ ├── sdd-steering.md │ │ └── sdd-tasks.md └── ja │ ├── init │ ├── description.md │ └── sdd-readme.md │ └── prompts │ ├── sdd-archive.md │ ├── sdd-design.md │ ├── sdd-highway.md │ ├── sdd-implement.md │ ├── sdd-requirements.md │ ├── sdd-steering.md │ └── sdd-tasks.md └── test ├── init.test.js └── upgrade.test.js /.claude/commands/changelog-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/.claude/commands/changelog-update.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/.npmignore -------------------------------------------------------------------------------- /.sdd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/.sdd/README.md -------------------------------------------------------------------------------- /.sdd/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/.sdd/description.md -------------------------------------------------------------------------------- /.sdd/specs/sdd-highway/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/.sdd/specs/sdd-highway/design.md -------------------------------------------------------------------------------- /.sdd/specs/sdd-highway/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/.sdd/specs/sdd-highway/requirements.md -------------------------------------------------------------------------------- /.sdd/specs/sdd-highway/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/.sdd/specs/sdd-highway/tasks.md -------------------------------------------------------------------------------- /.sdd/steering/product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/.sdd/steering/product.md -------------------------------------------------------------------------------- /.sdd/steering/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/.sdd/steering/structure.md -------------------------------------------------------------------------------- /.sdd/steering/tech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/.sdd/steering/tech.md -------------------------------------------------------------------------------- /.sdd/target-spec.txt: -------------------------------------------------------------------------------- 1 | sdd-highway 2 | -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INTRODUCTION.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/INTRODUCTION.ja.md -------------------------------------------------------------------------------- /INTRODUCTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/INTRODUCTION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/README.md -------------------------------------------------------------------------------- /assets/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/assets/youtube.png -------------------------------------------------------------------------------- /bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/bin/cli.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/eslint.config.js -------------------------------------------------------------------------------- /lib/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/lib/commands/index.js -------------------------------------------------------------------------------- /lib/commands/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/lib/commands/init.js -------------------------------------------------------------------------------- /lib/commands/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/lib/commands/messages.js -------------------------------------------------------------------------------- /lib/commands/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/lib/commands/upgrade.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./commands'); 2 | -------------------------------------------------------------------------------- /lib/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/lib/utils/logger.js -------------------------------------------------------------------------------- /lib/utils/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/lib/utils/paths.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/package.json -------------------------------------------------------------------------------- /scripts/bump-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/scripts/bump-version.sh -------------------------------------------------------------------------------- /scripts/version.txt: -------------------------------------------------------------------------------- 1 | 1.3.0 2 | -------------------------------------------------------------------------------- /templates/en/init/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/en/init/description.md -------------------------------------------------------------------------------- /templates/en/init/sdd-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/en/init/sdd-readme.md -------------------------------------------------------------------------------- /templates/en/prompts/sdd-archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/en/prompts/sdd-archive.md -------------------------------------------------------------------------------- /templates/en/prompts/sdd-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/en/prompts/sdd-design.md -------------------------------------------------------------------------------- /templates/en/prompts/sdd-highway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/en/prompts/sdd-highway.md -------------------------------------------------------------------------------- /templates/en/prompts/sdd-implement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/en/prompts/sdd-implement.md -------------------------------------------------------------------------------- /templates/en/prompts/sdd-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/en/prompts/sdd-requirements.md -------------------------------------------------------------------------------- /templates/en/prompts/sdd-steering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/en/prompts/sdd-steering.md -------------------------------------------------------------------------------- /templates/en/prompts/sdd-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/en/prompts/sdd-tasks.md -------------------------------------------------------------------------------- /templates/ja/init/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/ja/init/description.md -------------------------------------------------------------------------------- /templates/ja/init/sdd-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/ja/init/sdd-readme.md -------------------------------------------------------------------------------- /templates/ja/prompts/sdd-archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/ja/prompts/sdd-archive.md -------------------------------------------------------------------------------- /templates/ja/prompts/sdd-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/ja/prompts/sdd-design.md -------------------------------------------------------------------------------- /templates/ja/prompts/sdd-highway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/ja/prompts/sdd-highway.md -------------------------------------------------------------------------------- /templates/ja/prompts/sdd-implement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/ja/prompts/sdd-implement.md -------------------------------------------------------------------------------- /templates/ja/prompts/sdd-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/ja/prompts/sdd-requirements.md -------------------------------------------------------------------------------- /templates/ja/prompts/sdd-steering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/ja/prompts/sdd-steering.md -------------------------------------------------------------------------------- /templates/ja/prompts/sdd-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/templates/ja/prompts/sdd-tasks.md -------------------------------------------------------------------------------- /test/init.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/test/init.test.js -------------------------------------------------------------------------------- /test/upgrade.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomada1114/spec-driven-codex/HEAD/test/upgrade.test.js --------------------------------------------------------------------------------