animation
Author animated technical explainer diagrams as .anim.json files for Nimbalyst's Animation editor. Use when the user wants to animate a diagram, show how a…
Set up and write a knowledge graph in Nimbalyst trackers -- entities, claims, questions, findings, investigations, and the predicates that connect them. Use when the user wants a team wiki, a knowledge base, to record what is known about products/systems/decisions, or to add
$ npx -y skills add nimbalyst/nimbalyst --skill knowledge-graph --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/knowledge-graphContext preview
The summary Claude sees to decide when to auto-load this skill.
Set up and write a knowledge graph in Nimbalyst trackers -- entities, claims, questions, findings, investigations, and the predicates that connect them. Use when the user wants a team wiki, a knowledge base, to record what is known about products/systems/decisions, or to add
name: knowledge-graph description: Set up and write a knowledge graph in Nimbalyst trackers -- entities, claims, questions, findings, investigations, and the predicates that connect them. Use when the user wants a team wiki, a knowledge base, to record what is known about products/systems/decisions, or to add statements, questions, or findings to an existing graph.
A knowledge graph here is ordinary tracker data with a fixed vocabulary:
The canonical definitions are in `references/` next to this file. They are the source of truth; copy them, do not paraphrase them.
| File | Kind | | --- | --- | | `references/entity.yaml` | Anything statements are about. Domains are values of `kind`. | | `references/claim.yaml` | One assertion under stated conditions. | | `references/question.yaml` | A goal with constraints, an owner, and a current position. | | `references/finding.yaml` | A scoped answer resting on exact claims. | | `references/investigation.yaml` | One attempt at a question, including failed ones. | | `references/predicates.yaml` | The verb registry for `claim.predicate`. |
1. Call `tracker_list_types` and note which of the five kinds already exist and who owns them (`personal` or `team:<name>`). 2. Decide sharing. If the project is shared with a team, define the kinds with `sharing: team` so the web console and teammates see them. Otherwise leave `sharing: personal`. Use the same sharing for all five. 3. For each missing kind, read its reference file and call `tracker_define_type` with `schema` set to the YAML converted to a JSON object (drop comments; change only `sharing`). 4. Read the project's current registry from `.nimbalyst/predicates.yaml` at the workspace root (for a team project this is the local copy of the team's registry; a missing file means an empty registry). Merge in every predicate from `references/predicates.yaml` whose `id` is not already there, keep all existing ones unchanged, and call `tracker_define_type` with `predicates` set to the merged array. The call replaces the whole registry, so never send only the reference list. An existing predicate with the same `id` but a different definition is a conflict: keep the existing one and report it. 5. Idempotence: if a kind already exists, compare it to the reference. Missing fields or options may be added with a `schema` + `overwrite: true` that keeps every existing field. Never remove, rename, or change the type of an existing field or option, never pass `confirmDestructive` on your own, and never overwrite a kind that differs in an incompatible way. Report each conflict to the user with the field names and stop for that kind. 6. Switching an existing personal kind to team needs `promoteExistingItems: true`; ask the user first.
The wiki's tree comes from links between items, not tracker folders.
Nimbalyst - The open-source visual workspace for Claude Code, Codex, and OpenCode. Run multiple coding agents in parallel, edit their work visually in markdown, mockups, and diagrams, and track tasks. Free, MIT-licensed desktop app for macOS, Windows, Linux, with mobile companion for iOS and Android.
Repo: nimbalyst/nimbalyst
Author animated technical explainer diagrams as .anim.json files for Nimbalyst's Animation editor. Use when the user wants to animate a diagram, show how a…
Author Nimbalyst Project Canvas boards (.canvas files) — an infinite canvas whose cards are live editors for real workspace files and shared documents,…
Create visual data models for database schemas using Nimbalyst's DataModelLM editor. Use when the user wants to design a data model, database schema, entity…
Create git commits using Nimbalyst's interactive commit proposal widget. ONLY use when the user explicitly clicks "Commit with AI" button or asks for "smart…
Create diagrams and visual drawings using Excalidraw (.excalidraw files). Use when the user wants flowcharts, architecture diagrams, system diagrams, sketches,…
Build, install, and hot-reload Nimbalyst extensions using MCP tools. Use when developing, testing, or iterating on Nimbalyst extensions.