revert(skills): remove stray .agents/skills/exa-search symlink#74
Merged
Conversation
PR #70 landed a single `.agents/skills/exa-search/SKILL.md -> ../../../src/skills/exa-search/skill.md` symlink as a preview of the OpenCode dual-path pattern. The matching runtime + remaining skill symlinks were supposed to come in via #66, but #66's review found the files there aren't real symlinks. Until #66 is reworked, this lone entry is inconsistent (the only `.agents/skills/` member on main) and inert at runtime — `prompts.py::_build_skill_catalog` globs `src/skills/` only. Remove it now; reintroduce the full set when #66 is fixed.
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.
Why
PR #70 (merged) landed a single
.agents/skills/exa-search/SKILL.mdsymlink as a preview of the OpenCode dual-path pattern, ahead of the runtime support that was supposed to come in via #66. Review of #66 found the SKILL.md files there aren't real symlinks (see #66 (comment)), so #66 needs rework.In the meantime this lone entry is:
.agents/skills/member on main, while every other skill lives only atsrc/skills/<name>/skill.md.src/runtime/prompts.py::_build_skill_catalogglobssrc/skills/only, so the.agents/skills/symlink isn't read by the daemon.Remove it now to keep the tree consistent. Reintroduce the full dual-path set in one go when #66 is reworked with real symlinks + matching runtime support.
Diff
One file:
.agents/skills/exa-search/SKILL.md(symlink) deleted.src/skills/exa-search/skill.md(the real source) is untouched, so the skill itself still works exactly as on main today.How to verify
git ls-tree HEAD .agents/→ empty / no exa-search dirpytest tests/runtime/test_source_integrity.py— exa-search picked up viasrc/skills/exa-search/skill.mdlike every other skillBypass note
Admin-merging to land before #66 is reworked; the change is a one-file deletion of an inert symlink.