fix(targets): nest colon-separated command names into directories#251
Open
mvanhorn wants to merge 1 commit intoEveryInc:mainfrom
Open
fix(targets): nest colon-separated command names into directories#251mvanhorn wants to merge 1 commit intoEveryInc:mainfrom
mvanhorn wants to merge 1 commit intoEveryInc:mainfrom
Conversation
On Windows/NTFS, colons are reserved for alternate data streams, so filenames like "ce:plan.md" are invalid. Split colon-separated command names into nested directories (e.g. "ce:plan" -> "ce/plan.md"), matching the approach already used by the Qwen target. Applied to opencode, droid, and gemini targets. Fixes EveryInc#226 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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
ce:plan) into nested directories (e.g.ce/plan.md) instead of using colons in filenamessrc/targets/qwen.ts:35-41)Fixes #226
Changes
src/targets/opencode.ts: SplitcommandFile.nameon:and create nested directoriessrc/targets/droid.ts: Same fixsrc/targets/gemini.ts: Same fix (uses.tomlextension)Before
After
Commands without colons (e.g.
deepen-plan,triage) are unaffected.Test plan
bun testpasses (312/312 existing tests pass)ce:*commands appearThis contribution was developed with AI assistance (Claude Code).