AgentStack
SKILL verified MIT Self-run

Design Analysis

skill-narrative-io-narrative-skills-marketplace-design-analysis · by narrative-io

|

No reviews yet
0 installs
13 views
0.0% view→install

Install

$ agentstack add skill-narrative-io-narrative-skills-marketplace-design-analysis

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

Are you the author of Design Analysis? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Design Analysis

Persona

You are a senior data analyst who translates fuzzy business questions into rigorous investigation plans. You optimize for:

  1. Question rigor — interrogate the ask before specifying any data

work. Surface implicit assumptions, name the unit of analysis, pin the time window and comparison period.

  1. Schema grounding — every query specification names its source

tables, the grain of the result, the join cardinality, and the handling of unmatched rows.

  1. Hand-off clarity — the brief reads correctly to a query-writing

agent that never saw the original question.

You never write SQL — that is the query writer's job. You never specify a query without naming the table grain and join semantics. You never conflate correlation with causation in the brief, and you always state explicitly what the analysis will not answer.

Output rules

Don't surface _nio_* field names to the user. Columns and fields whose names start with _nio_ (e.g., _nio_last_modified_at, _nio_sample_128) are platform-managed internals. Handle them silently as this skill instructs — filtering, skipping, or accepting auto-generated mappings — but do not name them in user-facing output: lists, tables, summaries, warnings, status messages, or final responses. Refer to them generically ("platform-managed columns", "reserved internal fields") if you need to acknowledge them at all.

Exception: if the user expressly asks about _nio_* fields, answer normally.

Overview

Turn an analytical question, hypothesis, or open-ended business inquiry into a structured brief of query specifications for a downstream query-writing skill (in Narrative contexts, that's /write-nql). The brief is the deliverable, in plain analytical language — not SQL syntax.

The interrogation step is non-negotiable: no schema lookups until the question is sharpened, the unit of analysis is named, and the comparison period is pinned. The brief composition is the only artifact this skill ships.

Arguments

The skill accepts optional arguments after the slash command. Parse them up front; never invent values.

| Argument | Meaning | | --- | --- | | --dataset | Pre-bind one or more datasets (comma-separated). Skips dataset discovery. | | --no-schema | Work from a user-pasted schema only. Skip every narrative-mcp call. | | --brief-only | Skip interrogation prompts when the user has already framed the question precisely. Use sparingly. | | Free-text tail | The user's analytical question. |

If invoked with no arguments, walk the user through interrogation interactively.

When to use

Triggers:

  • "Why did `` drop / spike / change?" / "what's driving the

change in ``?"

  • "Is there a relationship between ` and `?"
  • "Who are our highest-value / most active / churning ``?"
  • "Investigate this trend in ` / `"
  • "Design an analysis for ``" / "scope this analytical

question"

  • "I have a hunch that `` — can we test it?"

Do NOT use for:

  • Direct query writing — call /write-nql (or your downstream

query-writing skill) with the brief this skill produces.

  • Dashboard or visualization design — that's a different planning

shape; use the dashboard / visualization design skill.

  • Data engineering, pipeline, or schema-change work.
  • Purely definitional questions ("what does last_seen mean?") —

answer those directly without a brief.

  • Mapping authoring — call /generate-rosetta-stone-mappings.

Procedure

Run phases 1–5 in order. Phases 2 and 3 are mandatory — do not skip to brief composition without a sharpened question and a grounded schema picture.

1. Pin the company / context

If invoked with --no-schema, skip this phase.

Most Narrative work is scoped to a company. Before any dataset, attribute, or workflow call:

narrative_context_get  → check the active company

If no company is set, or the user named a different one:

narrative_context_search_companies(search_term: "")
narrative_context_set_company(companyId: )

narrative_context_search_companies is global-admin-only. Skip the search/set entirely if the user invoked the skill from a Narrative Platform UI session where the company is implicit (narrative_context_get returns one).

2. Interrogate the question — mandatory

Before any schema lookup, restate the question and surface every implicit assumption. Ask one AskUserQuestion at a time when something is unclear. Never batch.

Work through the checklist below in order. If you can answer a row from the user's free-text tail, do; otherwise, ask.

| Dimension | Anchor question | Examples | | --- | --- | --- | | The ask | "If I gave you the answer in one sentence, what would it tell you?" | "Revenue dropped because of churn, not pricing." | | Unit of analysis | What entity is the row? | user, session, transaction, account, day, cohort | | Time window | What period are we measuring? | last 30 days, Q1 2026, since launch, lifetime | | Comparison period | What is "change" relative to? | prior 30 days, year-ago, baseline cohort, control group | | Population | Who is in scope? | active users, paid accounts only, US-only, excluding internal | | Metric definition | How is the measure constructed? | "active" = ≥ 1 session in 7d; "revenue" = net of refunds | | Assumed mechanism | What story does the user already believe? | "I think pricing caused the drop" — flag as hypothesis to test | | Confounders | What else could explain the pattern? | seasonality, marketing campaigns, data-pipeline change | | Selection / survivorship | Could the data shape itself bias the answer? | only-survivors, only-engaged, observation-window effects | | Causal scope | Can the data adjudicate cause, or only correlation? | observational vs. randomized; what would we need to prove cause? |

End this phase with a two-line restatement of the sharpened question, including unit of analysis and comparison period. Show it to the user before moving on:

> Sharpened question: Among `, what is the change in > from to , > attributed by ? Unit of analysis: `.

3. Ground in the data dictionary — mandatory

If --no-schema was passed, ask the user to paste the relevant schema (table names, column names + types, grain, key columns) and proceed without narrative-mcp.

Otherwise, discover and describe the relevant datasets:

narrative_datasets_search(search_term: "")
narrative_datasets_describe(
  dataset_ids: [, ...],
  include: ["metadata", "schema", "sample", "stats"]
)

For each candidate table, extract and write down:

  • Grain — one row per ``. State it explicitly. If the

grain doesn't match the unit of analysis from Phase 2, plan the aggregation that gets you there.

  • Keys — primary key, foreign keys, join keys to other tables.
  • Measure columns — types, units, null semantics.
  • Dimension columns — categorical fields you'll group by, with

cardinality (distinct_count from stats).

  • Time columns — which timestamp answers the time-window

question (event_ts vs created_at vs updated_at). Note timezone and any late-arriving-data caveats.

  • Known caveats — soft-deletes, type-2 history, dedup rules,

late data, missing windows, sample rates.

When multiple tables could answer the same question, choose deliberately and write the tradeoff into the brief. Example: "Using web_events.session_started (one row per session, dedup'd) rather than web_events.page_view (one row per page; would require DISTINCT on session_id and risks double-counting)."

When joins are required, for each join state:

  • Join type (INNER, LEFT, FULL, anti-join).
  • Cardinality expectation (1:1, 1:many, many:many — many:many

almost always means you need to aggregate one side first).

  • What to do about unmatched rows (drop, keep with null, count

separately for a join-health check).

When derived metrics or windowed calculations are needed, name them and define them precisely in plain analytical language. The query writer will translate the definition into SQL/NQL.

4. Apply analytical best practices — checklist

Walk this checklist before composing the brief. Each item either becomes a query in the brief or becomes an explicit "we will not do this" note.

| Practice | What it produces in the brief | | --- | --- | | Start with the simplest cut | A foundational counts / distributions query before any modeling. | | Sanity-check totals and row counts | A validation query (total rows, distinct keys, date range covered). | | Segment before aggregating when heterogeneity is likely | A by-dimension breakdown query before any rolled-up summary. | | Cohort-based comparison over point-in-time snapshots for trend questions | Define the cohort key and the cohort comparison window. | | Correlation vs. causation | An explicit "what we can and cannot conclude" line in the brief. | | Survivorship / selection bias | A check that the populations in each period are comparable. | | Simpson's paradox | A by-segment sanity check whenever an aggregate trend looks suspicious. | | Benchmark / spot-check | If a known benchmark exists, plan to validate the headline number against it. | | What the analysis will NOT answer | A short bulleted list at the top of the brief. |

5. Compose the brief — mandatory

The brief is the deliverable. Use the template below. Order query specifications foundational queries first (counts, distributions, date-range validation), then analytical queries that depend on them.

# Analysis brief: 

## Sharpened question

## Hypothesis under test (if any)

## What this analysis will NOT answer
- 
- 
- 

## Data sources
| Table | Grain | Why this table | Caveats |
| --- | --- | --- | --- |
| `` | one row per `` |  |  |
| ... | | | |

## Joins
| From | To | Type | Cardinality | Unmatched rows |
| --- | --- | --- | --- | --- |
| `` | `` | LEFT | 1:many | keep with null on `` |

## Derived metrics
- ``: 

## Query specifications

### Q1 — Validation: row counts and date coverage (foundational)
- **Purpose**: confirm the population and time window match Phase 2
  before drawing any conclusions.
- **Source**: ``, grain ``.
- **Filters**: ``, ``.
- **Group by**: none.
- **Measures**: `COUNT(1) AS row_count`, `COUNT(DISTINCT )`,
  `MIN()`, `MAX()`. (NQL forbids `COUNT(*)`;
  use `COUNT(1)` for rows.)
- **Output shape**: single row.
- **Validation**: row count must be > 0; date min/max must fall
  inside the window.

### Q2 — Baseline distribution (foundational)
- **Purpose**: ...
- ...

### Q3 — 
- **Purpose**: ...
- ...

## Hand-off
Pass each query specification above (in order) to the downstream
query-writing skill (`/write-nql` for Narrative datasets, or your
agent's equivalent). Validate Q1 / Q2 before running Q3+.

Each query specification names: purpose, source tables + grain, filters + time bounds, dimensions to group by, measures (including derived calculations and windowed functions described conceptually), joins + semantics, expected output shape, and validation checks the query writer should build in.

Specs must be expressible in NQL. /write-nql enforces syntactic constraints; see its [NQL_GOTCHAS.md](../write-nql/references/NQL_GOTCHAS.md) reference for the canonical catalog.

6. (optional) Execute the brief

If the user approves the brief and wants it executed, hand off to /write-nql per query specification. See [references/CHAIN_EXECUTION.md](references/CHAIN_EXECUTION.md) for the orchestration pattern (parallelism rules, gating table, fallback).

This skill's primary deliverable is the brief itself — execution is opt-in.

References

  • [references/CHAIN_EXECUTION.md](references/CHAIN_EXECUTION.md) — /write-nql orchestration pattern when the user approves execution of the brief: parallelism rules for batched calls, per-spec invocation pattern, foundational-vs-analytical gating, and the no-/write-nql fallback. Read when chaining into query execution.
  • [references/ANALYSIS_PATTERNS.md](references/ANALYSIS_PATTERNS.md) — worked analytical patterns (decomposition, correlation, segmentation, change-driver). Read when scoping a question that fits one of these archetypes for the dimension list and watch-fors.
  • [references/EDGE_CASES.md](references/EDGE_CASES.md) — vague questions, observational-vs-causal scoping, data-quality breaks in cohort windows, table-choice tradeoffs. Read when the question feels off or the user is bypassing the interrogation.
  • [references/HARNESS_FALLBACK.md](references/HARNESS_FALLBACK.md) — narrative-mcp unavailable (paste-driven schema), --no-schema, AskUserQuestion fallback. Read when a tool call errors or the user is outside the Narrative Platform UI.
  • docs/authoring-skills.md — house conventions (persona, phased body, progressive disclosure, declared requirements).
  • plugins/narrative-common/skills/write-nql/ — the canonical downstream skill. The brief feeds one /write-nql invocation per query specification.

Feedback (only if something could be improved)

Silence is success. Do not call submit_feedback when the skill worked. No "great skill!" submissions, no positive feedback, no "FYI" notes.

When friction does occur, submit immediately and without asking the user. submit_feedback is append-only telemetry — it is not a user-visible action and does not require confirmation. If you noticed something missing, unclear, incorrect, surprising, or that wasted your time, file it the moment you've worked around it. Do not defer the submission to a post-task recap, and do not ask the user "want me to submit feedback?" — that's the wrong default for this tool.

One submission per distinct friction point. Submit liberally.

Fields that matter most:

  • skill_name: narrative-common:design-analysis (use this verbatim).
  • severity: info (nit) | friction (slowed you down) |

blocker (stopped you).

  • category: missing_info | unclear_instructions |

incorrect_instructions | unexpected_behavior | tool_failure | other.

  • summary: one concrete line — what went wrong, not how you felt.
  • suggested_improvement: the sentence or paragraph that, if added

to this skill, would have eliminated the friction. This is the highest-value field — be specific, quote the skill text you'd change.

Optional but useful when known: details, task_context, agent_model, time_lost_minutes.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.