chore: migration stub for ShellSecurity rename (0.1.5)#13
Merged
Conversation
Replaces the audit flow with a migration notice. The package has been renamed to @kilocode/shell-security; this release exists only to tell existing users where to go.
- index.ts: tool and slash command both return the migration notice. No audit, no auth, no network.
- Deleted src/audit.ts, src/client.ts, src/platform.ts, and src/auth/
(device-auth, token-store). Used git rm so the commit can be cleanly
reverted on the renamed shell-security repo to restore these modules.
- Deleted matching tests. Only test/version.test.ts remains (7 tests).
- openclaw.plugin.json: description and name reflect deprecation;
configSchema removed (stub requires no config).
- README.md: replaced with a migration page pointing at the new package.
- CHANGELOG.md: new [0.1.5] section describes the stub; retro-dated
the previously-undated channel-forwarding entries to [0.1.4].
Code Review SummaryStatus: No Issues Found | Recommendation: Merge Files Reviewed (13 files)
Reviewed by gpt-5.4-20260305 · 540,525 tokens |
pandemicsyn
approved these changes
Apr 22, 2026
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
Converts
@kilocode/openclaw-security-advisorinto a migration stub. Version 0.1.5 exists solely to tell existing users where to go. The plugin has been renamed to@kilocode/shell-security; the new package ships from a renamed GitHub repo in a follow-up.What changes
index.tsis now a ~100 line stub. Both the/security-checkupslash command and thekilocode_security_advisortool return a short migration notice. No audit, no auth flow, no network call, no side effects.src/audit.ts,src/client.ts,src/platform.ts,src/auth/device-auth.ts,src/auth/token-store.tsremoved viagit rm, so the commit is cleanly revertable on the renamed repo.test/version.test.ts(7 tests) remains.openclaw.plugin.jsonname and description reflect the deprecation.configSchemaremoved (stub takes no config).README.mdreplaced with a migration page.CHANGELOG.mdadds a[0.1.5]section and retrodates the previously undated channel forwarding entries as[0.1.4].What happens to existing users
/security-checkupor natural language invocation returns the migration notice with install commands for the new plugin.@kilocode/shell-securityfreshTest plan
bun run typecheckbun run format:checkbun test(7 pass, 0 fail)/security-checkupreturns the migration notice and nothing elsenpm deprecate '@kilocode/openclaw-security-advisor@*' '...'so installs of any version see the deprecation warningNext after this merges
channel=latest,bump=patch(resolves to 0.1.5).gh release create v0.1.5 --verify-tag --generate-notesper the existing RELEASING.md banner.npm deprecatethe package.shell-security.@kilocode/shell-security@0.2.0from the renamed repo with the audit flow restored.