ソース情報
- リポジトリ
- rlaope/bestwork-agent
- ソースの最終更新活動
- 2026年4月8日 05:40
- 検出された SKILL.md の言語
- 英語
- スター
- 1
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/rlaope/bestwork-agent --skill superthinkingコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Evidence-driven causal tracing — competing hypotheses, falsification, rebuttal round, recommended next probes
Feature validation gate — research, define purpose, stress-test from real user perspective before building
Maximum parallelism burst — all tasks execute simultaneously with no coordination overhead
SOC 職業分類に基づく
SKILL.md を表示中
| name | superthinking |
| description | 1000-iteration thought simulation — plan, build, validate, critique, amplify |
When this skill is invoked, you MUST follow this exact output sequence.
[BW] superthinking — 1000x ideation engine starting...
Extract the user's core idea, problem, or domain as the seed. If the prompt is vague, infer the most promising direction from context (codebase, recent work, stated goals).
Print:
[BW] seed: "{one-line description of the core idea}"
[BW] beginning 1000 iterations (10 epochs × 100 cycles)...
Run 10 epochs. Each epoch internally simulates 100 compressed iteration cycles of the 5-phase loop below. Between epochs, print the evolved state so the user sees the idea transform in real time.
After each epoch (100 cycles), print:
[BW] ═══ epoch {N}/10 (iterations {start}-{end}) ═══
[BW] concept: {current concept in one line}
[BW] pivot: {what changed from last epoch and why}
[BW] build: {technical approach summary}
[BW] moat: {defensibility / competitive advantage}
[BW] risk: {biggest remaining risk}
[BW] impact: {projected impact scale}
[BW] confidence: {low/medium/high} — {reason}
Each epoch MUST genuinely evolve the idea — do not repeat the same concept with different words. If the idea hasn't meaningfully changed, you aren't thinking hard enough. Pivot aggressively in early epochs, refine precisely in late epochs.
After all 10 epochs, print the final distilled result:
[BW] ═══════════════════════════════════════════
[BW] superthinking complete — 1000 iterations converged
[BW] ═══════════════════════════════════════════
## Final Concept
{2-3 sentence description of the winning concept}
## Evolution Timeline
- Epoch 1-2: {what the idea started as}
- Epoch 3-4: {critical pivot point}
- Epoch 5-6: {stabilization insight}
- Epoch 7-8: {implementation clarity}
- Epoch 9-10: {final amplification}
## Key Pivots
{3-5 bullet points of the most important direction changes and why they happened}
## Why This Wins
{The core insight that makes this concept defensible, valuable, and differentiated}
## Critical Assumptions
{Numbered list of assumptions that must be true for this to work, ranked by risk}
## Implementation Roadmap
1. **Phase 1 (MVP)**: {what to build first to validate}
2. **Phase 2 (Growth)**: {what to build once validated}
3. **Phase 3 (Moat)**: {what creates long-term defensibility}
## Market Positioning
- **Target**: {who specifically}
- **Wedge**: {how to enter}
- **Scale**: {how to expand}
- **Endgame**: {what this becomes at full scale}
## Kill Criteria
{Conditions under which you should abandon this idea — be honest}
Save to .bestwork/state/superthinking.json:
{
"created": "<ISO timestamp>",
"seed": "<original seed>",
"epochs": [
{
"epoch": 1,
"iterations": "1-100",
"concept": "...",
"pivot": "...",
"confidence": "low|medium|high"
}
],
"finalConcept": "<final concept summary>",
"keyPivots": ["..."],
"status": "complete"
}