experience-creator

experience-creator is a skill for Claude Code, Codex from xingchengxu/OpenExpertise. It costs 166 tokens per session (1,712 once invoked), scanned A, original, MIT.

A guide for creating OpenExpertise experience files: executable workflows made from connected agents, skills, tools, data, and other workflows. A persistent blackboard is shared storage that lets those parts pass information to one another.

In plain words
What is it for?
It is for designing experience.yaml files, adding prompts and tools, describing datasets, choosing workflow patterns, and checking the result before running it.
Why use it?
It provides a defined way to turn a user goal into a workflow that the OpenExpertise command-line tool can run and validate.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths; mentions Claude Code.

Good fit It is for designing experience.yaml files, adding prompts and tools, describing datasets, choosing workflow patterns, and checking the result before running it.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xingchengxu/openexpertise/skill-experience-creator
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add xingchengxu/OpenExpertise --skill skill-experience-creator
Clone the repo
git clone --depth 1 https://github.com/xingchengxu/OpenExpertise

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for experience-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/xingchengxu/openexpertise/skill-experience-creator/github.svg)](https://agentmods.dev/skills/xingchengxu/openexpertise/skill-experience-creator)
Your own site
<a href="https://agentmods.dev/skills/xingchengxu/openexpertise/skill-experience-creator"><img src="https://agentmods.dev/badge/skills/xingchengxu/openexpertise/skill-experience-creator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for experience-creator

Your own site · 80×15
<a href="https://agentmods.dev/skills/xingchengxu/openexpertise/skill-experience-creator"><img src="https://agentmods.dev/badge/skills/xingchengxu/openexpertise/skill-experience-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 166 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,712 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00166 $0.01712
Opus 5 $0.00083 $0.00856
Sonnet 5 $0.00033 $0.00342
Haiku 4.5 $0.00017 $0.00171

Measured 10d ago against content hash a056b4800373, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

experience-creator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

The scan reads SKILL.md. This mod also ships 7 executable files (assets/examples/hello-tool/tools/greet.mjs, assets/examples/hello-tool/tools/greet.ts, assets/examples/review-branch/tools/list_dimensions.mjs, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

packages/skill-experience-creator/SKILL.md · 201 lines

How it starts

The opening of the file, as written. The whole thing — 201 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Experience Creator

Turn a user goal into a runnable experience.yaml plus its accompanying prompt files, tool modules, and dataset descriptors. The result is a directory that oe run can execute end-to-end.

The deep material lives in three reference files — read them when the step says so:

  • references/api-reference.md — every field of experience.yaml, every node kind's options, every control-flow construct.
  • references/patterns.md — copy-paste topologies (linear, fan-out, pipeline, bounded loop, dataset → agent → score).
  • references/lessons.md — gotchas from earlier V1 work (schema enforcement, cache invalidation, exactOptionalPropertyTypes, ESM imports, etc.).

Starter templates are in assets/templates/. Two worked examples are in assets/examples/. A standalone validator is scripts/validate-experience.mjs.


Step 0 — Confirm OpenExpertise is installed

oe --version

If oe is not on PATH, point the user at the OpenExpertise repo and tell them to either install the CLI (npm install -g @openexpertise/cli) or run via the workspace (node packages/cli/dist/bin.js).


Step 1 — Establish the goal (do NOT skip)

Before writing a line of YAML, get crisp answers to:

  1. What does this experience produce? A reviewed PR? A summarized research finding? A risk score? Name the artifact concretely.
  2. What's the unit of work? The thing one node does once: review one file, research one topic, score one transaction.
  3. What state does it need to remember across runs? This is the blackboard's reason to exist (past_incidents, tuned_thresholds, accumulated_findings).
  4. Which nodes are LLM-backed vs deterministic? Map each step to one of the five kinds (agent / skill / tool / dataset / experience).
  5. What's "done"? A specific exit state — a final field set, a status reaching a value.

Write these answers down for the user before drafting.


Step 2 — Pick the topology

Read the full file on GitHub · 201 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 201 lines · 166 tokens per session scan A a056b4800373

Subscribe to this mod's changes

experience-creator is a skill published in the GitHub repository xingchengxu/OpenExpertise (4 stars, last pushed 3mo ago), licensed MIT. It adds 166 tokens to every session and 1,712 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

hatch3r-board-groom

Ongoing backlog refinement for existing board items. Re-prioritize, reclassify, re-scope, archive stale items, decompose oversized issues, merge duplicates, refresh dependencies, and remediate board health findings.

hatch3r/hatch3r · 52 tokens

hatch3r-cli-toolbox

Category-indexed reference for 34 specialist CLI tools beyond the always-on five (ripgrep, jq, gh, fd, fzf). Use to pick the right tool for HTTP clients, ai-chat, structural-search, sed-style edits, data ops, browser automation, container ops, and more.

hatch3r/hatch3r · 68 tokens

hatch3r-board-init

Initializes a project board (GitHub Projects V2, Azure Boards, or GitLab Issue Boards) with hatch3r's label taxonomy, status fields, and board structure. Platform detected from hatch.json.

hatch3r/hatch3r · 49 tokens

hatch3r-board-shared

Shared context and procedures for all board commands. Provides platform-agnostic board config, label taxonomy, branch conventions, sync enforcement, and tooling directives. Platform-specific details are in commands/board/shared-{platform}.md.

hatch3r/hatch3r · 52 tokens

hatch3r-browser-verify

Opt-in browser verification skill — spec-run-first Playwright verification (assertions execute in the runner, agent reads only failures), axe-core a11y audits, toHaveScreenshot() regression diffs, E2E test scaffolds, and snapshot-mode exploratory driving. Default ON for UI-affecting agent invocations; disable globally…

hatch3r/hatch3r · 83 tokens

hatch3r-board-refresh

Regenerates the living board overview dashboard from current board state. Scans all open issues, computes health metrics, and updates the meta:board-overview issue.

hatch3r/hatch3r · 40 tokens