v8-runner
SkillDev toolsUse when Codex needs to operate v8-runner on local 1C projects from the CLI: configure v8project.yaml, initialize infobases or EDT workspaces, build Designer or EDT sources, run syntax checks and tests, dump infobase changes, convert source formats, load or export artifacts, launch 1C clients, or choose safe 1C automation command sequences.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the v8-runner skill
What this skill tells your AI
The instructions your AI receives, as published by alkoleft/v8-runner-rust in SKILL/SKILL.md and read by ahel’s review.
Use this skill to operate v8-runner as the automation layer for local 1C development projects.
Keep this file as the decision entrypoint. Load only the reference file that matches the task:
references/command-selection.mdfor choosing the right command sequence.references/config-and-backends.mdforv8project.yaml, source sets, formats, builders, and backend limits.references/project-workflows.mdfor common build, syntax, dump, launch, and source sync workflows across Designer and EDT projects.references/file-and-artifact-workflows.mdfor dump, convert, load, make/artifacts, and staged publication.references/testing.mdfor YaXUnit, Vanessa Automation, syntax checks, and artifacts.references/troubleshooting.mdfor setup failures, stale state, and environment diagnostics.
Command Form
Use the available v8-runner binary directly. If it is not on PATH, ask for the binary path or use a project-provided wrapper script.
v8project.yaml is the default project config name. A sibling v8project.local.yaml is loaded automatically for machine-local paths, credentials, tools, tests, and MCP settings. Do not pass --config v8project.yaml unless the user explicitly wants a non-default command shape or the active config path differs from the default; never pass v8project.local.yaml as --config.
Generated v8project.yaml files include a yaml-language-server modeline that points to the published master JSON Schema artifact. config init and bootstrap also create sibling v8project.local.yaml with the local overlay schema modeline and add it to .gitignore when needed.
Use JSON output only when another tool, script, or final answer needs structured results:
v8-runner --json-message build
Use text output for direct human diagnostics.
Use v8-runner version or v8-runner --version to check the installed application version; it does not require v8project.yaml.
Useful global flags:
--versionto print the application version and exit.--config <CONFIG>when the active config is not./v8project.yaml.--json-messagefor machine-readable CLI envelopes.--workdir <WORKDIR>to overrideworkPath; it wins overv8project.local.yaml.--clean-before-executionto clear logs before execution.--log-level <error|warn|info|debug|trace>for diagnostics.--no-colorfor plain text output.
First Pass
- Check whether
v8project.yamlexists in the 1C project root. - If it is missing and source files already exist, run the narrowest
v8-runner config init ...command that fits the project shape. - If it is missing and the current source of truth is an existing infobase, run
v8-runner bootstrap --connection <CONNECTION> --platform-version <VERSION>. - Inspect generated
v8project.yamland keep machine-local overrides in generatedv8project.local.yaml. - Run
v8-runner initonly when the file infobase or EDT workspace needs to be created. - Run the narrowest validation command that answers the user's goal.
Useful bootstrap commands:
v8-runner config init
v8-runner config init --connection "File=build/ib"
v8-runner config init --format edt
v8-runner config init --builder IBCMD
v8-runner bootstrap --connection "File=/path/to/ib" --platform-version 8.3.27
v8-runner tools download yaxunit --sources
v8-runner tools download vanessa
v8-runner tools download client-mcp --sources
v8-runner init
Default Use-Case Routing
- Source files changed and infobase may be stale: run
v8-runner build. - Only one source-set changed: use commands that accept
--source-set <NAME>instead of rebuilding or materializing everything. - Branch switch, rebase, large object moves, stale source-backed tool extension state, or suspicious incremental state: run
v8-runner build --full-rebuild. - Syntax check: inspect
formatandbuilder, then choosesyntax designer-modules,syntax designer-config, orsyntax edt. - Behavior validation: run the relevant
v8-runner test ...command; tests build first unless the caller explicitly requests--no-buildfor an already prepared infobase. - Missing local YAxUnit, Vanessa Automation, or onec-client-mcp-devkit setup: run
v8-runner tools download yaxunit --sources,v8-runner tools download vanessa, andv8-runner tools download client-mcp --sourcesfor source-backed setup. Omit--sourcesonyaxunitorclient-mcpto download.cfeartifacts whenbuilder=DESIGNER. - Vanessa Automation debugging or scenario authoring: use
v8-runner launch mcp va --wait-ready ...to start the client MCP server with VA loaded and verify the VA MCP tools before driving.featureworkflows. - Extension properties need synchronization: use
v8-runner extensionsorextensions --name <SOURCE_SET>. - Infobase changes need to become Git-visible files: check
git status, then run the relevantv8-runner dump ...command. - Source files need conversion between Designer and EDT: use
v8-runner convert; this is CLI-only and does not use the infobase. - Existing
.cfor.cfeartifacts need to be applied to an infobase: usev8-runner load .... - Release artifacts need to be exported or external artifacts published: use
v8-runner make ...or theartifactsalias. - Need a 1C UI session: use
v8-runner launch designer,launch thin,launch thick, orlaunch ordinary. - Need an observable local external EPF runtime gate: use
launch thin --execute <file.epf> --output <out> --stderr-output <stderr> --wait-for-exit --wait-timeout-ms <ms>. This opt-in mode is limited to explicit.epffiles, reports PID/exit-or-timeout/artifacts, treats timeout as a CLI failure after terminating the client group, and rejects raw or configured/C,/Execute, and/Outaliases; callers must inspect the reported exit code because non-zero EPF exit is observational rather than a CLI failure; plain launch remains asynchronous. - Need onec-client-mcp-devkit launched inside 1C without VA authoring: use
v8-runner launch mcp --wait-ready ...when the caller needs a ready MCP endpoint; tune readiness withtools.client_mcp.wait_ready_timeout_mswhen the project needs a shorter or longer wait, raiseexecution_timeouttoo when extending beyond the global command budget, and use barelaunch mcponly for fire-and-forget startup.
Guardrails
- Do not delete or recreate an infobase, workspace, temp directory, or generated state unless the user explicitly asks or the command itself is the documented recovery path.
- Do not invent raw
1cv8,ibcmd, or1cedtcliflags; prefer thev8-runnercommand surface. - Check
git statusbeforedumpwhen the result may overwrite or mix with existing source changes. - Preserve failed test artifacts under
workPath/temp/<runner-id>/runs/<run-id>/for diagnosis instead of cleaning them immediately. - Report missing local 1C utilities as environment/setup issues, not as project source failures.
- Keep final answers concrete: command run, result, relevant artifact path, and any follow-up command.
Output Discipline
When reporting results, distinguish:
- project source failures;
- v8-runner command/config failures;
- local 1C platform, EDT, IBCMD, or tool discovery failures;
- test failures and their artifact paths.
Signals
- GitHub stars
- 60
- Forks
- 19
- Last commit
- Aug 2026
Advanced
- Catalog kind
- skill
- Gateway key
v8-runner- Source
- github.com/alkoleft/v8-runner-rust