Nightly Build / build (push) Successful in 8m6s
Per blueprint/skill-project.md: the old single-namespace, hand-maintained
index is gone, replaced by a read-only, two-scope tree whose index is a
runtime function of its content.
- skills/ index generated at runtime (crates/skald-core/src/skills/:
inventory, install, validate, watch), injected through the new
<!-- SKILLS_LIST --> placeholder in AGENT.md (agents/common/skills.md);
meta.json inject_skills flag removed. 11 chat/task agents carry the
include, the 4 system agents do not.
- Two trees, both read-only in both directions: skills/shared/{id} (the
group's) and skills/{username}/{id} (one member's own, on the stable
userid). The root is closed too: UserFs::SkillMounts + RouteError (alias
probe, plain-denied paths, no home fallback) and a per-user
.skills-root/{userid} container mount with the two scope mounts nested
inside, plus the fifth self-heal axis (skills_mounted).
- Agent verbs: skill_register/skill_delete (Config group, global scope
behind the new skill.manage capability), fetch_repo for public repos,
list_items(type="skills"); reads are plain read_file on the printed
path. Seeded @fs_read skills/* allow.
- Freshness: a digest-gated watcher on the two trees emits
SystemEvent::SkillsChanged, whose subscriber rebuilds the frozen prompt
prefix via Skald::invalidate_prompt_prefix; in-process writers invalidate
directly.
- The build ships no skills: the three bundled skills (ics2json,
mcp-builder, skill-creator) and skills/index.md are removed, skills/ is
instance data (gitignored, not packaged, no longer pruned by update.sh).
- Docs: skills.md, agents.md, shared-folders.md added; docs/index.md and
agents/README.md updated.
19 lines
1.9 KiB
JSON
19 lines
1.9 KiB
JSON
{
|
|
"name": "Conversation review",
|
|
"description": "Hidden background agent. Spawned nightly by the system-agent scheduler, once per supervised person, running inside the runtime of one of their supervisors. Reads a transcript of everything that person and the assistant said to each other since the previous review — handed to it in the trigger message, across all their conversations — and answers with a single written report. It has no tools of any kind and reaches nothing: no filesystem, no memory, no connectors, no notifications. Its answer IS the report; the caller stores it. Ephemeral session.",
|
|
"friendly_description": "A nightly read of the conversations of the people you supervise. It goes through everything said since the last review — across every chat, not one report per chat — and writes you a short summary followed by what it noticed. It only reads and writes: it cannot open a file, look anything up, or act on what it finds.",
|
|
"i18n": {
|
|
"it": {
|
|
"name": "Revisione delle conversazioni",
|
|
"friendly_description": "Una lettura notturna delle conversazioni delle persone che segui. Ripercorre tutto quello che è stato detto dall'ultima revisione — su tutte le chat, non un rapporto per chat — e ti scrive un riassunto breve seguito da ciò che ha notato. Sa solo leggere e scrivere: non può aprire file, cercare nulla, né agire su quello che trova."
|
|
},
|
|
"fr": {
|
|
"name": "Revue des conversations",
|
|
"friendly_description": "Une lecture nocturne des conversations des personnes que vous suivez. Elle reprend tout ce qui a été dit depuis la dernière revue — sur toutes les discussions, pas un rapport par discussion — et vous écrit un court résumé suivi de ce qu'elle a remarqué. Elle ne sait que lire et écrire : elle ne peut ni ouvrir un fichier, ni rechercher quoi que ce soit, ni agir sur ce qu'elle trouve."
|
|
}
|
|
},
|
|
"type": "system",
|
|
"allow_tools": false,
|
|
"strength": "high"
|
|
}
|