feat: add "Devin for Terminal" as a supported agent in skills CLI#928
Open
minatoaquaMK2 wants to merge 2 commits intovercel-labs:mainfrom
Open
feat: add "Devin for Terminal" as a supported agent in skills CLI#928minatoaquaMK2 wants to merge 2 commits intovercel-labs:mainfrom
minatoaquaMK2 wants to merge 2 commits intovercel-labs:mainfrom
Conversation
Register "Devin for Terminal" as the 42nd supported non-universal agent
in the skills CLI, enabling `skills add <repo> -a devin` and all
related commands (list, remove, sync, etc.).
Agent configuration:
- AgentType union: added 'devin' literal to src/types.ts
- Agent config: name 'devin', displayName 'Devin for Terminal',
skillsDir `.devin/skills` (project-level),
globalSkillsDir `~/.config/devin/skills` (XDG-style global),
detectInstalled via `existsSync(~/.config/devin)`
- Follows the goose pattern (non-universal agent + XDG config paths)
Skill discovery:
- Added `.devin/skills` to prioritySearchDirs in src/skills.ts
so discoverSkills() finds skills placed in `.devin/skills/<name>/`
Tests added (39 new tests, 441 total passing):
- tests/devin-agent.test.ts: 17 unit tests covering config fields,
detection logic (both branches), non-universal classification,
and uniqueness guards (no duplicate names/dirs)
- tests/devin-discovery.test.ts: 5 tests for skill discovery in
`.devin/skills/`, cross-agent discovery, and deduplication
- tests/devin-installer.test.ts: 17 integration tests for symlink
install, copy install, global path resolution, agent recognition,
listInstalledSkills attribution, and end-to-end consistency
Documentation & metadata:
- README.md: agent table updated (42 agents), discovery paths include
`.devin/skills/`, generated via `bun scripts/sync-agents.ts`
- package.json: 'devin' keyword added via sync script
- `bun scripts/validate-agents.ts`: passes ("All agents valid.")
Verification: 441 tests pass, 6 pre-existing type errors (no new),
Prettier formatting clean, validate-agents.ts passes.
Signed-off-by: minatoaquaMK2 <[email protected]>
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.
Register "Devin for Terminal" (https://cli.devin.ai/docs) as the 42nd supported non-universal agent in the skills CLI, enabling
skills add <repo> -a devinand all related commands (list, remove, sync, etc.).Agent configuration:
.devin/skills(project-level), globalSkillsDir~/.config/devin/skills(XDG-style global), detectInstalled viaexistsSync(~/.config/devin)Skill discovery:
.devin/skillsto prioritySearchDirs in src/skills.ts so discoverSkills() finds skills placed in.devin/skills/<name>/Tests added (39 new tests, 441 total passing):
.devin/skills/, cross-agent discovery, and deduplicationDocumentation & metadata:
.devin/skills/, generated viabun scripts/sync-agents.tsbun scripts/validate-agents.ts: passes ("All agents valid.")Verification: 441 tests pass, 6 pre-existing type errors (no new), Prettier formatting clean, validate-agents.ts passes.