feat(install): add IBM Bob platform support (#1725)#1850
Open
Animesh0764 wants to merge 1 commit into
Open
Conversation
graphify install --platform bob installs the skill to Bob's global skills dir (~/.bob/skills/graphify/); graphify bob install writes the project-scoped skill (.bob/skills/graphify/) plus an always-on rules file at .bob/rules/graphify.md - Bob loads every file under .bob/rules/ as always-on context and has no PreToolUse-hook equivalent, so the rules file is the always-on mechanism. Rides kiro's host-neutral skill bundle (same precedent as hermes->claw, trae-cn->trae), so no skillgen changes are needed. graphify bob uninstall, the all-platform graphify uninstall, and --project scope remove both files.
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.
Closes #1725
Adds IBM Bob (AI IDE/CLI) as a supported platform.
What this adds
graphify install --platform bob— installs the skill to Bob's global skills dir (~/.bob/skills/graphify/SKILL.md)graphify bob install— project-scoped: skill at.bob/skills/graphify/+ an always-on rules file at.bob/rules/graphify.mdgraphify bob uninstall,graphify install --project --platform bob, and the all-platformgraphify uninstallall handle Bob;graphify uninstall --projectpicks it up automatically via_PLATFORM_CONFIGDesign notes
skill-kiro.md+skill_refs: "kiro"), same precedent as hermes→claw and trae-cn→trae: Bob uses the sameagent-tool dispatch and the kiro body contains no host-specific wording, so no skillgen changes or new rendered artifacts are needed.
_BOB_RULES, Devin-style) rather than a skillgenalways_on/fragment — the always-on roundtripvalidator is pinned to the frozen v8 baseline, which new blocks can't join.
.bob/rules/files are loaded alphabetically as always-on context, and Bob has no PreToolUse-hook equivalent, so the rules file is the always-onmechanism.
.bob/skills/<name>/SKILL.md(project) /~/.bob/skills/(global),SKILL.mdfrontmatter needs only
name+description, sidecar files are supported — so the splitreferences/bundle works as-is.Testing
tests/test_bob.py(user/project scope install, references sidecar, rules content, idempotency, uninstall, config sanity, helptext) — all pass
test_install_roundtrip,test_install_references,test_wheel_packaging) — all passverified identical on a clean tree — none related to this change
graphify bob installlays down SKILL.md + 8 references + version stamp + rules file;graphify bob uninstallremoves everything