Help / Green Codens
PRD / Plan / Kickoff 管理。曖昧な要望を Consultation で構造化し、PRD → Plan → Purple 提出までを 1 つの流れで自動化します。Notion 連携でドキュメント側とも同期されます。
Green Codens は 「曖昧な要望」を「実行可能な PRD / Plan」に変換するパイプラインです。主な単位は次の通り:
codens-mcp がインストール済み・ログイン済みダッシュボード(app.green.codens.ai)から「New Project」を選択。または MCP 経由:
// project 作成
await tools.green_project({
action: "create",
name: "Billing Revamp 2026",
description: "..."
});
// 関連 GitHub repo を紐付け(Plan → Purple 提出で必要)
await tools.green_repository({ action: "add", project_id, repo_full_name: "Corevice/billing" });PRD / Tasks を Notion と双方向同期できます。Notion 上で議論したい場合は連携を推奨。
green_notion({ action: "status" }) で現状を確認green_notion({ action: "link" }) が返す URL を開いて Notion OAuth を承認(workspace admin 権限)green_project({ action: "setup_tasks_db_columns" }) で必要な列を自動セットアップNotion DB のステータス列名やオプション名を手動変更すると同期が壊れる場合があります。再設定は setup_tasks_db_columns で安全に再現可能。
// 1. Consultation を開始してチャット
const c = await tools.green_consultation({
action: "create_with_message",
project_id: "...",
title: "年額プラン選択 UI",
content: "課金画面に年額プランの選択肢を増やしたい..."
});
// 2. Consultation を PRD に変換(テンプレート指定)
const prd = await tools.green_consultation({
action: "convert_to_prd",
consultation_id: c.id,
template_id: "..."
});
// 3. PRD から Plan を生成
const plan = await tools.green_plan({
action: "generate_from_prd",
prd_id: prd.id
});
// 4. Plan を Purple に提出(PR 作成まで自動化)
await tools.green_plan({
action: "submit_to_purple",
plan_id: plan.id
});PRD のレビュー(green_prd_review)、コメント(green_prd_comment)、翻訳(green_prd_translate)も合わせて利用できます。
新規プロジェクトの立ち上げには Kickoff ウィザードが便利です。Vision → Scope → Tech → Milestones の各ステップを対話的にヒアリングし、PRDs / UI mockup / Prototype をまとめて生成します。
// Vision ステップから開始
await tools.green_kickoff_wizard({
action: "start_vision",
project_id: "..."
});
// 全ステップ完了後、成果物を一括生成
await tools.green_kickoff_generate({
action: "generate_prds",
kickoff_id: "..."
});
await tools.green_kickoff_generate({
action: "generate_ui",
kickoff_id: "..."
});
await tools.green_kickoff_generate({
action: "generate_prototype",
kickoff_id: "..."
});