@ripla/godd-mcp 1.0.1 → 1.0.2-canary.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/godd.cjs +116 -111
- package/dist/godd.js +114 -17
- package/dist/index.js +1 -1
- package/notes-api/app/config.py +24 -3
- package/notes-api/app/database.py +10 -4
- package/notes-api/app/routers/comments.py +1 -0
- package/notes-api/app/routers/files.py +0 -1
- package/notes-api/app/routers/settings.py +4 -2
- package/notes-api/app/routers/tree.py +10 -2
- package/notes-api/app/services/github_issues.py +1 -1
- package/notes-api/tests/test_config_ssl.py +28 -0
- package/notes-api/tests/test_issues.py +15 -4
- package/notes-api/tests/test_pr.py +0 -1
- package/notes-api/tests/test_pr_chain.py +2 -2
- package/notes-api/tests/test_tree.py +15 -3
- package/notes-app/src/components/IssueList.tsx +36 -16
- package/notes-app/vitest.config.ts +1 -0
- package/package.json +1 -1
- package/templates/agents/architect.hbs +4 -4
- package/templates/agents/auto-documenter.hbs +4 -4
- package/templates/agents/backend-developer.hbs +3 -3
- package/templates/agents/code-reviewer.hbs +2 -2
- package/templates/agents/database-developer.hbs +4 -4
- package/templates/agents/debug-specialist.hbs +2 -2
- package/templates/agents/environment-setup.hbs +1 -1
- package/templates/agents/frontend-developer.hbs +5 -5
- package/templates/agents/integration-qa.hbs +1 -1
- package/templates/agents/pr-writer.hbs +1 -1
- package/templates/agents/quality-lead.hbs +3 -3
- package/templates/agents/requirements-analyst.hbs +2 -2
- package/templates/agents/security-analyst.hbs +1 -1
- package/templates/agents/ssot-updater.hbs +3 -3
- package/templates/agents/technical-writer.hbs +3 -3
- package/templates/agents/unit-test-engineer.hbs +1 -1
- package/templates/prompts/agent-dev-workflow.hbs +1 -1
- package/templates/prompts/docs-init.hbs +41 -59
- package/templates/prompts/docs-update.hbs +10 -10
- package/templates/prompts/notes-deploy.hbs +2 -1
- package/templates/prompts/pr-create.hbs +2 -2
- package/templates/prompts/push-execute.hbs +2 -2
- package/templates/prompts/push.hbs +1 -1
- package/templates/prompts/requirements-to-business-flow.hbs +1 -1
- package/templates/prompts/specification-to-tickets.hbs +1 -1
- package/templates/prompts/submit.hbs +2 -2
- package/templates/prompts/sync.hbs +1 -1
package/README.md
CHANGED
|
@@ -141,7 +141,7 @@ chmod +x godd
|
|
|
141
141
|
| `godd init` | — | プロジェクトのセットアップ(config.godd + .cursor/mcp.json 生成) |
|
|
142
142
|
| `godd server` | `godd s` | MCP サーバーを起動(Cursor が自動実行) |
|
|
143
143
|
| `godd notes deploy` | `godd n deploy` | ripla Notes をデプロイ(ローカル or AWS、`--target`/`-y` 対応) |
|
|
144
|
-
| `godd notes infra` | `godd n infra` |
|
|
144
|
+
| `godd notes infra` | `godd n infra` | `notes-api/` / `notes-app/` とクラウドインフラを対話形式で構築(AWS/GCP/Azure/Vercel×Railway) |
|
|
145
145
|
| `godd version` | `godd v` | バージョン表示 |
|
|
146
146
|
| `godd help` | `godd h` | ヘルプ表示 |
|
|
147
147
|
|
|
@@ -434,7 +434,7 @@ godd notes infra
|
|
|
434
434
|
```
|
|
435
435
|
|
|
436
436
|
対話形式で AWS リージョンや環境名を入力すると、以下が生成されます:
|
|
437
|
-
- `ripla-notes/`
|
|
437
|
+
- `ripla-notes/` ディレクトリ内の `notes-api/`, `notes-app/`(既存ディレクトリも同梱ソースで上書き更新し、`.env` / `node_modules` / `dist` などは除外)
|
|
438
438
|
- Terraform ファイル(VPC, ECS, RDS, S3, CloudFront 等)
|
|
439
439
|
- CI/CD ワークフロー
|
|
440
440
|
|