スキル一覧に戻る
masrurimz

ultrawork

by masrurimz

0🍴 0📅 2026年1月11日
GitHubで見るManusで実行

SKILL.md


name: ultrawork description: Maximum performance mode using Amp's built-in oracle, librarian, and Search tools in parallel for comprehensive analysis. Activates when you need deep, multi-dimensional research across codebase and external docs.

Ultrawork: Maximum Performance Mode

Activates parallel execution of Amp's most powerful built-in tools for comprehensive analysis.

Built-in Tools Used

ToolPurposeStrength
oracleDeep reasoning, architecture reviewExpert analysis, code review
librarianExternal documentation researchLibrary docs, best practices
SearchSemantic codebase searchConceptual code discovery
GrepExact pattern matchingFast, precise matches
globFile pattern discoveryStructure mapping

Parallel Execution Pattern

┌─────────────────────────────────────────────────────┐
│                    ULTRAWORK                         │
├─────────────────────────────────────────────────────┤
│  Launch in parallel:                                 │
│                                                      │
│  ┌──────────┐  ┌──────────┐  ┌──────────┐          │
│  │  Search  │  │ librarian│  │  oracle  │          │
│  │(internal)│  │(external)│  │ (expert) │          │
│  └────┬─────┘  └────┬─────┘  └────┬─────┘          │
│       │             │             │                 │
│       ▼             ▼             ▼                 │
│  Codebase      External       Architecture          │
│  locations     best           recommendations       │
│               practices                              │
│       │             │             │                 │
│       └─────────────┴─────────────┘                 │
│                     │                               │
│                     ▼                               │
│           SYNTHESIS: Combined insights              │
└─────────────────────────────────────────────────────┘

Usage

Comprehensive Codebase Audit

# Step 1: Parallel discovery
Search("Find all authentication-related code")
Search("Find all API endpoints")  
Search("Find all database queries")

# Step 2: Expert analysis
oracle(
  task: "Audit this codebase for security vulnerabilities",
  files: [discovered_files]
)

# Step 3: External research
librarian(
  query: "OWASP security best practices for Node.js APIs"
)

Deep Feature Analysis

# Parallel internal search
Search("How does the payment processing work?")
Grep("processPayment(", path="src")
glob("**/payment*")

# Parallel external research
librarian(query: "Stripe API integration patterns")
librarian(query: "Payment processing error handling best practices")

# Expert synthesis
oracle(
  task: "Review payment implementation against best practices",
  files: ["src/payments/"],
  context: "Compare against Stripe patterns from librarian research"
)

Multi-Repository Research

# Use librarian for cross-repo analysis
librarian(
  query: "How does the Kubernetes scheduler handle pod affinity?",
  context: "Comparing to our scheduler implementation"
)

librarian(
  query: "How does React implement concurrent rendering?",
  context: "Understanding patterns for our UI framework"
)

When to Use Ultrawork

Use for:

  • "Audit the entire codebase for X"
  • "Find all instances and best practices for Y"
  • "Research and analyze how we should implement Z"
  • "Compare our implementation against industry standards"
  • "Deep dive into module X with external context"

Don't use for:

  • Simple file searches (use Search directly)
  • Single-file edits (just edit it)
  • Tasks with clear, linear steps (use sisyphus)

Execution Checklist

1. [ ] Identify all dimensions to research
2. [ ] Launch Search queries for internal code (parallel)
3. [ ] Launch librarian queries for external docs (parallel)
4. [ ] Collect results
5. [ ] Call oracle for synthesis/review
6. [ ] Combine into actionable insights

Output Format

## Ultrawork Analysis: [Topic]

### Internal Findings (Search)
- Found X in [files...]
- Pattern Y appears in [locations...]

### External Research (librarian)
- Best practice: [summary]
- Industry standard: [summary]
- Relevant documentation: [links]

### Expert Analysis (oracle)
- Recommendation: [summary]
- Trade-offs: [list]
- Risks: [list]

### Synthesized Recommendations
1. [Action item with rationale]
2. [Action item with rationale]

Anti-Patterns

❌ Running tools sequentially when parallel is possible ❌ Skipping oracle for complex decisions ❌ Using Task for research (use librarian) ❌ Guessing patterns (use Search for semantic search)

The Ultrawork Mantra

All tools, all dimensions, all at once.
Search finds, librarian researches, oracle advises.
Synthesize into action.

スコア

総合スコア

45/100

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

SKILL.md

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

+20
LICENSE

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

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

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

0/5
Issue管理

オープンIssueが50未満

+5
言語

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

0/5
タグ

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

0/5

レビュー

💬

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