live-artifact
Original:🇺🇸 English
Translated
Create refreshable, auditable Open Design artifacts backed by connector or local data. Trigger when the user asks for live dashboards, refreshable reports, synced views, or reusable data-backed artifacts.
12installs
Sourcenexu-io/open-design
Added on
NPX Install
npx skill4agent add nexu-io/open-design live-artifactTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Live Artifact Skill
Create an Open Design live artifact: a project-scoped, previewable HTML artifact whose data can later be refreshed without redesigning the presentation.
Resource map
live-artifact/
├── SKILL.md
└── references/
├── artifact-schema.md ← `references/artifact-schema.md`: artifact files, DTO shape, template binding rules
├── connector-policy.md ← `references/connector-policy.md`: connector safety, redaction, credential boundaries
└── refresh-contract.md ← `references/refresh-contract.md`: source metadata, refresh execution, snapshotsCurrent status
Use the references in this directory as the source of truth for the live artifact file contract. Prefer daemon wrapper commands over raw HTTP when registering or updating live artifacts.
When to use this skill
Use this skill when the user asks for a data-backed view that should remain useful after the first render, for example a live dashboard, refreshable report, synced status page, auditable data view, or artifact that can later be refreshed from local/project data or connectors.
Before creating files, decide whether the user actually wants a live artifact or a normal static artifact:
- Use a live artifact when the user mentions refresh, sync, recurring updates, connector-backed data, source/provenance tracking, dashboards, reports, or reusable data-backed views.
- Use a normal static artifact when the user only wants a one-off HTML/mockup/image/file and does not need refresh, source metadata, or data/provenance panels.
- If the intent is ambiguous, ask one short question: “Should this be refreshable/live, or just a static artifact?”
Workflow
-
Resolve scope and data source without blocking on connected connectors
- Identify the preview goal, audience, data freshness expectations, and whether refresh should be possible later.
- If the user explicitly names a connector/source such as Notion, GitHub, Slack, or Google Drive, do not ask “where should the data come from?” before checking daemon connector tools.
- Prefer local/project sources or daemon connector tools when available.
- Do not call provider APIs directly when a daemon connector/wrapper exists.
- If connector data is needed, first list connectors with . If the named connector is present with
"$OD_NODE_BIN" "$OD_BIN" tools connectors list --format compact, choose an appropriate read-onlystatus: "connected"tool from its catalog and execute it through the connector wrapper.auto - For Notion specifically, a connected connector plus a user brief that names Notion is enough to start with
notionusing a query derived from the requested artifact/topic. Usenotion.notion_searchonly when the user supplied a database id or the search result clearly identifies one.notion.notion_fetch_database - Ask the user a data-source question only when no matching connected connector exists, multiple connected candidates fit equally well, or the requested artifact has no usable topic/query to search for. If you must ask, be specific: ask for the page/database/topic or permission to search broadly, not “where is the Notion data source?”
-
Author the source files
- Write as the human-designed HTML template.
template.html - Write as the canonical preview data used by
data.jsonbindings.{{data.path}} - Write with the live artifact metadata, preview declaration, document declaration, and safe source descriptors.
artifact.json - Write with concise source notes, timestamps, non-sensitive connector references, and transformation notes.
provenance.json - Do not author as source. The daemon derives
index.htmlfromindex.htmlandtemplate.html.data.json
- Write
-
Keep data compact and preview-oriented
- Store only normalized values needed by the preview.
- Summarize large lists, provider responses, or logs before writing them into .
data.json - Stay within the bounded JSON rules in .
references/artifact-schema.md
-
Apply safety rules before registration
- Never store credentials, OAuth tokens, API keys, cookies, auth headers, raw provider responses, HTTP envelopes, full payloads, or secret-like fields in ,
artifact.json,data.json, or source metadata.provenance.json - Avoid forbidden key names such as ,
raw,rawResponse,payload,body,headers,cookie,authorization,token,secret, andcredentialanywhere in persisted JSON.password - Use escaped interpolation only. Raw/unescaped HTML interpolation is not allowed.
html_template_v1
- Never store credentials, OAuth tokens, API keys, cookies, auth headers, raw provider responses, HTTP envelopes, full payloads, or secret-like fields in
-
Register or update through daemon wrappers
-
Use the Open Design daemon wrapper commands viainstead of raw
"$OD_NODE_BIN" "$OD_BIN", barecurl, or barenode:odbash"$OD_NODE_BIN" "$OD_BIN" tools live-artifacts create --input artifact.json "$OD_NODE_BIN" "$OD_BIN" tools live-artifacts list --format compact "$OD_NODE_BIN" "$OD_BIN" tools live-artifacts update --artifact-id "$ARTIFACT_ID" --input artifact.json -
The wrapper reads injected,
OD_NODE_BIN,OD_BIN, andOD_DAEMON_URL; do not print, persist, or override token values.OD_TOOL_TOKEN -
Do not include or invent; the daemon derives project/run scope from the token.
projectId -
Use raw HTTP only for daemon development/debugging when explicitly requested.
-
-
Use connector wrappers for connector data
-
Discover available connectors and tools:bash
"$OD_NODE_BIN" "$OD_BIN" tools connectors list --format compact -
Execute a read-only connector tool with a JSON object input file:bash
"$OD_NODE_BIN" "$OD_BIN" tools connectors execute --connector "$CONNECTOR_ID" --tool "$TOOL_NAME" --input input.json -
Persist only the compact normalized fields needed by the preview plus non-sensitive connector references (,
connectorId,toolName). Never persist connector credentials, transport metadata, or raw provider output.accountLabel -
Do not ask for connector secrets or duplicate setup. Ifis
status, use the listed tools; if it is not connected, tell the user to connect it in the UI.connected -
Seefor listing/execution and credential boundaries, and
references/connector-policy.mdfor read-only refresh source metadata.references/refresh-contract.md
-
-
Report concise results
- On success, return the artifact ID/title and note that is daemon-derived.
index.html - On validation failure, fix the source files and retry through the wrapper. Do not bypass validation.
- On success, return the artifact ID/title and note that
Required files
Every live artifact creation flow must produce these source files before registration:
- — declared skill output and source template for the preview.
template.html - — compact, canonical preview data.
data.json - — create/update input for daemon validation.
artifact.json - — safe source and transformation summary.
provenance.json
index.html