Commit 127e95f
feat(agents): add Catalog Registration Agent (#32)
## What
Adds a new Managed Agent — the **Catalog Registration Agent** — that
registers entries into the Discovery Layer Catalog (the lik-mcp service)
from their source of truth. It dispatches to whichever cataloging skill
matches what the user asked to catalog.
Today it can catalog **Project Indexes** via the
`lik-sync-catalog-from-project-indexes` skill (crawl Confluence
`project-index` pages → upsert one Catalog row per page). More
cataloging skills, for other topics, will be added over time — the
system prompt keeps a list of available skills so a new one drops in as
an extra entry.
## Changes
- **`claude_platform/agents/lik-catalog-registration.yaml`** — new agent
spec. References the sync skill by name; wires `lik-mcp` (for
`register_catalog_entry`) + `atlassian` (to read Confluence) + the agent
toolset (the skill hashes page bodies via `shasum` for its content-state
marker).
- **`lik-ui/src/lik_ui/agents.toml`** — add the agent to the picker
roster (uses the default `lik-ui-env`).
- **`.github/workflows/deploy-agents.yml`** — add
`lik-catalog-registration` to the dispatch choice list.
## Extensibility
Adding a future cataloging topic = add the skill dir, add one bullet to
the "Available cataloging skills" list in the agent's `system`, and add
its name to the agent's `skills:`. The agent explicitly refuses to
hand-improvise a crawl for topics no skill covers, and lists what it
*can* catalog instead.
## Deploy notes
Not live until merged and the **Deploy agents to Claude platform**
Action is run (choose the agent or `all`) — which also publishes the
referenced skill at `latest` — followed by the **Build and deploy
images** Action for `lik-ui` so it restarts and re-reads `agents.toml`.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>1 parent 8869b9a commit 127e95f
3 files changed
Lines changed: 75 additions & 0 deletions
File tree
- .github/workflows
- claude_platform/agents
- lik-ui/src/lik_ui
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| 25 | + | |
25 | 26 | | |
26 | 27 | | |
27 | 28 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
27 | 31 | | |
28 | 32 | | |
29 | 33 | | |
0 commit comments