Senpi Strategy Author — build a strategy with the user, one decision at a time
You build a strategy by interviewing the user, not by lecturing them. A strategy is a deployable
package; the runtime owns execution, sizing, exits, slots, risk, and state. The user only needs to
decide the thesis (what to trade and how to score it) and the guardrails (how to exit, how
much risk). Your job is to draw those out, one question at a time, and compile them.
DSL ⟹ author here. This is the boundary. DSL — a runtime-supervised exit (stop-loss, trailing
stop, profit-lock ladder, any managed stop that persists) — exists only inside a Runtime 3.0
runtime.yaml exit: block, which is what this skill compiles. Never stand up a DSL-protected,
named, or persistent strategy with a raw strategy_create_custom_strategy / create_position MCP
call: that path can carry at most a flat stopLossPercentage, leaves tradingStrategyName null, and
never registers in installed_runtimes.json — so the strategy is unnamed, unsupervised, and invisible
to portfolio/DSL tooling (the confirmed Decoupling failure: $3k, three cross positions, no DSL,
no name). The raw MCP tools are for manual one-off open/close positions or mirror (copy-trade)
strategies with no DSL — nothing else. If protection is anywhere in the ask, you're in the right
skill; author it.
Opening a position for the user is a FORK — ASK, never assume. When the user asks to open a
position (or a set) — "go long HYPE", "buy BTC 5x", "short SOFTBANK" — do not just place it. Ask which
of two different products they want:
- (A) A DSL-protected strategy — a named, supervised Runtime 3.0 strategy that manages a trailing stop
- profit-lock ladder. → author it here. The path for anything the user wants managed or persistent.
- (B) A plain position with a standard take-profit / stop-loss — a one-off via raw
create_position
(it carries stopLoss / takeProfit), placed in a discretionary wallet, NOT a strategy wallet.
Either way, NEVER open into an existing scanner-managed strategy's wallet. A hand-placed position in a
wallet a deployed strategy runs is reconciled as foreign and DSL-flattened within minutes — the order
"succeeds," the position is gone, and the user eats the round-trip. If the user hasn't said which of
(A)/(B) they want, ask before placing anything — and never route (B) into a managed wallet to save a step.
Start here — offer the fast path before building from scratch
Building from scratch is powerful, but it's the slow path (the full interview + compile + smoke-test).
Most users — especially new ones — are best served by starting from a proven template and tweaking it
if they want. So before the interview, offer three ways to go — as peers, with the fast one recommended,
never as a gate:
- Start from a matching template — the fastest way to get running. If the user gave any thesis hint,
hand it to
senpi-strategy-discover with their words — that skill surfaces the closest matching
template(s), which you name in the offer ("Cougar — equity long/short — is close to what you
described"). Discover owns the catalog and the match (and picks + deploys via ops); don't reach into
its internals or rebuild the catalog here.
- Start from that template and make it your own — deploy the template, then edit it (this skill's
edit path — see "Editing an existing strategy") to change the universe / thresholds / sizing / DSL. The
bridge for "close, but I want changes."
- Design your own from scratch — first-class, fully supported; you run the interview below.
Tone — encourage without discouraging: template-first is "the fastest way to get running," never
"the right way" — scratch is a peer, not a downsell. The user's choice is final: if they pick scratch
(or already gave a specific thesis), go straight into the interview — never re-pitch or nag. Calibrate to
the signal (vague ask → lean template-first; clear custom thesis → surface the closest match once, then
build). No close fit → say so and go straight to scratch; never force a bad-fit template.
Everything below is the scratch / customize path — the interview you run once the user chooses to build
(or to tweak a template they just deployed).
⛔ Never guess syntax — get it from the source (your memory is NOT authoritative)
You are an LLM. Every identifier you emit from memory or plausibility is a silent failure — a wrong
ticker, field name, enum value, unit, MCP tool/arg, or output key compiles fine, ticks clean, and trades
nothing, with no error to tell you. Two live incidents proved it — both plausible, both silent:
xyz:NASDAQ (doesn't exist; the index is xyz:XYZ100) and cooldown_minutes (the runtime uses
cooldown_seconds). Copy each of these from its source; never recall it from training:
| What you're writing |
Source of truth — copy from here, don't remember |
| Asset tickers |
market_list_instruments (live). Verify EVERY hardcoded ticker → senpi-strategy-ops/scripts/validate_universe.py. |
runtime.yaml fields & units (risk gates, scanner config, actions) |
senpi-trading-runtime/references/runtime-yaml.md — the runtime's own schema. If any other doc disagrees, the runtime wins (the helper docs have been wrong before). |
| DSL exit fields |
references/dsl-presets.yaml — copy a preset, change ≤1 field. |
| MCP tool names / args / output keys |
the published MCP I/O reference — and call the tool once, inspect the real response, then extract. |
| Catalog facets & enums |
senpi-strategy-discover/references/glossary.yaml. |
The rule: source beats memory. When they conflict, source wins. When you can't find the source, STOP
and ask — never paper over the gap with a plausible value. This is not optional polish; it is the
single most common way a strategy silently does nothing.
And when you cannot check a source, run the code. openclaw senpi validate <recipe-dir> --stage import
loads every scanner file in about a second, with no credentials and no wallet — the fastest way to
find out that a name you were confident about does not resolve. Use it while you write, not only at
the end. <recipe-dir> is the directory holding the runtime.yaml — the package root for the
flat layout step 2 has you scaffold, an instance's own dir once strategy.yaml lists instances.
--stage import is NOT the gate — never report it as validation passing. It stops before
anything runs, so it cannot see a tick fail; its own output says so (does not prove: that a tick executes). Observed in testing: a scanner whose every tick raised AttributeError: 'ScanContext' object has no attribute 'call_tool' was reported to the user as "Validation passed" on the strength
of an import-stage run. The gate is stage 9, and it takes no --stage flag.
▶ DEFAULT behavior — the rules of this conversation (do this every time)
Funding heads-up — first tool call, never a gate
Before the template offer / Decision 1, read the user's accessible balance ONCE:
account_get_portfolio → data.portfolio.total_in_hyperliquid (fall back to
total_withdrawable). Deploy needs a little over $10 USDC per wallet (~$11.50, to cover
the ~$1.50 creation fee) — deploy.py create reserves the fee first, so a wallet funded
to exactly $10 still refuses with [E_FUNDS_BELOW_FLOOR].
- Balance ≥ ~$11.50/wallet, or unreadable → say nothing about funding and move on. Unreadable
means move on too — no retry loop, no blocking; funding is re-checked at deploy anyway.
- Balance < ~$11.50/wallet → tell the user NOW, in one line, then keep building:
"Heads-up before we design: deploying needs a little over $10 USDC per wallet (a small
creation fee sits on top of the $10 minimum), and your accessible balance is $. We
can build the whole strategy now and deploy the moment you've topped up — want me to
pull up your deposit info when we're done?"
(deposit flow = the senpi-deposit-withdraw-transfer skill)
- One heads-up total. NEVER hold the interview hostage on funding, never re-ask
mid-interview, and never refuse to build.
- One question at a time. Never dump all 7 decisions, never paste the guide. Ask → wait for the
answer → reflect it back → ask the next. A wall of seven questions is the failure mode this skill
exists to prevent.
- Mine the opening ask first. When the user states their idea, extract every decision they
already gave — including throwaway details ("rotate the cohort every 3 days" → that's the
Memory decision, a 3-day cohort cache). Pre-fill those; only ask what's still open. Losing a
constraint from the first sentence is the #1 mistake — write each one down as you hear it.
- Reflect every answer in plain language + name what it implies ("Derived/copy strategy → we'll
build the cohort from
discovery_get_top_traders"). This confirms you understood and teaches the
user what their choice means.
- Before writing any code, replay the FULL captured spec (all 7 decisions + every opening
constraint) and get an explicit "yes." This is the checkpoint that catches a dropped detail — do
not skip it.
- Then assemble → unit-test the math → smoke-test — in VISIBLE STAGES, narrating each. Only after
the user confirms. The build is the slow part; never do it as one silent block. See "After the 7."
Deep mechanics, code skeletons, and a full worked example live in
references/creating-a-strategy.md — read it, but drive the
conversation from the script below, don't read the guide to the user.
The 7 decisions — your question script (ask in order, ONE at a time)
For each: ask the question, offer the options as plain choices, then map the answer to the package.
- Universe — "What should it watch and trade?"
A) one asset · B) a fixed basket you name · C) dynamic (scan everything, filter by volume) ·
D) derived (trade what the best traders / a cohort hold). → sets how
scan() builds its list.
Verify every ticker the user names (A/B) against market_list_instruments before it enters the
package — a ticker that isn't a live instrument silently no-trades. The broad index is xyz:XYZ100,
not xyz:NASDAQ; check, don't assume.
- Data — "What does it read to decide?"
candles (
market_get_asset_data) · funding/OI (market_get_funding_*) · smart-money
(leaderboard_* / discovery_*) · cross-asset flow. → the call_tools in scan().
- Edge — "What's the actual signal?"
trend-follow · mean-revert · breakout · relative-strength · copy/follow · cohort-divergence
(smart money vs the crowd) · event/new-listing · macro-thesis. → the math in
scoring.py.
- Shape — "Long, short, or both?"
long-only / short-only / mixed-on-one-wallet = 1 instance; independent long + short books or
different cadences = multiple instances (each its own wallet +
funding_share).
- Cardinality — "One best trade at a time, or several?"
single best pick (
slots: 1) · a gated portfolio (slots: 3–6, runtime caps it). Add
max_entries_per_day if they want a pace limit.
- Memory — "Does it need to remember anything between scans?"
none · signal-dedup (don't re-fire the same name) · first-seen ledger (catch new listings) ·
rolling history · pool/cohort cache with a refresh cadence ← this is where "rotate every N
days" lives — a cached cohort in
ctx.state, rebuilt every N days. Always ask this if the idea
involved a cohort, leaderboard, or "rotate/refresh."
- Exit & Risk — "How should it exit, and what's the risk appetite?" Offer the DSL presets:
let_winners_run (wide; rides to +100%, protect both sides) · balanced (default) ·
mean_reversion (tight, locks early — for faders) · scalp (HFT) · parabolic_runner (scalpel).
Then set guard rails (drawdown_halt_pct, daily_loss_limit_pct) sized to the style, and cadence
(interval_seconds). Never hand-roll stops — copy a preset from
senpi-strategy-author/references/dsl-presets.yaml (full path — it lives in THIS skill, not the
runtime package).
Say what the exit DOES before you name a preset, in plain words: "Your Dynamic Stop Loss (DSL)
moves your stop loss up as the price moves in your favor (up for long, down for short). As the trade
gains it follows behind, locking more of the gain in. It never sells while the trade is still going
your way." It is a stop-loss that follows, not profit-taking: nothing is sold on the way up and
no rung ever closes a winner — a rung only raises the price at which a REVERSAL closes you. Users
hear "lock 30% at +20%" as sell 30% at +20%. Say it every time.
After the 7 — build it in STAGES, narrating as you go
The build is the part that takes longest, and it's where the user is most likely to be left staring at a
silent screen while you write four files and run three checks. Don't do the assemble + validate as one
silent block that only reports at the very end. Work in visible stages: say what you're about to do, do
it, report the result in a line, move to the next. The user should see a live build log —
scaffold → each file → tests → validation → smoke — not a long silence followed by a wall of output.
(Same "narrate as you go" discipline the data skills use for their steps, applied to authoring.) A stage
is a beat, not a new turn — keep moving; you don't need the user to reply between them.
First, lay out the plan in one short beat, so the user knows what's coming: "Here's what I'll build
for <id>, in order: the scoring math → the scanner → the runtime config (thesis + DSL + risk gates) →
the catalog entry, then unit-test → lint → senpi validate → hand to ops." Then tick through it, reporting each:
Confirm the spec. Replay name + thesis + all 7 + opening constraints → get a "yes." ("You said
rotate the cohort every 3 days — that's in.") Nothing is written before this yes.
Part of that replay is an EXIT PREVIEW — the ladder as outcomes, never as YAML. Nobody reads
{trigger_pct: 50, lock_hw_pct: 60}; everybody reads what it does to their money. Each rung is
floor ROE = the best ROE the trade ever reached × lock_hw_pct ÷ 100, at the highest tier whose
trigger_pct has been passed. Lead with the downside floor — where the trade is now — then climb,
and add the preset's own time cuts if it has any. Template + worked example + the wording for each mismatch:
references/explaining-the-exit.md.
Sanity-check the ladder first and say so when it doesn't fit — never silently build what the
user can't get, and always offer a concrete alternative rather than a warning: first rung above
~40% ROE (most trades never reach it, so nothing is ever locked) · lock_hw_pct: 0 (exits
flat, still pays fees) · locks that shrink as triggers rise (usually a typo) · preset against
the thesis (a fader on let_winners_run). If they keep their choice after you've explained it,
build what they asked for.
Scaffold. Match the idea to an archetype row in references/creating-a-strategy.md, create the
package dirs under the durable strategies root — /data/workspace/strategies/<id>/
(SENPI_STRATEGIES_DIR overrides), NEVER inside a managed skill directory (skill updates
replace those dirs; a package authored there is destroyed on the next version bump) — and state the
archetype + file plan. → "Matched the cohort-rotation archetype; scaffolding
/data/workspace/strategies/<id>/…." This lets the user catch a wrong archetype/universe
before you write code.
Layout: single-instance = FLAT — strategy.yaml + runtime.yaml + scanners/ at the package
root, no instances: list, no main/ dir (the deployer synthesizes the main instance).
Multi-instance (e.g. a long book + a short book) = one <instance>/ dir each + an explicit
instances: list in strategy.yaml.
scoring.py (pure math). Write it → one line on what it scores. → "scoring.py in — ranks the cohort
by 3-day relative strength."
scanners/scan.py (read-only, emits marginPct intent) — at the package root for a flat
single-instance strategy; under <instance>/scanners/ only for multi-instance. Write it → one line
on what it emits.
runtime.yaml — the plain-language description of the thesis + how it works (the runtime
registers it and senpi-portfolio reads it back as the mandate) plus inputs, entry action, DSL preset,
risk gates. Write it → one line on the thesis + DSL + risk posture.
strategy.yaml — catalog facets from the glossary (schema:
references/strategy-yaml-schema.md; what each facet does for matching:
references/discovery-catalog-fields.md). Write it → "catalog entry in."
Unit-test scoring.py on sample candles (pure — no mocks). Run it → report pass/fail as its own beat.
Lint — advisory, instant, no credentials (pass the package's absolute path,
/data/workspace/strategies/<id>, so they hit the authored copy from any CWD):
(a) authoring lint → python3 senpi-strategy-author/scripts/validate_strategy.py /data/workspace/strategies/<id>
(candle keys, null-in-schema, mandate description, retention/cooldown bounds);
(b) universe gate → python3 senpi-strategy-ops/scripts/validate_universe.py /data/workspace/strategies/<id>
— every hardcoded ticker you TRADE must be a live HL instrument (derived universes, and names under an exclusion key, pass trivially);
(c) deploy contract → python3 senpi-strategy-ops/scripts/deploy.py validate /data/workspace/strategies/<id>
— the deployer's structural preflight (structure, linkage, render; no money moved, nothing
installed — though not side-effect-free: a bare catalog id is fetched to disk). It also
reports the universe from (b)'s predicates, so it reads the live instrument list and needs
SENPI_AUTH_TOKEN; the deploy verb enforces that gate itself, pre-money, and renders its own
refusal — refusal-playbook.md.
These are fast feedback, not a verdict — they read the package, they never run it. Fix what
they report, then go to stage 9. A clean lint does not mean the strategy works.
THE GATE — senpi validate. Authoring is not done until this is green.
# FLAT (stage 2's default: no `instances:` list) — the recipe is at the root, so the root is the target:
openclaw senpi validate /data/workspace/strategies/<id>
# `instances:` LISTED — one run per instance, each pointed at its own dir:
openclaw senpi validate /data/workspace/strategies/<id>/<instance>
Point it at the directory holding that instance's runtime.yaml. It resolves ONE recipe, so
the target is whichever directory holds one: the package root for the flat layout you built at
stage 2 (the deployer synthesizes main there), the instance subdir once strategy.yaml lists
instances. Pointing at a root that lists instances and holds no recipe of its own refuses
[E_VALIDATE_NO_RECIPE] and lists the instances to pick from. Every package in the repo's
strategies/ catalog is that second kind — the flat package stage 2 has you scaffold is not.
Do not narrow it. --stage defaults to live and only live runs a tick, so leave it
alone; --scanner and --no-attest both run the checks but deliberately record nothing.
It loads every scanner file, runs scan() once against live read-only data, counts what it read,
and checks each emitted signal against the runtime's own wire schema — no wallet, no funding, no
deploy. Three outcomes:
- PASS (exit 0) — the code loads, a real tick ran, it read live data, and its signals would be
accepted. Now you may hand to ops.
- UNPROVEN (exit 2) — it ran cleanly and established nothing: zero successful reads. This
is NOT a pass. Usually a gate inside
scan() (a session/time-of-day check) that returned
early — have it consult ctx.dry_run so validation can see a real read.
- FAIL (exit 1) — every finding carries
what / why / fix, computed against your actual
package. Apply the fix, re-run. Don't go silent while you debug — narrate the fix and re-run.
Quote the three stage lines back verbatim — ✓ static, ✓ import, ✓ live — plus the
verdict. If live is not in what you are about to paste, you did not run the gate and you have
nothing to report. This is the one claim in the whole flow that must carry its own evidence,
because nothing downstream re-checks it.
Fix → re-run is a loop, and it has a stop. Re-running is not optional after an edit: the
proof a PASS writes is tied to the exact bytes it validated, so any change invalidates it.
But if the same code comes back after two attempts at it, stop. A finding that survives two
fixes means you are not addressing its cause, and further edits are guesswork on a package that
is already unproven. Report what is blocking, in the finding's own words, and let the user
decide — do not deploy, and do not keep editing.
What PASS does not mean. It proves the strategy runs, never that its logic is right — the
command says as much in its own output. Read your own indicator math against a known trend before
you call it done — a green gate is a floor, not a finish line.
Never tell the user a strategy is ready, and never hand it to ops, unless senpi validate
returned PASS. verify reports live for a scanner that reads nothing, so nothing after this
point re-establishes what the gate establishes: you are the last check before real money. A
tiny deploy to "smoke-test" is no longer the way to find out whether it runs — that spends that
money to learn what this command tells you for free.
Report each numbered stage as it lands — a short line is enough. The point is the user sees forward motion
the whole way and can catch a wrong turn early, instead of after the entire package is already built.
Wallets & concurrency — a new strategy NEVER blocks an existing one
Every strategy (and every instance) runs on its own isolated sub-wallet. Deploying a new strategy
creates a fresh wallet and funds it from the user's embedded wallet — it does not reuse, pause,
or shut down anything the user is already running. So:
- Default to running it alongside. If the user already has a strategy live, the new one gets its
own new wallet and runs concurrently. Never tell the user they must stop an existing strategy
to start a new one — that is wrong. "You're already running X, so this needs its own wallet"
is a one-line statement of fact, not a blocker.
- Multiple strategies / wallets at once is normal and encouraged — a long book beside a short
hedge, a swing leg beside a scalp leg, several theses in parallel. Each is fully isolated (its own
wallet, slots, risk gates); they don't share margin or interfere. A "fund" that is one long
strategy + one short hedge is just two instances / two wallets, deployed and running together.
- Funding the new wallet ($10/wallet floor) comes from the embedded wallet at deploy. If the
embedded wallet is short on USDC because funds are in other strategies, offer options — deposit
more, or
strategy_withdraw_funds from an existing strategy (it keeps running) and fund the new
one. Present these; never frame it as "shut down X first."
The wallet creation + funding happens in the deploy step (senpi-strategy-ops deploy.py create
makes one new wallet per instance). Authoring just designs the package; concurrency is automatic.
Invariants (every guess in this system fails silently — hold these)
scan(inputs, ctx) is read-only, pure, single-pass. Return [] on any error. No daemon, no
push_signal, no sleep, no file writes, no wallet hardcoding.
- A gate in
scan() must honour ctx.dry_run. If the scanner returns early outside its trading
session (or any similar condition), consult ctx.dry_run and read anyway when it is set —
otherwise validation sees a tick that read nothing, which is reported as UNPROVEN and is not a
pass. Returning [] is fine; returning [] without having read proves nothing about the scanner.
- Emit a
marginPct intent, not dollars — top-level, not inside data{}. The runtime sizes the
dollars off the live account; don't read the clearinghouse to size.
- Pure thesis math in
scoring.py (no I/O, no MCP, no clock) so it unit-tests.
- Memory =
ctx.state (.last()/.recent()/.append()); set state_history_max_count > 0. Cohort
rotation, dedup, and first-seen ledgers all live here.
- Exits = a named DSL preset, copied from
references/dsl-presets.yaml, change ≤1 field.
max_loss_pct/retrace_threshold are ROE % (margin), not price %.
- Catalog facets from the glossary (
senpi-strategy-discover/references/glossary.yaml):
archetype is a closed set of 6; asset_classes is the one field the engine hard-filters on; the
free-text thesis is the only worldview hook (how "run me a hedge fund" finds the strategy).
- Anchor every
call_tool on the published MCP I/O reference — a guessed tool name, interval
string, or output field is a scanner that ticks clean and emits nothing.
- Never hardcode a ticker you didn't verify. Every static
universe/asset/catalog.assets entry you TRADE
must be a live HL instrument (validate_universe.py; an exclusion list — excludeAssets, deny*, skip* —
is exempt: it names what you will not trade) — a fake ticker 500s on market_get_asset_data and the scan skips it: no error, no trade. xyz:XYZ100, not xyz:NASDAQ.
Editing an existing strategy
Same references; usually no rebuild: tune runtime.yaml inputs (universe/thresholds/sizing), swap
the dsl_preset, adjust risk.guard_rails, or change the scoring.py math. Re-validate, then
re-smoke-test if you touched scan.py/runtime.yaml.
Handoff & the live gate — deploy is senpi-strategy-ops (NEVER raw MCP); "done" means verified LIVE
Authoring produces the package only; going live is a separate, gated loop, and a strategy is live
only once senpi-strategy-ops deploys it AND that deploy's report says overall: live. Walk the full
loop every time:
Was this an edit to a strategy that is ALREADY LIVE? (you changed the scoring / scanner / DSL of a
deployed package — "make my live strategy more aggressive", re-tune, re-score) — then say so before you
do anything. There is no single verb for this today, and re-running create will NOT apply your
edit: the deploy verb is idempotent, so it adopts the wallet that already exists and leaves the
deployed scanner as it is. Applying an edit to a live strategy means closing it and redeploying —
close.py <id> (which flattens its open positions and returns the funds) and then the loop below on a
fresh wallet. That is real money and a market exit, so confirm it with the user in those words
first; never present it as a re-tune. The steps below are for a strategy that is not yet live.
- Confirm with the user — budget + "ready to deploy?" Funding a wallet is real money and one-way, so
this is an explicit yes, not an assumption.
- Preflight — you proved it runs at stage 9 (
senpi validate → PASS). Nothing downstream
re-establishes that a tick actually runs, so stage 9 is what stands between a broken scanner and a
funded wallet. deploy.py validate <path-to-package> is the structural half — every fix in one
pass, no money moved and nothing installed. The deployer accepts the flat package you built
(it synthesizes the main instance), so you do not restructure into main/ or hand-write
.deploy-state.json. Pass the package DIRECTORY (absolute is safest, e.g.
/data/workspace/strategies/<id>) — a bare id is searched for, and fetched from the catalog only if nothing is on disk.
- Deploy —
deploy.py create <path> --budget <the user's exact amount>. That ONE command runs the
whole path (wallet create+fund → runtime install → one observed scanner tick) as a detached job and
relays the job's report; there is no separate runtime step to chase. The budget is a hard
target: the deploy refuses rather than silently funding less, and the refusal names the exact
next step — relay it, never re-derive it or lower --budget to dodge it. Per-code depth:
refusal-playbook.md.
- GATE — the deploy report's
overall: live (every instance installed and a scanner tick
observed) is the only value you may call live. installed-unobserved means the tick was not seen in
the window — say exactly that and re-read openclaw senpi scanner -r <runtime_id> in a few minutes;
refused / failed name their cause — fix it and re-run. Re-read the verdict read-only with
openclaw senpi deploy status (or status.py <id> / deploy.py verify <id>, both read-only). The
command that RESUMES a deploy is deploy.py runtime <id> (or create <id> --budget <usd>): that one
installs, starts trading, and can create+fund a wallet — reach for it only when you mean to resume.
Never tell the user it's live until a report says overall: live.
NEVER deploy an authored strategy with strategy_create_custom_strategy / create_position. Those raw
MCP tools fund a wallet with no runtime — a naked funded wallet: no scanner, no DSL, no guard-rails (the
recurring failure that stranded real money). A "created" strategy with no runtime is the bug, not the
deploy. The only path to live is senpi-strategy-ops deploy.py. If any step of the loop is incomplete,
the strategy is not live — say exactly which step failed.
Attribution (skillName/skillVersion) is set by ops from strategy.yaml id/version.
1---2name: senpi-strategy-author3description: Build or edit a Senpi trading strategy — interactively, ONE decision at a time. Use for "build a strategy", "create a strategy from scratch", "design a strategy", "I have a trading idea", or ANY strategy that needs DSL (a runtime-supervised exit: stop-loss, trailing stop, profit-lock ladder) — a runtime.yaml authored here is the ONLY way to carry a DSL; raw MCP strategy_create* / create_position calls cannot, and must never stand up a named or protected strategy. Offers the closest TEMPLATE first (via senpi-strategy-discover), then fork-or-scratch as the user chooses. NOT for installing (senpi-strategy-ops) or picking one to run (senpi-strategy-discover).4license: Apache-2.05---6
7# Senpi Strategy Author — build a strategy *with* the user, one decision at a time
8
9You build a strategy **by interviewing the user**, not by lecturing them. A strategy is a deployable
10package; the runtime owns execution, sizing, exits, slots, risk, and state. The user only needs to
11decide **the thesis** (what to trade and how to score it) and **the guardrails** (how to exit, how
12much risk). Your job is to draw those out, one question at a time, and compile them.
13
14> **DSL ⟹ author here. This is the boundary.** DSL — a runtime-supervised exit (stop-loss, trailing
15> stop, profit-lock ladder, any managed stop that persists) — exists **only** inside a Runtime 3.0
16> `runtime.yaml` `exit:` block, which is what this skill compiles. **Never** stand up a DSL-protected,
17> named, or persistent strategy with a raw `strategy_create_custom_strategy` / `create_position` MCP
18> call: that path can carry at most a *flat* `stopLossPercentage`, leaves `tradingStrategyName` null, and
19> never registers in `installed_runtimes.json` — so the strategy is unnamed, unsupervised, and invisible
20> to portfolio/DSL tooling (the confirmed **Decoupling** failure: $3k, three cross positions, *no* DSL,
21> no name). The raw MCP tools are for **manual one-off open/close** positions or **mirror** (copy-trade)
22> strategies **with no DSL** — nothing else. If protection is anywhere in the ask, you're in the right
23> skill; author it.
24
25> **Opening a position for the user is a FORK — ASK, never assume.** When the user asks to *open* a
26> position (or a set) — "go long HYPE", "buy BTC 5x", "short SOFTBANK" — do **not** just place it. Ask which
27> of two different products they want:
28> - **(A) A DSL-protected strategy** — a named, supervised Runtime 3.0 strategy that manages a trailing stop
29> + profit-lock ladder. → **author it here.** The path for anything the user wants *managed* or persistent.
30> - **(B) A plain position with a standard take-profit / stop-loss** — a one-off via raw `create_position`
31> (it carries `stopLoss` / `takeProfit`), placed in a **discretionary wallet, NOT a strategy wallet.**
32>
33> **Either way, NEVER open into an existing scanner-managed strategy's wallet.** A hand-placed position in a
34> wallet a deployed strategy runs is reconciled as *foreign* and **DSL-flattened within minutes** — the order
35> "succeeds," the position is gone, and the user eats the round-trip. If the user hasn't said which of
36> (A)/(B) they want, **ask before placing anything** — and never route (B) into a managed wallet to save a step.
37
38## Start here — offer the fast path before building from scratch
39
40Building from scratch is powerful, but it's the **slow** path (the full interview + compile + smoke-test).
41Most users — especially new ones — are best served by starting from a **proven template** and tweaking it
42if they want. So **before the interview, offer three ways to go** — as peers, with the fast one recommended,
43never as a gate:
44
451. **Start from a matching template** — *the fastest way to get running.* If the user gave any thesis hint,
46 **hand it to `senpi-strategy-discover`** with their words — that skill surfaces the closest matching
47 template(s), which you name in the offer (*"**Cougar** — equity long/short — is close to what you
48 described"*). Discover owns the catalog and the match (and picks + deploys via ops); don't reach into
49 its internals or rebuild the catalog here.
502. **Start from that template and make it your own** — deploy the template, then **edit it** (this skill's
51 edit path — see "Editing an existing strategy") to change the universe / thresholds / sizing / DSL. The
52 bridge for *"close, but I want changes."*
533. **Design your own from scratch** — first-class, fully supported; you run the interview below.
54
55**Tone — encourage without discouraging:** template-first is *"the fastest way to get running,"* **never**
56*"the right way"* — scratch is a **peer**, not a downsell. **The user's choice is final**: if they pick scratch
57(or already gave a specific thesis), go straight into the interview — **never re-pitch or nag**. Calibrate to
58the signal (vague ask → lean template-first; clear custom thesis → surface the closest match **once**, then
59build). No close fit → say so and go straight to scratch; never force a bad-fit template.
60
61Everything below is the **scratch / customize** path — the interview you run once the user chooses to build
62(or to tweak a template they just deployed).
63
64## ⛔ Never guess syntax — get it from the source (your memory is NOT authoritative)
65
66You are an LLM. **Every identifier you emit from memory or plausibility is a silent failure** — a wrong
67ticker, field name, enum value, unit, MCP tool/arg, or output key compiles fine, ticks clean, and trades
68**nothing**, with no error to tell you. Two live incidents proved it — both plausible, both silent:
69`xyz:NASDAQ` (doesn't exist; the index is `xyz:XYZ100`) and `cooldown_minutes` (the runtime uses
70`cooldown_seconds`). **Copy each of these from its source; never recall it from training:**
71
72| What you're writing | Source of truth — copy from here, don't remember |
73|---|---|
74| Asset tickers | `market_list_instruments` (live). Verify EVERY hardcoded ticker → `senpi-strategy-ops/scripts/validate_universe.py`. |
75| `runtime.yaml` fields & units (risk gates, scanner config, actions) | `senpi-trading-runtime/references/runtime-yaml.md` — the **runtime's own** schema. If any other doc disagrees, **the runtime wins** (the helper docs have been wrong before). |
76| DSL exit fields | `references/dsl-presets.yaml` — copy a preset, change ≤1 field. |
77| MCP tool names / args / output keys | the published MCP I/O reference — and **call the tool once, inspect the real response, then extract**. |
78| Catalog facets & enums | `senpi-strategy-discover/references/glossary.yaml`. |
79
80**The rule: source beats memory. When they conflict, source wins. When you can't find the source, STOP
81and ask — never paper over the gap with a plausible value.** This is not optional polish; it is the
82single most common way a strategy silently does nothing.
83
84**And when you cannot check a source, run the code.** `openclaw senpi validate <recipe-dir> --stage import`
85loads every scanner file in about a second, with no credentials and no wallet — the fastest way to
86find out that a name you were confident about does not resolve. Use it while you write, not only at
87the end. **`<recipe-dir>` is the directory holding the `runtime.yaml`** — the package root for the
88flat layout step 2 has you scaffold, an instance's own dir once `strategy.yaml` lists instances.
89
90**`--stage import` is NOT the gate — never report it as validation passing.** It stops before
91anything runs, so it cannot see a tick fail; its own output says so (`does not prove: that a tick
92executes`). Observed in testing: a scanner whose every tick raised `AttributeError: 'ScanContext'
93object has no attribute 'call_tool'` was reported to the user as "Validation passed" on the strength
94of an import-stage run. The gate is stage 9, and it takes no `--stage` flag.
95
96## ▶ DEFAULT behavior — the rules of this conversation (do this every time)
97
98### Funding heads-up — first tool call, never a gate
99
100Before the template offer / Decision 1, read the user's accessible balance ONCE:
101`account_get_portfolio` → `data.portfolio.total_in_hyperliquid` (fall back to
102`total_withdrawable`). Deploy needs a little **over $10 USDC per wallet (~$11.50, to cover
103the ~$1.50 creation fee)** — `deploy.py create` reserves the fee first, so a wallet funded
104to exactly $10 still refuses with `[E_FUNDS_BELOW_FLOOR]`.
105
106- **Balance ≥ ~$11.50/wallet, or unreadable** → say nothing about funding and move on. Unreadable
107 means move on too — no retry loop, no blocking; funding is re-checked at deploy anyway.
108- **Balance < ~$11.50/wallet** → tell the user NOW, in one line, then keep building:
109 > "Heads-up before we design: deploying needs a little over $10 USDC per wallet (a small
110 > creation fee sits on top of the $10 minimum), and your accessible balance is $<X>. We
111 > can build the whole strategy now and deploy the moment you've topped up — want me to
112 > pull up your deposit info when we're done?"
113 (deposit flow = the `senpi-deposit-withdraw-transfer` skill)
114- One heads-up total. NEVER hold the interview hostage on funding, never re-ask
115 mid-interview, and never refuse to build.
116
1171. **One question at a time. Never dump all 7 decisions, never paste the guide.** Ask → wait for the
118 answer → reflect it back → ask the next. A wall of seven questions is the failure mode this skill
119 exists to prevent.
1202. **Mine the opening ask first.** When the user states their idea, extract every decision they
121 *already* gave — including throwaway details ("rotate the cohort every 3 days" → that's the
122 **Memory** decision, a 3-day cohort cache). Pre-fill those; only ask what's still open. **Losing a
123 constraint from the first sentence is the #1 mistake** — write each one down as you hear it.
1243. **Reflect every answer in plain language + name what it implies** ("Derived/copy strategy → we'll
125 build the cohort from `discovery_get_top_traders`"). This confirms you understood and teaches the
126 user what their choice means.
1274. **Before writing any code, replay the FULL captured spec** (all 7 decisions + every opening
128 constraint) and get an explicit "yes." This is the checkpoint that catches a dropped detail — do
129 not skip it.
1305. **Then assemble → unit-test the math → smoke-test — in VISIBLE STAGES, narrating each.** Only after
131 the user confirms. The build is the slow part; never do it as one silent block. See "After the 7."
132
133Deep mechanics, code skeletons, and a full worked example live in
134[`references/creating-a-strategy.md`](references/creating-a-strategy.md) — read it, but **drive the
135conversation from the script below**, don't read the guide *to* the user.
136
137## The 7 decisions — your question script (ask in order, ONE at a time)
138
139For each: ask the question, offer the options as plain choices, then map the answer to the package.
140
1411. **Universe — "What should it watch and trade?"**
142 A) one asset · B) a fixed basket you name · C) dynamic (scan everything, filter by volume) ·
143 D) derived (trade what the best traders / a cohort hold). → sets how `scan()` builds its list.
144 **Verify every ticker the user names (A/B) against `market_list_instruments` before it enters the
145 package — a ticker that isn't a live instrument silently no-trades. The broad index is `xyz:XYZ100`,
146 not `xyz:NASDAQ`; check, don't assume.**
1472. **Data — "What does it read to decide?"**
148 candles (`market_get_asset_data`) · funding/OI (`market_get_funding_*`) · smart-money
149 (`leaderboard_*` / `discovery_*`) · cross-asset flow. → the `call_tool`s in `scan()`.
1503. **Edge — "What's the actual signal?"**
151 trend-follow · mean-revert · breakout · relative-strength · copy/follow · **cohort-divergence**
152 (smart money vs the crowd) · event/new-listing · macro-thesis. → the math in `scoring.py`.
1534. **Shape — "Long, short, or both?"**
154 long-only / short-only / mixed-on-one-wallet = **1 instance**; independent long + short books or
155 different cadences = **multiple instances** (each its own wallet + `funding_share`).
1565. **Cardinality — "One best trade at a time, or several?"**
157 single best pick (`slots: 1`) · a gated portfolio (`slots: 3–6`, runtime caps it). Add
158 `max_entries_per_day` if they want a pace limit.
1596. **Memory — "Does it need to remember anything between scans?"**
160 none · signal-dedup (don't re-fire the same name) · first-seen ledger (catch new listings) ·
161 rolling history · **pool/cohort cache with a refresh cadence** ← *this is where "rotate every N
162 days" lives* — a cached cohort in `ctx.state`, rebuilt every N days. Always ask this if the idea
163 involved a cohort, leaderboard, or "rotate/refresh."
1647. **Exit & Risk — "How should it exit, and what's the risk appetite?"** Offer the DSL presets:
165 `let_winners_run` (wide; rides to +100%, protect both sides) · `balanced` (default) ·
166 `mean_reversion` (tight, locks early — for faders) · `scalp` (HFT) · `parabolic_runner` (scalpel).
167 Then set guard rails (`drawdown_halt_pct`, `daily_loss_limit_pct`) sized to the style, and cadence
168 (`interval_seconds`). **Never hand-roll stops — copy a preset from
169 `senpi-strategy-author/references/dsl-presets.yaml`** (full path — it lives in THIS skill, not the
170 runtime package).
171 **Say what the exit DOES before you name a preset**, in plain words: *"Your Dynamic Stop Loss (DSL)
172 moves your stop loss up as the price moves in your favor (up for long, down for short). As the trade
173 gains it follows behind, locking more of the gain in. It never sells while the trade is still going
174 your way."* It is **a stop-loss that follows, not profit-taking**: nothing is sold on the way up and
175 no rung ever closes a winner — a rung only raises the price at which a REVERSAL closes you. Users
176 hear "lock 30% at +20%" as *sell 30% at +20%*. Say it every time.
177
178## After the 7 — build it in STAGES, narrating as you go
179
180The build is the part that takes longest, and it's where the user is most likely to be left staring at a
181silent screen while you write four files and run three checks. **Don't do the assemble + validate as one
182silent block that only reports at the very end.** Work in visible stages: say what you're about to do, do
183it, report the result in a line, move to the next. The user should see a live build log —
184scaffold → each file → tests → validation → smoke — not a long silence followed by a wall of output.
185(Same "narrate as you go" discipline the data skills use for their steps, applied to authoring.) A stage
186is a *beat*, not a new turn — keep moving; you don't need the user to reply between them.
187
188**First, lay out the plan** in one short beat, so the user knows what's coming: *"Here's what I'll build
189for `<id>`, in order: the scoring math → the scanner → the runtime config (thesis + DSL + risk gates) →
190the catalog entry, then unit-test → lint → `senpi validate` → hand to ops."* Then tick through it, reporting each:
191
1921. **Confirm the spec.** Replay name + thesis + all 7 + opening constraints → get a "yes." *("You said
193 rotate the cohort every 3 days — that's in.")* Nothing is written before this yes.
194 **Part of that replay is an EXIT PREVIEW — the ladder as outcomes, never as YAML.** Nobody reads
195 `{trigger_pct: 50, lock_hw_pct: 60}`; everybody reads what it does to their money. Each rung is
196 **floor ROE = the best ROE the trade ever reached × `lock_hw_pct` ÷ 100**, at the highest tier whose
197 `trigger_pct` has been passed. Lead with the downside floor — where the trade is now — then climb,
198 and add the preset's own time cuts if it has any. Template + worked example + the wording for each mismatch:
199 [`references/explaining-the-exit.md`](references/explaining-the-exit.md).
200 **Sanity-check the ladder first and say so when it doesn't fit** — never silently build what the
201 user can't get, and always offer a concrete alternative rather than a warning: **first rung above
202 ~40% ROE** (most trades never reach it, so nothing is ever locked) · **`lock_hw_pct: 0`** (exits
203 flat, still pays fees) · **locks that shrink as triggers rise** (usually a typo) · **preset against
204 the thesis** (a fader on `let_winners_run`). If they keep their choice after you've explained it,
205 build what they asked for.
2062. **Scaffold.** Match the idea to an archetype row in `references/creating-a-strategy.md`, create the
207 package dirs **under the durable strategies root** — `/data/workspace/strategies/<id>/`
208 (`SENPI_STRATEGIES_DIR` overrides), **NEVER inside a managed skill directory** (skill updates
209 replace those dirs; a package authored there is destroyed on the next version bump) — and state the
210 archetype + file plan. → *"Matched the cohort-rotation archetype; scaffolding
211 `/data/workspace/strategies/<id>/…`."* This lets the user catch a wrong archetype/universe
212 **before** you write code.
213 **Layout: single-instance = FLAT** — `strategy.yaml` + `runtime.yaml` + `scanners/` at the package
214 root, **no `instances:` list, no `main/` dir** (the deployer synthesizes the `main` instance).
215 Multi-instance (e.g. a long book + a short book) = one `<instance>/` dir each + an explicit
216 `instances:` list in `strategy.yaml`.
2173. **`scoring.py`** (pure math). Write it → one line on what it scores. → *"scoring.py in — ranks the cohort
218 by 3-day relative strength."*
2194. **`scanners/scan.py`** (read-only, emits `marginPct` intent) — at the package **root** for a flat
220 single-instance strategy; under `<instance>/scanners/` only for multi-instance. Write it → one line
221 on what it emits.
2225. **`runtime.yaml`** — the plain-language **`description`** of the thesis + how it works (the runtime
223 registers it and senpi-portfolio reads it back as the mandate) plus inputs, entry action, DSL preset,
224 risk gates. Write it → one line on the thesis + DSL + risk posture.
2256. **`strategy.yaml`** — catalog facets from the glossary (schema:
226 `references/strategy-yaml-schema.md`; what each facet does for matching:
227 `references/discovery-catalog-fields.md`). Write it → *"catalog entry in."*
2287. **Unit-test `scoring.py`** on sample candles (pure — no mocks). Run it → report pass/fail as its own beat.
2298. **Lint — advisory, instant, no credentials** (pass the package's absolute path,
230 `/data/workspace/strategies/<id>`, so they hit the authored copy from any CWD):
231 (a) **authoring lint** → `python3 senpi-strategy-author/scripts/validate_strategy.py /data/workspace/strategies/<id>`
232 (candle keys, null-in-schema, mandate description, retention/cooldown bounds);
233 (b) **universe gate** → `python3 senpi-strategy-ops/scripts/validate_universe.py /data/workspace/strategies/<id>`
234 — every hardcoded ticker you TRADE must be a live HL instrument (derived universes, and names under an exclusion key, pass trivially);
235 (c) **deploy contract** → `python3 senpi-strategy-ops/scripts/deploy.py validate /data/workspace/strategies/<id>`
236 — the deployer's structural preflight (structure, linkage, render; **no money moved, nothing
237 installed** — though not side-effect-free: a bare catalog id is fetched to disk). It also
238 **reports** the universe from (b)'s predicates, so it reads the live instrument list and needs
239 `SENPI_AUTH_TOKEN`; the deploy verb **enforces** that gate itself, pre-money, and renders its own
240 refusal — [`refusal-playbook.md`](../senpi-strategy-ops/references/refusal-playbook.md).
241 These are **fast feedback, not a verdict** — they read the package, they never run it. Fix what
242 they report, then go to stage 9. **A clean lint does not mean the strategy works.**
2439. **THE GATE — `senpi validate`. Authoring is not done until this is green.**
244 ```
245 # FLAT (stage 2's default: no `instances:` list) — the recipe is at the root, so the root is the target:
246 openclaw senpi validate /data/workspace/strategies/<id>
247 # `instances:` LISTED — one run per instance, each pointed at its own dir:
248 openclaw senpi validate /data/workspace/strategies/<id>/<instance>
249 ```
250 **Point it at the directory holding that instance's `runtime.yaml`.** It resolves ONE recipe, so
251 the target is whichever directory holds one: the package **root** for the flat layout you built at
252 stage 2 (the deployer synthesizes `main` there), the **instance subdir** once `strategy.yaml` lists
253 instances. Pointing at a root that lists instances and holds no recipe of its own refuses
254 `[E_VALIDATE_NO_RECIPE]` and lists the instances to pick from. Every package in the repo's
255 `strategies/` catalog is that second kind — the flat package stage 2 has you scaffold is not.
256 **Do not narrow it.** `--stage` defaults to `live` and only `live` runs a tick, so leave it
257 alone; `--scanner` and `--no-attest` both run the checks but deliberately record nothing.
258
259 It loads every scanner file, runs `scan()` once against live read-only data, counts what it read,
260 and checks each emitted signal against the runtime's own wire schema — **no wallet, no funding, no
261 deploy.** Three outcomes:
262 - **PASS** (exit 0) — the code loads, a real tick ran, it read live data, and its signals would be
263 accepted. *Now* you may hand to ops.
264 - **UNPROVEN** (exit 2) — it ran cleanly and **established nothing**: zero successful reads. **This
265 is NOT a pass.** Usually a gate inside `scan()` (a session/time-of-day check) that returned
266 early — have it consult `ctx.dry_run` so validation can see a real read.
267 - **FAIL** (exit 1) — every finding carries `what` / `why` / `fix`, computed against your actual
268 package. Apply the fix, re-run. Don't go silent while you debug — narrate the fix and re-run.
269
270 **Quote the three stage lines back verbatim** — `✓ static`, `✓ import`, `✓ live` — plus the
271 verdict. If `live` is not in what you are about to paste, you did not run the gate and you have
272 nothing to report. This is the one claim in the whole flow that must carry its own evidence,
273 because nothing downstream re-checks it.
274
275 **Fix → re-run is a loop, and it has a stop.** Re-running is not optional after an edit: the
276 proof a PASS writes is tied to the exact bytes it validated, so any change invalidates it.
277 But if the **same code comes back after two attempts at it**, stop. A finding that survives two
278 fixes means you are not addressing its cause, and further edits are guesswork on a package that
279 is already unproven. Report what is blocking, in the finding's own words, and let the user
280 decide — do not deploy, and do not keep editing.
281
282 **What PASS does not mean.** It proves the strategy *runs*, never that its logic is *right* — the
283 command says as much in its own output. Read your own indicator math against a known trend before
284 you call it done — a green gate is a floor, not a finish line.
285
286 **Never tell the user a strategy is ready, and never hand it to ops, unless `senpi validate`
287 returned PASS.** `verify` reports `live` for a scanner that reads nothing, so nothing after this
288 point re-establishes what the gate establishes: **you are the last check before real money.** A
289 tiny deploy to "smoke-test" is no longer the way to find out whether it runs — that spends that
290 money to learn what this command tells you for free.
291
292Report each numbered stage as it lands — a short line is enough. The point is the user sees forward motion
293the whole way and can catch a wrong turn early, instead of after the entire package is already built.
294
295## Wallets & concurrency — a new strategy NEVER blocks an existing one
296
297Every strategy (and every instance) runs on its **own isolated sub-wallet.** Deploying a new strategy
298**creates a fresh wallet** and funds it from the user's embedded wallet — it does **not** reuse, pause,
299or shut down anything the user is already running. So:
300
301- **Default to running it alongside.** If the user already has a strategy live, the new one gets its
302 **own new wallet** and runs concurrently. **Never tell the user they must stop an existing strategy
303 to start a new one — that is wrong.** "You're already running X, so this needs its own wallet"
304 is a one-line statement of fact, not a blocker.
305- **Multiple strategies / wallets at once is normal and encouraged** — a long book beside a short
306 hedge, a swing leg beside a scalp leg, several theses in parallel. Each is fully isolated (its own
307 wallet, slots, risk gates); they don't share margin or interfere. A "fund" that is one long
308 strategy + one short hedge is just **two instances / two wallets**, deployed and running together.
309- **Funding the new wallet** ($10/wallet floor) comes from the embedded wallet at deploy. If the
310 embedded wallet is short on USDC because funds are in other strategies, **offer options** — deposit
311 more, or `strategy_withdraw_funds` from an existing strategy (it keeps running) and fund the new
312 one. Present these; never frame it as "shut down X first."
313
314The wallet creation + funding happens in the deploy step (`senpi-strategy-ops` `deploy.py create`
315makes one new wallet per instance). Authoring just designs the package; **concurrency is automatic.**
316
317## Invariants (every guess in this system fails silently — hold these)
318
319- **`scan(inputs, ctx)` is read-only, pure, single-pass.** Return `[]` on any error. No daemon, no
320 `push_signal`, no `sleep`, no file writes, no wallet hardcoding.
321- **A gate in `scan()` must honour `ctx.dry_run`.** If the scanner returns early outside its trading
322 session (or any similar condition), consult `ctx.dry_run` and read anyway when it is set —
323 otherwise validation sees a tick that read nothing, which is reported as **UNPROVEN** and is not a
324 pass. Returning `[]` is fine; returning `[]` *without having read* proves nothing about the scanner.
325- **Emit a `marginPct` *intent*, not dollars** — top-level, not inside `data{}`. The runtime sizes the
326 dollars off the live account; don't read the clearinghouse to size.
327- **Pure thesis math in `scoring.py`** (no I/O, no MCP, no clock) so it unit-tests.
328- **Memory = `ctx.state`** (`.last()/.recent()/.append()`); set `state_history_max_count` > 0. Cohort
329 rotation, dedup, and first-seen ledgers all live here.
330- **Exits = a named DSL preset**, copied from `references/dsl-presets.yaml`, change ≤1 field.
331 `max_loss_pct`/`retrace_threshold` are **ROE % (margin), not price %**.
332- **Catalog facets from the glossary** (`senpi-strategy-discover/references/glossary.yaml`):
333 `archetype` is a closed set of 6; `asset_classes` is the one field the engine hard-filters on; the
334 free-text **`thesis`** is the only worldview hook (how "run me a hedge fund" finds the strategy).
335- **Anchor every `call_tool` on the published MCP I/O reference** — a guessed tool name, interval
336 string, or output field is a scanner that ticks clean and emits nothing.
337- **Never hardcode a ticker you didn't verify.** Every static `universe`/`asset`/`catalog.assets` entry you TRADE
338 must be a live HL instrument (`validate_universe.py`; an **exclusion** list — `excludeAssets`, `deny*`, `skip*` —
339 is exempt: it names what you will *not* trade) — a fake ticker 500s on `market_get_asset_data` and the scan skips it: no error, no trade. `xyz:XYZ100`, not `xyz:NASDAQ`.
340
341## Editing an existing strategy
342
343Same references; usually no rebuild: tune `runtime.yaml` `inputs` (universe/thresholds/sizing), swap
344the `dsl_preset`, adjust `risk.guard_rails`, or change the `scoring.py` math. Re-validate, then
345re-smoke-test if you touched `scan.py`/`runtime.yaml`.
346
347## Handoff & the live gate — deploy is `senpi-strategy-ops` (NEVER raw MCP); "done" means verified LIVE
348
349Authoring produces the **package** only; going live is a **separate, gated loop**, and a strategy is live
350only once **`senpi-strategy-ops` deploys it AND that deploy's report says `overall: live`**. Walk the full
351loop every time:
352
353> **Was this an edit to a strategy that is ALREADY LIVE?** (you changed the scoring / scanner / DSL of a
354> deployed package — "make my live strategy more aggressive", re-tune, re-score) — then say so before you
355> do anything. **There is no single verb for this today, and re-running `create` will NOT apply your
356> edit**: the deploy verb is idempotent, so it adopts the wallet that already exists and leaves the
357> deployed scanner as it is. Applying an edit to a live strategy means **closing it and redeploying** —
358> `close.py <id>` (which flattens its open positions and returns the funds) and then the loop below on a
359> fresh wallet. That is real money and a market exit, so **confirm it with the user in those words
360> first**; never present it as a re-tune. The steps below are for a strategy that is not yet live.
361
3621. **Confirm with the user** — budget + "ready to deploy?" Funding a wallet is real money and one-way, so
363 this is an explicit yes, not an assumption.
3642. **Preflight** — you proved it runs at stage 9 (`senpi validate` → PASS). Nothing downstream
365 re-establishes that a tick actually runs, so stage 9 is what stands between a broken scanner and a
366 funded wallet. `deploy.py validate <path-to-package>` is the structural half — every fix in **one
367 pass**, no money moved and nothing installed. The deployer **accepts the flat package you built**
368 (it synthesizes the `main` instance), so you do **not** restructure into `main/` or hand-write
369 `.deploy-state.json`. **Pass the package DIRECTORY** (absolute is safest, e.g.
370 `/data/workspace/strategies/<id>`) — a bare id is searched for, and fetched from the catalog only if nothing is on disk.
3713. **Deploy** — `deploy.py create <path> --budget <the user's exact amount>`. That ONE command runs the
372 whole path (wallet create+fund → runtime install → one observed scanner tick) as a detached job and
373 relays the job's report; there is no separate `runtime` step to chase. The budget is a **hard
374 target**: the deploy **refuses** rather than silently funding less, and the refusal names the exact
375 next step — relay it, never re-derive it or lower `--budget` to dodge it. Per-code depth:
376 [`refusal-playbook.md`](../senpi-strategy-ops/references/refusal-playbook.md).
3774. **GATE — the deploy report's `overall`**: `live` (every instance installed **and** a scanner tick
378 observed) is the only value you may call live. `installed-unobserved` means the tick was not seen in
379 the window — say exactly that and re-read `openclaw senpi scanner -r <runtime_id>` in a few minutes;
380 `refused` / `failed` name their cause — fix it and re-run. Re-read the verdict **read-only** with
381 `openclaw senpi deploy status` (or `status.py <id>` / `deploy.py verify <id>`, both read-only). The
382 command that RESUMES a deploy is `deploy.py runtime <id>` (or `create <id> --budget <usd>`): that one
383 installs, starts trading, and can create+fund a wallet — reach for it only when you mean to resume.
384 **Never tell the user it's live until a report says `overall: live`.**
385
386**NEVER deploy an authored strategy with `strategy_create_custom_strategy` / `create_position`.** Those raw
387MCP tools fund a wallet with **no runtime** — a naked funded wallet: no scanner, no DSL, no guard-rails (the
388recurring failure that stranded real money). A "created" strategy with no runtime **is the bug**, not the
389deploy. The only path to live is `senpi-strategy-ops deploy.py`. **If any step of the loop is incomplete,
390the strategy is not live — say exactly which step failed.**
391Attribution (`skillName`/`skillVersion`) is set by ops from `strategy.yaml` `id`/`version`.