architecture
Use when the user asks to improve architecture, find refactoring opportunities, surface deepening opportunities, consolidate tightly-coupled modules, or make a…
Agentic end-to-end test orchestrator — drive web/macOS flows, evaluate UX rubric, reconcile issues
$ npx -y skills add Kanevry/session-orchestrator --skill test --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/testContext preview
The summary Claude sees to decide when to auto-load this skill.
Agentic end-to-end test orchestrator — drive web/macOS flows, evaluate UX rubric, reconcile issues
name: test description: Agentic end-to-end test orchestrator — drive web/macOS flows, evaluate UX rubric, reconcile issues user-invocable: true argument-hint: "[scope|profile-name] [--since <git-ref>] [--full]" model: inherit
Run agentic end-to-end tests against the current project or a named target. The user invoked `/test` with arguments: **$ARGUMENTS**
This skill resolves a test target and profile, dispatches the appropriate driver (Playwright for web, Peekaboo for macOS), invokes the `ux-evaluator` agent against the captured artifacts, and reconciles findings with the open issue tracker. All logic lives in `skills/test-runner/SKILL.md` — this file is the user-facing entry point only.
`$ARGUMENTS` carries the recognised flags (`--target`, `--profile`, `--dry-run`, `--since`, `--full`) and an optional bare scope token. Parse it per § Argument Validation, resolve per § Argument Precedence Resolution, and only then hand the six-argument § Handoff Contract to `skills/test-runner/SKILL.md`, which owns all further resolution, driver dispatch, evaluation, and issue reconciliation.
Parse `$ARGUMENTS` before doing anything else.
Recognized flags and positional arguments:
**Conflict check:** If BOTH `--since` and `--full` are present, stop immediately and report:
Error: Cannot use --since with --full. Provide one, not both.
Do NOT proceed with test execution when this conflict is present.
If `$ARGUMENTS` contains an unrecognized flag (i.e. starts with `--` but is not one of the above), inform the user:
Unknown flag '<flag>'. Recognized flags: --target <name>, --profile <name>, --dry-run, --since <git-ref>, --full.
Then continue with the remaining valid arguments.
Resolve `target` and `profile` using the following precedence (highest → lowest). Stop at the first rule that produces a value for each variable.
1. **Explicit flags** — `--target <name>` sets `target`; `--profile <name>` sets `profile`. Highest priority. Both may be provided together. 2. **Profile from policy, target explicit** — if only `--target <name>` is provided (no `--profile`), pass `target` to the test-runner skill; the skill resolves the profile from `.orchestrator/policy/test-profiles.json` or its default. 3. **Target from policy, profile explicit** — if only `--profile <name>` is provided (no `--target`), pass `profile` to the test-runner skill; the skill resolves the target via convention-based detection. 4. **Positional token as profile** — if a bare positional argument (no `--` prefix) is present in `$ARGUMENTS`, treat it as `profile`. The test-runner skill resolves the target via convention. 5. **Session Config default** — if the Session Config block contains `test-runner.default-profile`, use that value for `profile`. Target is still resolved by the skill via convention. 6. **Interactive AUQ** — if no target or profile could be resolved from steps 1–5, proceed to the Profile Selection section below before invoking the skill.
**Only execute this section when steps 1–5 above produced neither `target` nor `profile`.**
Present the user with a structured choice via `AskUserQuestion`:
AskUserQuestion({
questions: [{
question: "Which test profile should be run?",
header: "Profil",
options: [
{ label: "smoke (Recommended)", description: "Quick sanity pass — key flows, axe critical/serious, console errors. The fastest of the four; run it first." },
{ label: "full", description: "All checks at full depth — slower, used before release." },
{ label: "a11y", description: "Accessibility-focused pass — axe-core exhaustive scan." },
{ label: "onboarding", description: "Onboarding step-count + Liquid Glass conformance checks." }
],
multiSelect: false
}]
})Set the user's selection as `profile`. The test-runner skill will resolve the target from convention.
**Invoke the test-runner skill.** Follow its instructions precisely.
Read `skills/test-runner/SKILL.md` and execute all phases in order. Do NOT skip Phase 0 (bootstrap gate). Do NOT inline driver artifact content into the coordinator context — all artifacts go to disk under the run directory.
Pass the following handoff contract to the skill entry point.
The six named arguments below are the canonical contract between this skill and `skills/test-runner/SKILL.md`. The skill reads them from context; do NOT reconstruct them inside the skill.
| Argument | Type | Value | |---|---|---| | `target` | `string \| undefined` | Resolved target name, or `undefined` if not yet known (skill resolves via convention) | | `profile` | `string \| undefined` | Resolved profile name, or `undefined` if not yet known (skill applies `test-runner.default-profile` or `smoke`) | | `dry_run` | `boolean` | `true` if `--dry-run` was passed; `false` otherwise | | `explicit_target` | `boolean` | `true` if `--target` was present in `$ARGUMENTS`; `false` otherwise | | `explicit_profile` | `boolean` | `true` if `--profile` was present in `$ARGUMENTS`; `false` otherwise | | `since_ref` | `string \| undefined` | Git ref from `--since <git-ref>`, or `undefined` if not provided |
The skill is the single sourc
Give your agents a working rhythm. You type three commands: /session reads your repository, your open issues and the last session, proposes what to work on, and waits for your correction.
Repo: Kanevry/session-orchestrator
Use when the user asks to improve architecture, find refactoring opportunities, surface deepening opportunities, consolidate tightly-coupled modules, or make a…
Use this skill when running an autonomous session-orchestration loop. Chains session-start → session-plan → wave-executor → session-end for N iterations with…
Use this skill when scaffolding the minimum repository structure required by session-orchestrator. Invoked automatically by the Bootstrap Gate when CLAUDE.md,…
Use when you have a feature idea but the scope or UX is still ambiguous — runs a lightweight Socratic design dialogue (3-5 AUQ rounds) and writes a spec…
Use when detecting drift between CLAUDE.md (or AGENTS.md, the Codex CLI alias) / _meta narrative and live repository state. Ten checks: absolute-path…