feat: add proactive Skill optimization workflow - #10
Merged
Merged
Conversation
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
zwliJay
force-pushed
the
codex/skillhone-v2
branch
from
September 18, 2026 03:50
28f3305 to
d0f823f
Compare
zwliJay
force-pushed
the
codex/skillhone-v2
branch
from
September 18, 2026 04:12
d0f823f to
7a4db21
Compare
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.
Summary
SkillHone can now capture reproducible Skill defects during normal Agent work and turn them into reviewable local repairs. Any CLI-capable Agent can record an Issue; the configured queue dispatches a focused DeepSeek Harness repair and preserves the Issue, Run, test, commit, diff, PR, and Wiki history for review.
What changed
skillhone initand import/sync modes for Codex, Claude Code, Cursor, and other Skill-capable Agents.@deepseek-ai/dsh@0.1.5-rc.2repair runtime while keeping model and credential configuration owned by Harness.Reproduction
The public example recreates the Phoenix tracing Skill before its broken reference links were fixed:
python3 examples/phoenix-tracing/prepare_fixture.py /tmp/phoenix-tracing cd /tmp/phoenix-tracing python3 .test/test_reference_links.pyThe baseline fails because four local reference targets are missing. During normal Agent use, the bundled routing Skill records that defect, dispatches the queued repair, reruns the linked regression test, and creates a local PR for review.
Validation and results
npm testmain; the unmerged repair remains isolated on its PR branchgitleaks dir . --redact --no-banner: no leaks foundgitleaks git --redact --no-banner --log-opts=<main>..HEAD: no leaks foundpnpm audit --prod: no known vulnerabilitiesnpm pack --dry-run: 51 files, approximately 128 KB, no examples, datasets, run artifacts, or runtime npm dependenciesgit diff --check: passedEffect and limits
Agents no longer need a separate hosting service to record and review Skill maintenance. Repairs remain local and auditable: SkillHone does not push a Skill repository, and review-mode PRs are not merged without an explicit user decision. DeepSeek Harness is installed only when repair execution is requested; other Agents interact through the runtime-neutral CLI and bundled Skills.
Review checklist
main.git diff --check.