From Nolto
Use when the user asks for the current state of plans, a summary of a specific plan, or a non-engineer-friendly progress report. Calls list_plans and get_plan and summarizes in plain Japanese.
How this skill is triggered — by the user, by Claude, or both
Slash command
/nolto:plan-statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
ユーザーが「Nolto のプランの状況を教えて」「進行中のプランを一覧で見せて」「このプランはどこまで進んだ?」と聞いたとき、このスキルが起動します。エンジニア以外のメンバーにも伝わるよう、平易な日本語でまとめます。
ユーザーが「Nolto のプランの状況を教えて」「進行中のプランを一覧で見せて」「このプランはどこまで進んだ?」と聞いたとき、このスキルが起動します。エンジニア以外のメンバーにも伝わるよう、平易な日本語でまとめます。
mcp__nolto__list_plans({
projectId: "<uuid>", // 省略するとデフォルトプロジェクト
status: "in_progress" // 任意フィルタ
})
プランが多い場合は status: "in_progress" で絞り込むと見やすくなります。ユーザーが「全部見たい」と言った場合はフィルタなしで呼びます。
有効な status フィルタ値: not_started / in_progress / done / discarded
特定プランの詳細(フェーズ進捗、最新テスト結果、レビュー結果)を確認するには:
mcp__nolto__get_plan({ planId: "<uuid>" })
以下の形式でユーザーに伝えます:
【プラン名】新機能リリース計画
ステータス: 進行中
フェーズ進捗: 3/5 完了、1 進行中、1 未着手
最新テスト: フェーズ 3 — 合格(ラウンド 2)
直近のブロッカー: フェーズ 4「本番デプロイ」が未着手。担当者未割当て。
確認ページ: https://nolto.app/projects/…
ステータスの日本語表記(PLAN_STATUS_LABELS 準拠):
| 値 | 表示 |
|---|---|
not_started | 未着手 |
in_progress | 進行中 |
done | 完了 |
discarded | 破棄 |
list_plans、get_plan には projectId を渡すことを推奨します。
nolto.json を確認します。あれば projectId フィールドを使います。nolto.json がない場合: mcp__nolto__list_projects で一覧を取得し、ユーザーに選んでもらいます。読み取り操作ではデフォルトプロジェクト(set_default_project で設定)も使えます。nolto.json をリポジトリ root に作成すると、次回から自動で使われます」と案内してください(または nolto link <id> を案内)。| エラー | 対処 |
|---|---|
401 Unauthorized | 認証が切れています。ヘッドレス環境では nolto login --client claude(@nolto/cli >= 0.3.0)で再認証、デスクトップは Claude Code の MCP 設定で nolto を再認証するようユーザーに案内してください。 |
429 Too Many Requests | Retry-After ヘッダーの秒数だけ待ってから再試行します。 |
| デフォルトプロジェクト未設定 | list_projects で一覧を表示し、projectId を明示するか nolto.json 作成を案内します。 |
npx claudepluginhub uruca-kk/nolto-plugin --plugin noltoProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.