banksia

作者 ringlochid已验证

Adaptable, accountable AI teams. Visually

66
Stars
2
Forks
Python
语言
2026/8/24
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/ringlochid/banksia

快速入门

使用 banksia 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Oh My Subagents recursive team mark

Oh My Subagents

Turn ad-hoc subagents into durable, accountable AI teams.

A local runtime for persistent, supervised parent–subagent delegation with Codex and Claude.

PyPI version Python 3.12 or newer

Get started · Documentation · Starter teams

Console walkthrough: choose an accountable AI team, start a run, and review its progress and Result

▶ Watch the tutorial

🚀 Stop babysitting subagents

Ad-hoc delegation is easy to begin and surprisingly hard to operate. A parent spawns children, polls them, reconstructs ownership from chat, and hopes that a closed terminal or interrupted provider session did not erase the only useful account of what happened.

Oh My Subagents moves that coordination into durable runtime state:

Ad-hoc subagentsOh My Subagents
Recreate roles and prompts for every jobPublish a reusable tree of named responsibilities
Keep asking whether every child is doneLet the runtime persist the wait, collect the complete Wave, and continue the parent
Reconstruct ownership from a transcriptFollow controller-owned team, Activity, and wait state
Treat provider completion as successAccept only the Task lead's completed or blocked Result
Recover by piecing together terminal sessionsRecover from committed controller records without discarding accepted history
Relay giant responses through chatHand off concise Checkpoints and explicit references to ordinary workspace files

⚙️ How it works

When a Manager delegates a Wave, Oh My Subagents (OMS) commits the child Assignments, persists the parent wait, supervises every return, and continues the parent with the complete Checkpoints—even after an interruption.

How Oh My Subagents works

The parent does not remain in a polling loop. A delegated Wave and its child Assignments commit together with the parent wait. Children return terminal Checkpoints independently; the controller collects the complete Wave and continues the parent with every return.

Managers can delegate recursively. Every Manager follows the same local rule with its direct children: delegate, wait, inspect the complete returns, and integrate. Deeper teams need no hidden global polling loop.

🧪 A concrete bug-fix run

Here is one concrete run: evidence determines the next Wave, review findings become a new repair Assignment, and verification remains independent.

Example bug-fix run

🧠 Reuse responsibility—not a frozen schedule

A Workflow definition answers who is responsible. It does not prescribe when a Member runs or force the work into a DAG.

At runtime, Managers choose the pattern that fits the actual Task and current evidence:

  • run dependent work sequentially;
  • fan independent work out in parallel;
  • iterate through implement, review, and repair;
  • divide a bounded batch among reusable owners;
  • combine those patterns in one Task; or
  • replan one responsibility subtree when the current team no longer fits.

The same published team can therefore respond differently to two different missions. A replan changes future responsibility without rewriting earlier revisions, completed work, or accepted history.

🧾 Accountability is a runtime contract

OMS does more than display several agents at once:

  • One stable starting contract. Every Task pins the exact published Workflow revision it started with.
  • One owner per Assignment. Child work is immutable, task-specific, and tied to the Member responsible for returning it.
  • Durable fan-out and fan-in. Waves, waits, retries, replans, Checkpoints, and continuations live in controller-owned state—not only in a provider transcript.
  • One accountable Result. Child completion is evidence for a parent. Only the Task lead's accepted completed or blocked Checkpoint becomes the Result shown to you.
  • Honest recovery. Browser closure, provider interruption, and controller restart do not silently fabricate completion or discard accepted history.
  • Ordinary files stay ordinary. Notes, reports, code, and artifacts remain in your workspace. OMS records small navigation references instead of pretending to own or snapshot every byte.

Capabilities deny by default and never inherit from a parent. Provider, model, sandbox, Human Request, and managed Command Run choices stay explicit where a team needs them without becoming mandatory ceremony for every Workflow.

🎛️ Design and operate visually

The visual Console is the primary experience:

  • Workflow library keeps reusable teams, drafts, and published revisions together.
  • Workflow Studio lets you shape the complete responsibility hierarchy on a horizontal canvas, validate it, and publish deliberately.
  • Run Studio shows the live team, current plans, meaningful Activity, Human Requests, managed Actions, referenced files, and the exact completed or blocked Result.
  • Steering delivers bounded new context to one exact active Member without pretending earlier work or tool effects never happened.

Prefer conversation? The separate Operator can draft and revise Workflows, explain teams, publish when asked, start and control Runs, answer Human Requests, and inspect managed Actions. Operator and the visual interface call the same controller-owned operations, so chat never creates a second hidden copy of product truth.

⚡ Install and start

Oh My Subagents requires Python 3.12 or newer and supports Linux, macOS 13+, and Windows 11 x64. Install it in an isolated environment with pipx:

Fresh installation

pipx install oh-my-subagents
oms init
oms service install

Open http://127.0.0.1:18125/.

Guided initialization selects a default workspace, configures a Codex or Claude Task provider, publishes the Starter teams, and can configure the separate Operator. SQLite is the default, so a local installation needs no database server.

Upgrade an existing Banksia installation

Migrate before running oms init, oms serve, or oms service install. Initialization creates a fresh controller database; migration preserves the existing Banksia config, database, provider credentials, Task history, and service state under canonical OMS paths.

banksia status --json
banksia service status --json

pipx uninstall banksia
pipx install oh-my-subagents

oms migrate-from-banksia
oms db upgrade
oms service status --json

If the old installation did not use a background service, run oms service install after migration. Do not run oms init first, and do not use oms db reset as a rename step. The Banksia migration guide covers custom paths, verification, rollback, and recovery from an accidental 0.3.0 initialization.

Keep the controller running

oms service install verifies the configuration and database schema, installs a native per-user background service, and starts it. The controller keeps supervising work after you close the terminal and returns at login.

oms service status
oms service restart
oms service logs --lines 200
oms service stop

Linux uses a systemd user service, macOS a current-user LaunchAgent, and Windows a current-user Scheduled Task. oms service uninstall removes the native service definition while preserving configuration, database, and provider credentials. Use oms serve when you prefer the portable foreground path.

Optional PostgreSQL

Install the optional driver and provide a SQLAlchemy URL during initialization:

pipx install "oh-my-subagents[postgres]"
oms init \
  --database-url "postgresql+asyncpg://oms@127.0.0.1/oms"

See Getting started for provider prerequisites and a complete first run, or Database configuration for PostgreSQL permissions, schemas, and environment overrides.

🧰 Choose a Starter Workflow

oms init publishes eight provider-neutral Starters. Choose one when a mission is consequential or broad enough that independent ownership, durable work, or adversarial verification adds real value:

StarterUse it when
production-feature-deliveryA feature crosses contracts, implementation boundaries, integrated verification, and release readiness.
incident-investigation-and-recoveryA serious or intermittent failure needs competing hypotheses, supported recovery, verification, and prevention.
migration-and-modernisationA large migration needs inventory, dependency-aware batches, cutover, and stale-path removal.
deep-research-and-decision-briefA consequential question needs independent evidence, claim verification, and one accountable recommendation.
decision-through-competing-prototypesAlternatives should be tested under one fair rubric instead of decided from prose alone.
idea-to-validated-demoA product idea should become an evidence-backed position, working first demo, launch strategy, and credible pitch.
experiment-and-replication-programAn empirical or computational program needs explicit methods, durable execution, independent replication, and claim audit.
security-audit-and-hardeningA security program needs attack-surface mapping, specialised audits, validated remediation, and adversarial re-verification.

The Starter catalog includes example missions, expected deliverables, and guidance on when a simpler team is better. A one-Member Workflow is valid—and usually wiser—when delegation would add ceremony without independent evidence, useful specialization, or real integration.

🧭 From prompt to Result

  1. Choose or design a team. Start from an included Starter Workflow or shape a responsibility tree in Workflow Studio.
  2. Publish a stable revision. Every Run keeps the exact team contract it started with.
  3. Give the lead one complete prompt. Managers plan, delegate, adapt, and integrate while OMS supervises runtime state.
  4. Stay involved where judgment matters. Steer an active Member or answer a typed Human Request when the team genuinely needs you.
  5. Receive the accountable Result. Read the lead's exact completed or blocked outcome and follow its references into detailed workspace files.

📚 Documentation

⚖️ License

Oh My Subagents is open source under the MIT License, except for the visual Console in console/, which contains material derived from n8n and is distributed under the Sustainable Use License. That license permits internal business, non-commercial, and personal use; redistribution is limited to free, non-commercial distribution. See the Console notice for attribution and the modification notice.

常见问题

What is banksia?

banksia is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by ringlochid. Adaptable, accountable AI teams. Visually. It has 66 GitHub stars.

Is banksia safe to use?

Yes. banksia passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install banksia?

Clone the repository with "git clone https://github.com/ringlochid/banksia" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is banksia written in?

banksia is primarily written in Python. It is open-source under ringlochid on GitHub, so you can review or fork the full source.

Are there alternatives to banksia?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh banksia against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情