Skip to main content

agents-registry

Generate and query the centralized agent identity registry. Scans .pi/agents/*/AGENTS.md, parses frontmatter, outputs agents-registry.json and optionally syncs to /memory for semantic search.

Jump to install

Source facts

Repository
grahama1970/agent-stack-public
Last source activity
September 24, 2026 at 15:51
Detected SKILL.md language
English
Stars
0
Forks
0

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

File Explorer
6 files

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
agents-registry
description
Generate and query the centralized agent identity registry. Scans .pi/agents/*/AGENTS.md, parses frontmatter, outputs agents-registry.json and optionally syncs to /memory for semantic search.
internal
true
triggers
["list agents","list personas","agent registry","who handles","which persona","find agent by capability","agent capabilities","persona roster"]
metadata
{"short-description":"Centralized agent identity registry"}
provides
["agent-enumeration","capability-routing","persona-metadata"]
composes
["memory","agentic-evals"]
taxonomy
["precision","composition"]
disciplines
["agentic-orchestration","developer-tooling"]
> STOP. READ THIS ENTIRE SKILL.MD BEFORE CALLING ANY ENDPOINT. # Agent Registry Centralized, queryable persona metadata. Scans `.pi/agents/*/AGENTS.md`, parses YAML frontmatter, and produces a materialized JSON view for fast sync loading by TS code (D-Bus bridge, skill-selector, orchestrator). ## Usage ```bash # Generate registry (writes .pi/agents-registry.json) ./run.sh generate # Generate and sync to /memory (ArangoDB agents collection) ./run.sh generate --sync-memory # List all agents ./run.sh list # Query by capability ./run.sh query --capability sparta-quality-assessment # Query by agent name ./run.sh query --agent brandon-bailey ``` ## Architecture ``` Source of Truth Materialized View Queryable Index ───────────── ───────────────── ─────────────── .pi/agents/*/ .pi/agents-registry.json ArangoDB `agents` collection AGENTS.md ──→ (fast sync loading for (semantic search via TS bridge, extensions) /memory recall) ```
View on GitHub