fulcra-agent-reconcile

fulcra-agent-reconcile is a skill for Claude Code from ashfulcra/fulcra-tools. It costs 67 tokens per session (1,686 once invoked), scanned A, original, MIT.

A task coordination tool for Fulcra Agent Teams, where tasks are stored as structured Markdown files. It rebuilds task indexes and creates summary views from changed task documents.

In plain words
What is it for?
Use it to fold changed task updates, repair task indexes, record status changes, generate aggregate summaries, and query reviews or pull-request responsibilities.
Why use it?
Manually maintained task indexes can become out of date as teams grow, making status and responsibility queries slow or unreliable.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: built for openclaw.

Good fit Use it to fold changed task updates, repair task indexes, record status changes, generate aggregate summaries, and query reviews or pull-request responsibilities.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ashfulcra/fulcra-tools/fulcra-agent-reconcile
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ashfulcra/fulcra-tools --skill fulcra-agent-reconcile
Clone the repo
git clone --depth 1 https://github.com/ashfulcra/fulcra-tools

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for fulcra-agent-reconcile

README.md
[![agentmods](https://agentmods.dev/badge/skills/ashfulcra/fulcra-tools/fulcra-agent-reconcile/github.svg)](https://agentmods.dev/skills/ashfulcra/fulcra-tools/fulcra-agent-reconcile)
Your own site
<a href="https://agentmods.dev/skills/ashfulcra/fulcra-tools/fulcra-agent-reconcile"><img src="https://agentmods.dev/badge/skills/ashfulcra/fulcra-tools/fulcra-agent-reconcile/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for fulcra-agent-reconcile

Your own site · 80×15
<a href="https://agentmods.dev/skills/ashfulcra/fulcra-tools/fulcra-agent-reconcile"><img src="https://agentmods.dev/badge/skills/ashfulcra/fulcra-tools/fulcra-agent-reconcile.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,686 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00067 $0.01686
Opus 5 $0.00034 $0.00843
Sonnet 5 $0.00013 $0.00337
Haiku 4.5 $0.00007 $0.00169

Measured 2d ago against content hash 0ddeb24f4c10, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

fulcra-agent-reconcile scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/fulcra-agent-reconcile/SKILL.md · 106 lines

How it starts

The opening of the file, as written. The whole thing — 106 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Fulcra Agent Reconcile

Enhances the fulcra-agent-teams skill. Bare teams tracks tasks as OKF markdown under team/<team>/task/ and asks agents to hand-maintain task/index.md. At any real scale that index drifts. This skill makes the index engine-owned and self-healing and adds structured queries the convention otherwise lacks — without changing how tasks are written.

What it does

A bundled stdlib-only tool (coord-engine) that, for a given team:

  • Folds changed team/<team>/task/*.md docs from the authoritative data-updates feed, reading only the changed shards.
  • Heals task/index.md (OKF §6, grouped by status) and appends task/log.md (OKF §7, status transitions), with a periodic full-scan drift check that loudly rebuilds any divergence.
  • Emits team/<team>/_coord/summaries.json — a fast-path aggregate so reads are one download, not N. Alongside the task rows it builds two read-side projections: reviews (coord.reviews.projection.v1 — per-slug verdict state) and forge (coord.forge.projection.v1 — PR responsibility + feedback item ids), which briefing/needs-me serve instead of scanning hundreds of raw shards per wake. The projection build is budgeted (COORD_PROJECTION_BUILD_BUDGET, default 240s) and converges across passes on a large legacy corpus; an incomplete build is marked and left unserved rather than served as current.
  • Answers status / board / needs-me / search from that aggregate.

Properties: orphan-proof (scheduled full-scan drift checks rebuild from ground truth), incremental (a durable feed cursor reads only changed task shards), degraded-safe (any feed/cursor/shard doubt falls back to the full listing scan; if that scan fails, the pass aborts and leaves the prior index intact — never publishes a truncated view).

The OKF Task contract (what a task doc looks like)

---
type: Task                         # OKF required
title: Fix the widget             # OKF display name
description: one-line summary       # OKF — becomes the index bullet text
timestamp: 2026-07-01T14:00:00Z    # OKF last-change time
tags: [workstream:web, kind:bug]
# coord extensions (OKF-legal producer keys):
status: active                     # proposed|active|waiting|blocked|done|abandoned
priority: P1                       # P0|P1|P2|P3
assignee: user                      # for needs-me
owner: claude-code:host:web
blocked_on: null
due: null
not_before: null                   # hides from needs-me until this time
---
<body: human notes>

Bare-teams tasks that lack the extension keys are still first-class — missing status/priority are backfilled (proposed/P2).

Read the full file on GitHub · 106 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago Changed 0ddeb24f4c10
  2. 11d ago First seen · 106 lines · 67 tokens per session scan A f383dcb611c1

Subscribe to this mod's changes

fulcra-agent-reconcile is a skill published in the GitHub repository ashfulcra/fulcra-tools (10 stars, last pushed 2d ago), licensed MIT. It adds 67 tokens to every session and 1,686 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

meeting-action-items

Turn meeting notes into cited decisions, owners, tickets.

NousResearch/hermes-agent · 15 tokens

triage-issue

Intelligently triage bug reports and error messages by searching for duplicates in Jira and offering to create new issues or add comments to existing ones. When an agent needs to: (1) Triage a bug report or error message, (2) Check if an issue is a duplicate, (3) Find similar past issues, (4) Create a new bug ticket…

atlassian/atlassian-mcp-server · 116 tokens

traction-eos

Implement the Entrepreneurial Operating System (EOS) to align vision and execution across a company. Use when the user mentions "EOS", "Entrepreneurial Operating System", "V/TO", "quarterly rocks", "Level 10 meetings", "accountability chart", "IDS process", "my company feels chaotic", "we keep having the same…

wondelai/skills · 147 tokens

promote-idea

Converts an album idea from IDEAS.md into an actual album project in one step. Use when the user says "promote [idea title]", "turn idea into album", or "start working on [idea]".

bitwize-music-studio/claude-ai-music-skills · 50 tokens

customer-onboarding-and-implementation

Takes a new customer from signature to working — setting a definition of live that both sides agreed before the contract was signed, planning and staffing the implementation, running data migration and integration realistically, training the people who will actually use it, and handing over to the ongoing…

cbrock84/headcount · 94 tokens

vendor-management

Selects, contracts, and manages suppliers and vendors — requirements, evaluation, negotiation support, onboarding, performance management, and exit. Use this to choose a vendor, run a selection process, structure a service agreement's operational terms, manage an underperforming supplier, plan an exit or migration, or…

cbrock84/headcount · 69 tokens