AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Fulcra Agent Presence

skill-ashfulcra-fulcra-tools-fulcra-agent-presence · by ashfulcra

Add presence + liveness to a fulcra-agent-teams space: agents heartbeat a presence shard, and deterministic folds answer who's live/idle/stale, what each agent is working on, and who a broadcast must reach.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-ashfulcra-fulcra-tools-fulcra-agent-presence

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-ashfulcra-fulcra-tools-fulcra-agent-presence)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
today

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Fulcra Agent Presence? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Fulcra Agent Presence

Enhances fulcra-agent-teams. Teams knows who its members are (prose in index.md) but not who is alive right now. This skill adds a presence heartbeat + deterministic liveness folds — the roster that directives' broadcast semantics, the operator digest, and role-vacancy escalation all build on. Optional: without it, everything else still works; broadcasts just degrade to "acked-by-me hides it for me".

Where to start — the re-entrancy probes

Before beating or reading the roster, probe how far this session already got. Enter at the first probe that fails (per the repo's skill-quality pattern, docs/skill-quality-pattern.md); every step here is safely re-runnable (a beat is a single-file overwrite, a claim is a refresh):

| Probe (run in order) | Command | Passes when | If it fails, enter at | |---|---|---|---| | Engine usable? | coord-engine doctor | exits 0 and the last line is exactly doctor: healthy | fix engine/auth first (see fulcra-agent-reconcile) — do NOT beat against a broken engine | | Own shard live? | coord-engine presence show | a row for your agent id shows liveness [live ] (the ` (see Usage) to write/refresh your shard | | If identity=role, lease held? | coord-engine roles status | prints role in team/: HELD for the role you act as | **Claim** — run roles claim ` (skip this probe entirely if you are not acting under a role identity) |

All probes pass → you are present and (if role-scoped) holding your lease; just keep beating on your cadence. A brand-new session fails the first or second probe and enters at Beat.

How it works

  • Beat (single-file write, safe as a command): presence beat writes/refreshes your shard

team//presence/.md (collision-safe key) (OKF type: Presence: agent, workstreams, summary, timestamp). Beat whenever you start work, on heartbeat/cron ticks, and when your focus changes.

  • Folds (deterministic, engine-side — never eyeball timestamps):
  • presence show — roster with live ( writes/refreshes your lease shard; roles release` deletes it;

roles status folds HELD/VACANT/CONTESTED (see fulcra-agent-roles).

Usage

coord-engine presence beat  [--agent X] [-w workstream]... [-s "one-liner"]
coord-engine presence show  [--json]
coord-engine agents  [--json]
coord-engine roles claim   [--agent X]     # refresh = re-run
coord-engine roles release   [--agent X]

--agent defaults to $FULCRA_COORD_AGENT (or a derived host id). Stale shards drop out of the presence fold's [live] view by age; the shard FILES are not currently garbage-collected (reconcile's GC covers ack and health shards only). A stale agent reappears by simply beating again.

Pick your identity by ROLE, not by folder

Set FULCRA_COORD_AGENT to the role you are acting as (coord-maintainer, prefs-maintainer, release-reviewer), not a host/cwd-derived string. Folder-derived ids collide the moment two sessions share a directory (shared inbox, clobbered presence, ambiguous acks) and rot when a hostname or checkout path changes; a role-based id survives both and is what teammates actually want to address. Two rules make it safe:

  1. Claim the role's lease while you act as it (roles claim ; see

fulcra-agent-roles). An exclusive role turns two sessions acting as the same role under DIFFERENT ids into a visible CONTESTED state. It cannot see two sessions sharing one id string (same lease shard, last write wins) — see the roles skill's "Role-as-identity" guard matrix for the procedural check that covers that case.

  1. Session/host details are metadata, not address. Put them in the presence -s summary or the

lease body if useful; never in the agent id.

The derived host id remains only as a fallback for throwaway/anonymous sessions that never take assignments — and note it is per-HOST, not per-session (coord-reconcile:), so two env-less sessions on one machine still share an id and clobber each other's shards. Any session that acts on the bus should set an explicit role id.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.