← Back to Skills Marketplace
bkrabach

Amplifier

by Brian Krabach · GitHub ↗ · v1.1.1
cross-platform ✓ Security Clean
434
Downloads
2
Stars
0
Active Installs
8
Versions
Install in OpenClaw
/install amplifier-openclaw
Description
Delegate complex tasks to Amplifier's multi-agent framework. Use when: (1) research/comparison needing multiple perspectives, (2) multi-file code projects, (...
README (SKILL.md)

Amplifier — Multi-Agent Delegation

Amplifier is a multi-agent AI framework. Delegate tasks that benefit from specialist agents, structured workflows, or parallel investigation.

When to Delegate

High confidence → delegate immediately:

  • "Research X and compare approaches"
  • "Build a Python tool that does X"
  • "Review this code for security and design"
  • User says "amplifier", "deep dive", "thorough", "comprehensive"
  • Task has clear subtasks benefiting from parallel agents

Medium confidence → offer the choice:

  • "I can do a quick analysis, or delegate to Amplifier for a thorough multi-agent review."

Low confidence → handle yourself:

  • Simple Q&A, quick code edits, casual conversation, anything needing immediate response

Usage

Basic Delegation

exec command:"amplifier-openclaw run 'Research the top 3 Python web frameworks' --bundle foundation" background:true timeout:600

With Model Selection

Pass --model to override the default model:

exec command:"amplifier-openclaw run --model your-preferred-model 'Deep code review' --bundle foundation" background:true timeout:600

Tip: Pass --model matching the model from your OpenClaw Runtime line so Amplifier uses the same one.

Bundles

amplifier-openclaw bundles list
Bundle Best For
foundation General: research, analysis, planning (default)
superpowers Multi-agent brainstorm, deep investigation
coder Code generation, refactoring, debugging

Session Persistence

# Start a named session
exec command:"amplifier-openclaw run --session-name my-project 'Start building the auth module' --bundle foundation" background:true

# Resume later
exec command:"amplifier-openclaw run --resume --session-name my-project 'Now add unit tests'" background:true

Modes

Amplifier supports slash-command modes in prompts. Modes do not carry over between runs — include the mode at the start of each prompt:

# Brainstorm mode (uses all agents)
exec command:"amplifier-openclaw run --bundle superpowers '/brainstorm How should we architect the new API?'" background:true

# Research mode
exec command:"amplifier-openclaw run --bundle foundation '/research Latest advances in RAG'" background:true

JSON Output

{
  "response": "The analysis found...",
  "usage": {
    "input_tokens": 28566,
    "output_tokens": 1800,
    "estimated_cost": 0.12,
    "tool_invocations": 3
  },
  "status": "completed"
}

Cost Tracking

exec command:"amplifier-openclaw cost --period week"

Report costs only when asked or when notable (>$1).

Interpreting Results

  • response: Present to the user (the main output)
  • error: Report in plain language, don't dump raw JSON
  • usage.estimated_cost: May be 0.0 — don't alarm about zero
  • status: "completed", "cancelled", or error state

During Active Delegation

  • "stop"/"cancel" → kill the background process
  • Unrelated questions → answer yourself, don't interrupt Amplifier
  • Follow-up → tell user you'll pass it along when current task finishes

Install

If not already installed:

uv tool install "amplifier-app-openclaw @ git+https://github.com/microsoft/[email protected]"
Usage Guidance
This skill appears to do what it says: it drives a local Amplifier CLI. Before installing, verify the upstream package/repo (https://github.com/microsoft/[email protected]) so you trust the code that will be installed. Understand that the installer will write a binary to disk and the CLI can run background processes; run the install in a controlled environment if you are cautious. Check whether the CLI requires model/API credentials or config files (the skill doesn’t declare any), and avoid running the installer as root. If you need higher assurance, inspect the repository/tag, prefer an official release artifact or signed release, or run the CLI in a container or sandbox first.
Capability Analysis
Type: OpenClaw Skill Name: amplifier-openclaw Version: 1.1.1 The skill bundle is designed to integrate the OpenClaw agent with the Amplifier multi-agent framework. The `SKILL.md` provides clear instructions for the agent on how to install and use the `amplifier-openclaw` CLI tool, including various commands for task delegation, session management, and cost reporting. The installation process specifies fetching the `amplifier-app-openclaw` package from a specific version (`v1.0.5`) of a GitHub repository (`https://github.com/microsoft/amplifier-app-openclaw`). All instructions for the agent are aligned with the stated purpose, guiding it to execute the tool and interpret its output responsibly. There is no evidence of prompt injection attempting to subvert the agent, data exfiltration, malicious execution, persistence mechanisms, or obfuscation within the provided files. The external dependency points to a seemingly legitimate source, making the skill bundle itself appear benign.
Capability Assessment
Purpose & Capability
The skill advertises delegation to Amplifier and requires the amplifier-openclaw binary; the install entry creates that binary from a GitHub package. Required binaries, bundles, and example commands align with the described purpose.
Instruction Scope
SKILL.md instructs the agent to run the amplifier-openclaw CLI (including background runs, sessions, and model selection). It does not instruct the agent to read unrelated files or credentials, but it assumes the CLI will be available and configured. The file delegates execution to a local binary and instructs killing background processes — normal for a CLI integration but gives the skill control to spawn persistent background work.
Install Mechanism
Install uses uv to fetch a package from a GitHub URL (git+https://github.com/microsoft/[email protected]) which produces the named binary. Installing code from a GitHub package is common and the host is a well-known domain (github.com/microsoft), but it still writes/extracts code and creates a binary on disk, so review the upstream repo or run in a sandbox if you need strong assurance.
Credentials
The skill declares no required environment variables or credentials, which is proportionate to the textual instructions. However, the CLI supports a --model flag and will likely read its own config or model/API credentials from the environment or config files at runtime; those credentials are not declared here. Expect the underlying tool might require separate API keys or config outside the skill manifest.
Persistence & Privilege
always:false and normal autonomous invocation settings are used. The skill runs and may spawn background processes via the CLI (documented in SKILL.md), but it does not request permanent inclusion or modify other skills' configs.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install amplifier-openclaw
  3. After installation, invoke the skill by name or use /amplifier-openclaw
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.1.1
Remove provider-specific model examples to simplify docs
v1.1.0
Auto-detect provider credentials from OpenClaw config, correct model routing for all providers, pin to v1.0.5 release
v1.0.5
Pin install to release tag, simplify model routing docs, rename display to Amplifier
v1.0.4
Remove remaining inherit/configured language from code comments
v1.0.3
Remove credential inheritance statement that triggers security scanner
v1.0.2
Remove unnecessary required bins (socat, timeout, nohup) and credential inheritance note
v1.0.1
Add required binaries (socat, timeout, nohup), remove curl|bash install, add credential inheritance note
v1.0.0
Initial release
Metadata
Slug amplifier-openclaw
Version 1.1.1
License
All-time Installs 0
Active Installs 0
Total Versions 8
Frequently Asked Questions

What is Amplifier?

Delegate complex tasks to Amplifier's multi-agent framework. Use when: (1) research/comparison needing multiple perspectives, (2) multi-file code projects, (... It is an AI Agent Skill for Claude Code / OpenClaw, with 434 downloads so far.

How do I install Amplifier?

Run "/install amplifier-openclaw" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Amplifier free?

Yes, Amplifier is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Amplifier support?

Amplifier is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Amplifier?

It is built and maintained by Brian Krabach (@bkrabach); the current version is v1.1.1.

💬 Comments