feat(cli): packaged agent SKILL.md + oddish skill command - #1279
Draft
kyle-compute wants to merge 3 commits into
Draft
feat(cli): packaged agent SKILL.md + oddish skill command#1279kyle-compute wants to merge 3 commits into
kyle-compute wants to merge 3 commits into
Conversation
- Package assets/skills/oddish/SKILL.md in the wheel: a browse.sh-shaped agent guide (auth, atomic nop/oracle sweeps, monitoring, trigger QA via backfill-analysis / run --retry --qa then read verdict via status --json, pull evidence, exit codes, gotchas). Documents only the CLI surface that exists on this branch. - New local-only 'oddish skill' command prints the packaged guide, '--install [--dir]' copies it into a detected agent skills dir, '--path' prints its location. - Docs: DOCS.md agent-skill section, README command list, AGENTS.md maintenance rule now includes the packaged SKILL.md.
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Oddish previewCommit:
Vercel deployment URL: https://oddish-1gzxwe8ae.oddish.app Plan:
This comment is updated by the PR Preview workflow. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Ships a prebuilt agent guide inside the oddish package so an agent with
pip install oddishcan self-bootstrap CLI usage without fetching the repo.oddish/src/oddish/assets/skills/oddish/SKILL.md— packaged into the wheel (verified viauv build+unzip -l). Structure: setup/auth rules, core invariants (frozen task version per comparison, nop/oracle baseline gating, task-scoped QA), five workflows with exact--jsoncommands (submit sweep → monitor → trigger QA viabackfill-analysis/run --retry --qathen readverdict_status/verdict/per-trialanalysis.classificationfromstatus --json→ pull evidence → retry/cancel), gotchas. Documents only the CLI surface that exists on this branch.oddish skill— new local-only command (no API key): prints the packaged SKILL.md to stdout,--install [--dir]copies it into a detected agent skills dir (./.claude/skills,~/.claude/skills,~/.kimi-code/skills,~/.agents/skills),--pathprints its location. Help text disambiguates from the probe skills library.The agent QA recipe this enables:
Tests / verification
tests/test_cli_skill.py— frontmatter validity, print/install/path: 5 passed.ruff checkclean on touched files.oddish/assets/skills/oddish/SKILL.md.Docs
DOCS.md: new "Agent skill" section + command list.oddish/README.md: command list.AGENTS.md: CLI-surface maintenance rule now includes the packaged SKILL.md.