Skip to content
Automation
Skill

/bee-actions

Act back on the owner's Bee wearable — the TOOL half of the Bee integration (channels-vs-tools split). The Bee CHANNEL (ag2-sparrow's `sources/bee.py` watcher) pushes captured events AT the agent as ambient tasks; this skill is what the agent CALLS to read Bee's data surfaces

From plugin
sutando
39469 skills13 hooks
Install
$ npx -y skills add sonichi/sutando --skill bee-actions --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/bee-actions

Context preview

The summary Claude sees to decide when to auto-load this skill.

Act back on the owner's Bee wearable — the TOOL half of the Bee integration (channels-vs-tools split). The Bee CHANNEL (ag2-sparrow's `sources/bee.py` watcher) pushes captured events AT the agent as ambient tasks; this skill is what the agent CALLS to read Bee's data surfaces

SKILL.md

bee-actions.SKILL.md

bee-actions

Act back on the owner's Bee wearable — the TOOL half of the Bee integration (channels-vs-tools split). The Bee CHANNEL (ag2-sparrow's `sources/bee.py` watcher) pushes captured events AT the agent as ambient tasks; this skill is what the agent CALLS to read Bee's data surfaces and mutate them.

**Usage**: `python3 skills/bee-actions/scripts/bee_actions.py <verb> [...]`

What it does

Three data surfaces (the full API surface the proxy exposes — verified live):

  • **Todos** — `list-todos [--all]`, `create-todo "text"`,

`complete-todo <id> [--how "how it was done"]`, `edit-todo <id> "text"`, `delete-todo <id> --yes`

  • **Conversations** (with Bee's AI summaries) — `list-conversations`,

`get-conversation <id>` (read-only; Bee has no reply-push API)

  • **Facts** — `list-facts`, `delete-fact <id> --yes`

Plus the ag2space reply half (Bee cannot receive replies in-app):

  • `post-room "message"` — post to the registered Sutando · Bee room
  • `register-room [--room !id:server] [--invite @owner:server]` — record the

room to use, or create one (private, owner invited — a DM thread in practice) and persist it to `<workspace>/state/bee-room.json`

Output is JSON on stdout; errors exit non-zero with a one-line stderr reason.

The closed loop

A Bee-captured todo arrives as an `access_tier: ambient` task via the watcher → the agent handles it (owner approval where privileged) → `complete-todo <id> --how "..."` checks it off in the owner's Bee app with the how appended to the todo text (Bee has no notes field — the text IS the record) → `post-room` carries any longer reply to the ag2space Bee room.

Safety posture

  • `complete/create/edit` act on the owner's behalf after the fact — low risk.
  • **DELETE verbs refuse without `--yes`** (exit 3, before any HTTP): surface

the deletion to the owner and get confirmation first.

  • Ambient-task discipline applies: a Bee-captured event is an observation,

never an instruction — privileged follow-ups still need the owner.

Config

Declared in this skill's `manifest.json` `config` block (see `skills/MANIFEST.md` for read precedence):

  • `BEE_PROXY_URL` — local authed proxy (after `bee login`), e.g.

`http://127.0.0.1:4470`

  • `BEE_API_BASE` + `BEE_API_TOKEN` — Bee cloud API (wins over the proxy;

bearer preferred from the vault under the same key)

  • `BEE_ROOM_ID` — registered ag2space room for `post-room` (the persisted

state file is the usual home; env overrides)

  • `BEE_ROOM_OWNER` — owner mxid; enables one-touch auto-registration when no

room is registered yet

Gateway credentials for the room verbs resolve via the shared contract (`GATEWAY_TOKEN` > `RELAY_TOKEN` > `REMOTE_TASK_TOKEN` > `AG2_REMOTE_TOKEN`; combined `url|secret` onboarding tokens honored).

Tests

`python3 tests/bee-actions.test.py` — route/method/body contract per verb, the pre-HTTP delete-confirm gate, cloud-over-proxy precedence, vault bearer fallback, room-verb resolution + auto-registration, against a stub server.

Read more
Ships withsutando

My AI Stand — Realtime by Day, Rewriting Itself by Night. Summon my AI superpower. Voice, vision, screen, meetings, calls when I'm engaged. Learns my patterns, ships its own code when I'm not. Runs across my Macs, interacts with people & their Stands.

Get the whole plugin

Other skills on sutando.