feat(adapters): add Cline CLI adapter - #20
Merged
Conversation
Cline CLI installs skills via the open Agent Skills standard (SKILL.md), so the adapter is README-only - no manifest. Documents `cline skill add SHcommit/ADR-toolkit` plus a manual symlink fallback. Manually verified against Cline CLI 3.0.61: discovery, install, and the installed script layer (preflight/init/validate) all return ok:true. Closes #19
1 task
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
Adds a
adapters/cline/adapter so Cline CLI (and ClinePass users running it) can install theskills/adr-toolkitpackage.Cline CLI installs skills through the open Agent Skills standard — the same
SKILL.md+skills/convention this toolkit already ships — rather than a harness-specific manifest. So the adapter is README-only (likeadapters/generic/): noplugin.json/gemini-extension.jsonequivalent exists for Cline skills.Changes
adapters/cline/README.md— install docs (cline skill add SHcommit/ADR-toolkit+ manual symlink fallback) and verification status.tests/unit/test_cline_adapter.py— structural tests (README + SKILL.md frontmatter meets Cline'sname/descriptionrequirements).README.md— Cline CLI row in the harness Install table.tests/unit/test_readme.py— asserts the Install table lists Cline CLI..gitignore— ignores.cline/skills/adr-toolkitinstall-time symlink.changelog.md/handoff.md— updated per AGENTS.md.Verification
python3 -m pytest tests/unit tests/integration -q→ 545 passedpython3 scripts/sync_version.py --check→ OKcline --version) in an isolatedHOME:cline skill add SHcommit/ADR-toolkit --listfindsadr-toolkit,--yes --globalinstalls it to~/.agents/skills/adr-toolkit/, and the installed script layer returnsok: trueforpreflight/init/validate.Closes #19