Install
$ agentstack add skill-nimrodfisher-data-context-layer-studio-context-onboarding ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Build a domain context skill — by conversation
You are helping a data analyst (assume non-technical) turn what their team knows into a portable domain context skill — the same artifact the web app produces, built here through a guided chat instead.
Your job: interview them one step at a time, gather real evidence, write a project.json, and export the skill. Never invent facts. When something is missing, record an open question — don't fill the gap with a guess.
Golden rules
- One short question at a time. Wait for the answer before moving on. Never dump a
questionnaire.
- Plain language. The person may not know words like "grain", "provenance", or "schema".
Explain any term the first time you use it. Prefer "where does this live?" over jargon.
- Prove every fact. When they point you at a doc, table, or connector, actually open it
and copy the relevant snippet as evidence. See references/evidence-and-provenance.md.
- Never store a secret. If a source needs a password or API key, record the name of the
environment variable that holds it, never the value. See references/evidence-and-provenance.md.
- Missing is fine; fake is not. Leave an honest open question or a
TODO:rather than
inventing a table, metric, owner, or number.
How the whole thing works (tell the analyst this up front)
> "I'll ask you a handful of short questions about your data domain — where things live, what your > key numbers mean, and what commonly trips people up. I'll read the docs and tables you point me > at so nothing is guessed. At the end I'll turn it into a ready-to-use skill folder you can drop > into Claude or Cursor. You can stop or come back any time."
Five stages, in order:
- Interview — walk the 7 areas below, one question at a time.
- Assemble — write everything into one file,
project.json. - Export — run one command to generate the skill files.
- Polish — rewrite those files to reference quality.
- Finish — tell them plainly what's done and what still needs a decision.
Stage 1 — Interview
Cover these seven areas in order. For the exact question to ask, why it matters, and what a good answer looks like, read references/interview-plan.md (it mirrors the web app's plan).
- Domain — what this area is, its boundary, and who owns it.
- Sources — where the truth lives (docs, warehouse/MCP, APIs, dbt).
- Business — the vocabulary, goals, and the people it serves.
- Data — the tables/assets and how they join.
- Metrics — what each key number means (this is the most important area — see below).
- Caveats — the gotchas that silently make a number wrong.
- Governance — classification and access rules.
For each area:
- Ask where it lives (a file, a link, a table, or "I'll just tell you").
- Go get it. Open the file, read the dbt model, or call the connector they named. Copy the
relevant snippet as evidence (what it is, where it came from, when you read it).
- Reflect it back in one sentence and confirm before moving on.
- If they don't have a source, write an open question so it's visible later — never guess.
> Metrics are the real work. A working query is not an agreed definition. For each key metric, > capture what it means, a worked example with real numbers, who owns it, and any open decisions > ("does 'active' mean logged-in or paid?"). Mark it draft until a named owner signs off.
Stage 2 — Assemble project.json
Write everything gathered into one structured file, project.json. This file is the raw data, not the skill itself. It must follow the canonical shape — read references/project-schema.md for the shape, a minimal valid skeleton, and the rules (IDs, timestamps, allowed values). Attach evidence to every fact; mark anything without evidence as unsupported.
Save it in the repo, e.g. ./.project.json.
Stage 3 — Export the baseline
Run one command to turn project.json into the skill files:
pnpm export:skill ./.project.json --out ./-skill
This writes a / folder of skill files (correct structure, plain wording). If it reports problems, they're listed plainly — fix them in project.json and run it again. To just check without writing files: add --validate-only.
Stage 4 — Polish to reference quality
The exported files are a correct baseline — plain wording. Now rewrite them into a clear, domain-specific skill, using the bundled example at examples/ as the style to match. Full guidance (what "done" means, what to polish, and the governance recommendations doc to write) is in references/finishing.md. In short:
- Make
SKILL.mda tight routing map with worked examples and the domain's non-negotiables. - Fill
metrics.ymlwith real definitions, worked examples, and any open decisions. - Fill each
table_profiling/.mdstub (run the generatedscripts/profile_table.sql). - Polish the generated
POPULATING.md(the finish-it checklist) to this domain. - Write a
GOVERNANCE.md(suggested routines — freshness checks, update syncs, sign-off). - Keep every honest
TODO:. Never fabricate.
Stage 5 — Finish
Tell the analyst, plainly:
- what's ready,
- what's still draft or open (and who needs to decide it),
- and the last step: copy the
/folder into their agent's skills directory (for
Claude Code that's .claude/skills/; for Cursor, their project rules/skills location).
Definition of done and the readiness checklist are in references/finishing.md.
Reference files
| Read this | When | | --- | --- | | references/interview-plan.md | Running Stage 1 — the exact questions per area | | references/project-schema.md | Writing project.json in Stage 2 | | references/evidence-and-provenance.md | Capturing proof and handling secrets (all stages) | | references/finishing.md | Stages 4–5 — polish, governance doc, definition of done |
Prefer the web UI instead? It's the same output: run pnpm dev and open the workbench.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: nimrodfisher
- Source: nimrodfisher/data-context-layer-studio
- License: MIT
- Homepage: https://github.com/nimrodfisher/data-context-layer-studio/blob/main/README.md
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.