ソース情報
- リポジトリ
- javimosch/goal-mode
- ソースの最終更新活動
- 2026年5月18日 12:00
- 検出された SKILL.md の言語
- 英語
- スター
- 2
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/javimosch/goal-mode --skill goal-modeコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | goal-mode |
| description | Generic /goal implementation for Devin CLI and OpenCode. |
| triggers | ["user","model"] |
Generic /goal command implementation for Devin CLI, OpenCode, and Pi. Provides persistent session-scoped objectives that persist across turns with automatic continuation hooks.
Primary users: Devin CLI, OpenCode, Pi
Note for Pi: Pi has an alternative implementation via npm:@narumitw/pi-goal (available May 16) - if installed, do not use this repo to avoid conflicts.
The goal mode is bundled with Devin CLI and OpenCode. No installation needed for those tools.
/goal <objective> — set active goal
/goal status — show goal + continuation instructions
/goal pause / resume — toggle continuation
/goal clear — delete goal
/goal complete — mark done (after audit)
/goal --tokens 250K <obj> — set with soft token budget
See REFERENCE.md for detailed setup instructions for Devin CLI (Stop hook) and OpenCode (idle plugin).
Remove the Stop lifecycle hook from ~/.config/devin/config.json:
# Remove the "stop" hook from config.json
# Edit the file and remove the stop lifecycle hook section
Delete goal database and state:
rm -f ~/.config/devin/goal.db
Remove the idle plugin:
rm -f ~/.config/opencode/plugins/goal-continue.js
Delete goal database and state:
rm -f ~/.config/opencode/goal.db
Remove the goal skill directory:
rm -rf ~/.config/pi/skills/goal
Delete goal database and state:
rm -f ~/.config/pi/goal.db
Note: If using Pi's npm package (@narumitw/pi-goal), uninstall it instead:
npm uninstall -g @narumitw/pi-goal
The generic script auto-detects the calling CLI and stores per-tool isolated state in SQLite databases. See REFERENCE.md for full architecture details.