スキル一覧に戻る
mikeyobrien

ralph-tools

by mikeyobrien

ralph-toolsは、業務プロセスの自動化を支援するスキルです。ワークフロー管理と自動化により、生産性の向上と運用効率の改善を実現します。

1,184🍴 137📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: ralph-tools description: Use when managing runtime tasks or memories during Ralph orchestration runs

Ralph Tools

Quick reference for ralph tools task and ralph tools memory commands used during orchestration.

Two Task Systems

SystemCommandPurposeStorage
Runtime tasksralph tools taskTrack work items during runs.agent/tasks.jsonl
Code tasksralph taskImplementation planningtasks/*.code-task.md

This skill covers runtime tasks. For code tasks, see /code-task-generator.

Task Commands

ralph tools task add "Title" -p 2 -d "description" --blocked-by id1,id2
ralph tools task list [--status open|in_progress|closed] [--format table|json|quiet]
ralph tools task ready                    # Show unblocked tasks
ralph tools task close <task-id>
ralph tools task show <task-id>

Task ID format: task-{timestamp}-{4hex} (e.g., task-1737372000-a1b2)

Priority: 1-5 (1 = highest, default 3)

Memory Commands

ralph tools memory add "content" -t pattern --tags tag1,tag2
ralph tools memory list [-t type] [--tags tags]
ralph tools memory search "query" [-t type] [--tags tags]
ralph tools memory prime --budget 2000    # Output for context injection
ralph tools memory show <mem-id>
ralph tools memory delete <mem-id>

Memory types:

  • pattern (default) - How this codebase does things
  • decision - Why something was chosen
  • fix - Solution to a recurring problem
  • context - Project-specific knowledge

Memory ID format: mem-{timestamp}-{4hex} (e.g., mem-1737372000-a1b2)

NEVER use echo/cat to write tasks or memories — always use CLI tools.

Output Formats

All commands support --format:

  • table (default) - Human-readable
  • json - Machine-parseable
  • quiet - IDs only (for scripting)
  • markdown - Memory prime only

Common Workflows

Track dependent work

ralph tools task add "Setup auth" -p 1
# Returns: task-1737372000-a1b2

ralph tools task add "Add user routes" --blocked-by task-1737372000-a1b2
ralph tools task ready  # Only shows unblocked tasks

Store a discovery

ralph tools memory add "Parser requires snake_case keys" -t pattern --tags config,yaml

Find relevant memories

ralph tools memory search "config" --tags yaml
ralph tools memory prime --budget 1000 -t pattern  # For injection

スコア

総合スコア

85/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 1000以上

+15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

+5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

レビュー

💬

レビュー機能は近日公開予定です