mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 08:02:28 +00:00
* skills: rewrite the seven non-orchestration guides to one outcome-first standard
Every guide leads with Result / Done / Safe failure, states conditions instead of case lists, keeps one done bar and one autonomy envelope, and loads references at the point of use via `skills get <topic> --full`. orca-cli drops from 424 to 260 always-loaded lines with three references; orca-per-workspace-env from 794 to 397 with five.
Defects fixed in shipped guides: `emulator camera` (no such command), iOS `permissions` (backend refuses it), Android pane described as in development, `relayGracePeriodSeconds: 0` documented as immediate teardown (it is unbounded), doctor `ok: true` hiding `warn`, an SSH exemplar setting both `jumpHost` and `proxyCommand`, a provisioned-root fetch from `origin`, and the Linear unconfirmed-write rule keyed on four verbs when ten emit it.
The resolver ladder, placeholder rule, and older-binary fallback shared by every installable SKILL.md now come from one skill-stubs/_shared/cli-resolution.md fragment composed by the generator, which also bundles per-guide references into --full. New guards: every ORCA invocation and flag resolves against COMMAND_SPECS, descriptions carry no angle-bracket tokens, reference routing is checked both ways, and an always-loaded size ratchet (300 lines) that guides may leave but never join.
* skills: address review on the SSH recipe and the parity guard
- ssh-host create script: route the bootstrap ssh through the chosen jump host or proxy command, refuse both at once, use StrictHostKeyChecking=accept-new instead of a blind ssh-keyscan append, and pass gh_token/project_root/repo_url/repo_ref to the remote bash via printf %q so a quote in a value cannot break out of the command.
- per-workspace-env envelope: the step-10 workspace test the user asked for is no longer forbidden by the same paragraph.
- linear guides: name the full verb, ORCA linear list-issues.
- parity guard: a prefix reference such as ORCA linear --help or ORCA emulator --webcam now has its flags checked against every command under that prefix; only an exact path or an explicit ... was checked before.
* skills: tighten prose in the seven rewritten guides
Shorter outcome spines, one idea per sentence, no restated rationale after a rule. No rule, command, or pinned phrase changes; 47 net lines fewer across the guides and references.
* skills: route orca-cli and per-workspace-env gates through --reference
Both guides told agents to load --full at a gate because the per-reference
selector did not exist when they were written. Now that main serves
`skills get <topic> --reference references/<file>.md`, load only the
named file and keep --full as the fallback for an older CLI, matching the
orchestration kernel.
* skills: drop outcome-spine boilerplate from the CLI-wrapper guides
The Result/Done/Safe-failure preambles and Next Action closers restated
rules the body already carries. Agents stop fine without them, and for
a CLI wrapper the command surface is the guide. Keeps the one substantive
rule computer-use's Done block added (never report unverified as success)
inside Action Rules. orchestration and per-workspace-env keep theirs:
those are multi-step workflows where the done bar is load-bearing.
(cherry picked from commit 44a74baf73)
* skills: trim the guides and stubs to what agents actually need
- Drop the Result/Done/Safe-failure preambles and Next Action closers from
the six CLI-wrapper guides; the one substantive rule (never report an
unverified computer-use action as success) moves into Action Rules.
- Drop the 'guide may be stale, trust --help' lines: the guide is served by
the binary that runs the commands, so it cannot be stale relative to it.
- Drop the status --json / open --json preflight from every guide; the stub
no-guessing paragraph now says to start Orca only when a command reports
it is not running.
- Cut the ORCA placeholder paragraph in each guide to one line that points
back at the stub's resolution.
- Trim the orchestration, orca-cli, and computer-use descriptions to trigger
phrases plus one line of scope.
- Remove the older-binary fallback section from every stub (and its two
shared blocks); a binary without skills get gets one sentence.
- Remove the guide size ratchet test.
* skills: apply independent review cleanup
* skills: clarify guide loading and Linear command discovery
* skills: harden environment recipe examples
* test: complete branch rename journal doubles
* skills: clarify custom Codex launch and refresh model example
* test: deduplicate journal fix now present on main
115 lines
5.0 KiB
JavaScript
115 lines
5.0 KiB
JavaScript
import { readFileSync } from 'node:fs'
|
|
import { join, resolve } from 'node:path'
|
|
import { describe, expect, it } from 'vitest'
|
|
import { BUNDLED_SKILL_GUIDES } from '../../src/cli/bundled-skill-guides'
|
|
|
|
const projectDir = resolve(import.meta.dirname, '../..')
|
|
// Why: computer-use now ships a hybrid discovery stub, so its version-sensitive command
|
|
// guidance lives in the authoritative guide source — assert that content there. The
|
|
// installable stub projection is checked separately below.
|
|
const guidePath = join(projectDir, 'skill-guides', 'computer-use.md')
|
|
const stubPath = join(projectDir, 'skills', 'computer-use', 'SKILL.md')
|
|
const bundledGuide = BUNDLED_SKILL_GUIDES.find((guide) => guide.name === 'computer-use')?.markdown
|
|
|
|
describe('computer-use skill guidance', () => {
|
|
it('keeps discovery scoped to desktop control and out of the embedded browser', () => {
|
|
const frontmatter = /^---\n([\s\S]*?)\n---\n/u.exec(readFileSync(guidePath, 'utf8'))?.[1] ?? ''
|
|
const description = frontmatter.replace(/\s+/gu, ' ')
|
|
|
|
expect(description).toContain('OS/window-level inspection and input')
|
|
expect(description).toContain('external browser window')
|
|
expect(description).toContain("Not for Orca's embedded browser (use `orca-cli`)")
|
|
expect(description).toContain('page-only automation (use Playwright or CDP)')
|
|
expect(description).not.toContain('read Slack')
|
|
expect(description).not.toContain('get app state')
|
|
})
|
|
|
|
it('keeps web-app targeting on the computer-use surface', () => {
|
|
const skill = readFileSync(guidePath, 'utf8')
|
|
|
|
expect(skill).toContain('Use this skill for desktop UI through `orca computer`')
|
|
expect(skill).toContain('external desktop browser window that needs desktop-level control')
|
|
expect(skill).not.toMatch(/\borca goto\b/iu)
|
|
expect(skill).not.toMatch(/\borca snapshot\b/iu)
|
|
expect(skill).not.toMatch(/\borca click\b/iu)
|
|
expect(skill).not.toMatch(/\borca fill\b/iu)
|
|
})
|
|
|
|
it('warns agents to verify browser-hosted form focus before drafting text', () => {
|
|
const skill = readFileSync(guidePath, 'utf8')
|
|
|
|
expect(skill).toContain('For browser-hosted forms such as Gmail compose')
|
|
expect(skill).toContain('verify the focused UI element after each field action')
|
|
expect(skill).toContain('Prefer `paste-text` into the verified focused field')
|
|
})
|
|
|
|
it('warns agents about occluded Linux and Windows screenshots', () => {
|
|
const skill = readFileSync(guidePath, 'utf8')
|
|
|
|
expect(skill).toContain('On Linux and Windows')
|
|
expect(skill).toContain('use `--restore-window` so another window does not cover')
|
|
expect(skill).toContain('trust the tree over potentially occluded pixels')
|
|
})
|
|
|
|
it('points JSON users to the public accessibility-tree field', () => {
|
|
const skill = readFileSync(guidePath, 'utf8')
|
|
|
|
expect(skill).toContain('`result.snapshot.treeText`')
|
|
expect(skill).not.toContain('`result.elements`')
|
|
})
|
|
|
|
it('explains how JSON and pretty output handle screenshots', () => {
|
|
expect(bundledGuide).toBeDefined()
|
|
|
|
for (const skill of [readFileSync(guidePath, 'utf8'), bundledGuide]) {
|
|
expect(skill).toContain('request screenshots by default unless `--no-screenshot`')
|
|
expect(skill).toContain('A successful `--json` capture')
|
|
expect(skill).toContain('`result.screenshot.path`')
|
|
expect(skill).toContain('inline base64 `result.screenshot.data`')
|
|
expect(skill).toContain('Pretty output does not save')
|
|
}
|
|
})
|
|
|
|
it('requires atomic modifier-click actions in the source and bundled guide', () => {
|
|
expect(bundledGuide).toBeDefined()
|
|
|
|
for (const skill of [readFileSync(guidePath, 'utf8'), bundledGuide]) {
|
|
expect(skill).toContain('click --modifiers <chord>')
|
|
expect(skill).toContain('Never synthesize separate modifier-down and modifier-up commands')
|
|
}
|
|
})
|
|
})
|
|
|
|
describe('computer-use install stub', () => {
|
|
it('points at the version-matched guide and preserves the safe resolver', () => {
|
|
const stub = readFileSync(stubPath, 'utf8')
|
|
|
|
expect(stub).toContain('discovery stub')
|
|
expect(stub).toContain('ORCA skills get computer-use')
|
|
// The safe CLI-resolution contract must survive in the stub, never a bare `orca`.
|
|
expect(stub).toContain('ORCA_CLI_COMMAND')
|
|
expect(stub).toContain('orca-dev')
|
|
expect(stub).toContain('orca-ide')
|
|
expect(stub).toContain('GNOME Orca screen reader')
|
|
expect(stub).not.toMatch(/^orca /mu)
|
|
})
|
|
|
|
it('drops the changing command reference from the installable file', () => {
|
|
const stub = readFileSync(stubPath, 'utf8')
|
|
const guide = readFileSync(guidePath, 'utf8')
|
|
|
|
// Version-sensitive command detail lives in the binary-served guide now, not here.
|
|
expect(stub).not.toContain('result.snapshot.treeText')
|
|
expect(stub).not.toContain('--restore-window')
|
|
expect(stub.length).toBeLessThan(guide.length)
|
|
})
|
|
|
|
it('keeps the routing frontmatter identical to the guide', () => {
|
|
const frontmatter = (text) => /^---\n[\s\S]*?\n---\n/u.exec(text)[0]
|
|
|
|
expect(frontmatter(readFileSync(stubPath, 'utf8'))).toBe(
|
|
frontmatter(readFileSync(guidePath, 'utf8'))
|
|
)
|
|
})
|
|
})
|