ソース情報
- リポジトリ
- marian2js/opengoat
- ソースの最終更新活動
- 2026年2月18日 21:26
- 検出された SKILL.md の言語
- 英語
- スター
- 426
- フォーク
- 52
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/marian2js/opengoat --skill og-board-managerコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
When the user wants to plan, design, or implement an A/B test or experiment. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," or "how long should I run this test." Use this whenever someone is comparing two approaches and wants to measure which performs better. For tracking implementation, see analytics-tracking. For page-level conversion optimization, see page-cro.
"When the user wants to generate, iterate, or scale ad creative — headlines, descriptions, primary text, or full ad variations — for any paid advertising platform. Also use when the user mentions 'ad copy variations,' 'ad creative,' 'generate headlines,' 'RSA headlines,' 'bulk ad copy,' 'ad iterations,' 'creative testing,' 'ad performance optimization,' 'write me some ads,' 'Facebook ad copy,' 'Google ad headlines,' 'LinkedIn ad text,' or 'I need more ad variations.' Use this whenever someone needs to produce ad copy at scale or iterate on existing ads. For campaign strategy and targeting, see paid-ads. For landing page copy, see copywriting."
"When the user wants to optimize content for AI search engines, get cited by LLMs, or appear in AI-generated answers. Also use when the user mentions 'AI SEO,' 'AEO,' 'GEO,' 'LLMO,' 'answer engine optimization,' 'generative engine optimization,' 'LLM optimization,' 'AI Overviews,' 'optimize for ChatGPT,' 'optimize for Perplexity,' 'AI citations,' 'AI visibility,' 'zero-click search,' 'how do I show up in AI answers,' 'LLM mentions,' or 'optimize for Claude/Gemini.' Use this whenever someone wants their content to be cited or surfaced by AI assistants and AI search engines. For traditional technical and on-page SEO audits, see seo-audit. For structured data implementation, see schema-markup."
SOC 職業分類に基づく
SKILL.md を表示中
| name | og-board-manager |
| description | Use when you need to delegate, track, or review work. |
| metadata | {"version":"1.0.0"} |
Delegate and track work using OpenGoat tools.
Use tools directly. Do not run shell CLI commands like sh ./opengoat ....
Important: replace <me> with your agent ID.
opengoat_agent_info({ "agentId": "<me>" })
opengoat_task_list({ "assignee": "<me>" })
opengoat_task_get({ "taskId": "<task-id>" })
opengoat_task_create({
"actorId": "<me>",
"title": "...",
"description": "...",
"assignedTo": "<agent-id>"
})
opengoat_task_update_status({
"actorId": "<me>",
"taskId": "<task-id>",
"status": "todo|doing|blocked|pending|done",
"reason": "<optional-reason>"
})
opengoat_task_add_blocker({ "actorId": "<me>", "taskId": "<task-id>", "blocker": "..." })
opengoat_task_add_artifact({ "actorId": "<me>", "taskId": "<task-id>", "content": "..." })
opengoat_task_add_worklog({ "actorId": "<me>", "taskId": "<task-id>", "content": "..." })
opengoat_agent_info({ "agentId": "<me>" })
Use the output to ensure:
opengoat_task_list({ "assignee": "<me>" })
opengoat_task_get({ "taskId": "<task-id>" })
Create one task per owner and outcome.
opengoat_task_create({
"actorId": "<me>",
"title": "<verb>: <deliverable>",
"description": "<context + deliverable + acceptance criteria>",
"assignedTo": "<agent-id>"
})
If the task is small enough and you have the tools and context to complete it efficiently, do not delegate. Create a task for yourself so the work is still tracked.
Rules:
"assignedTo": "<me>".Example:
opengoat_task_create({
"actorId": "<me>",
"title": "Fix: <short description>",
"description": "Context:\n- ...\n\nDeliverable:\n- ...\n\nAcceptance criteria:\n- ...",
"assignedTo": "<me>"
})
Do not blindly break tasks down small. Size tasks based on where you sit in the org and who you are assigning to.
Write outcome-focused tasks:
Expect your reportee to create smaller tasks for their own direct reportees if needed.
Write execution-ready tasks:
Use a verb + deliverable:
Implement: <feature>Fix: <bug>Investigate: <question>Decide: <tradeoff>Context:
- Why this matters (1–3 bullets)
Deliverable:
- What to produce (code/doc/decision)
Acceptance criteria:
- Observable checks (tests pass, output, link, screenshot, etc.)
Constraints:
- Scope boundaries, dependencies, must-use tools, performance limits