chore(agent_platform): remove stub hooks/plugins/skills + ship AUDIT.md#1721
Merged
chore(agent_platform): remove stub hooks/plugins/skills + ship AUDIT.md#1721
Conversation
The README previously warned that opensin_agent_platform overlaps with
opensin_core on 'hooks', 'plugins', and 'skills'. Audit result:
opensin_core/hooks: 294 LOC (events, executor, session_store)
opensin_agent_platform/src/hooks: 16 LOC stub __init__.py
opensin_core/plugins: 281 LOC (base, manager, types)
opensin_agent_platform/src/plugins: 16 LOC stub __init__.py
opensin_core/skills: 878 LOC (cli, core, models, scanner, sources)
opensin_agent_platform/src/skills: 16 LOC stub __init__.py
No logic exists in the three stub folders. Removing them makes the
'overlap' story accurate instead of scary.
The rest of opensin_agent_platform (~66 py files across 28 subdirs) is a
Python terminal UI + agent framework with NO counterpart in opensin_core
— assistant, bridge, buddy, cli, coordinator, entrypoints, keybindings,
memdir, screens, vim, voice, etc. That is unique territory and is kept.
Ships:
AUDIT.md full overlap audit + three concrete next-step options
(retire / productize / absorb)
README.md rewritten to reflect reality: reference material only,
pending strategic decision about whether a Python terminal
surface is wanted alongside OpenSIN-Code (TypeScript CLI)
Removes: src/hooks, src/plugins, src/skills (16 LOC stubs each)
Co-authored-by: v0[bot] <v0[bot]@users.noreply.github.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
Resolves the "opensin_agent_platform overlaps with opensin_core" follow-up from the April 2026 consolidation.
What the audit found
The overlap was almost entirely a false alarm. The three namespaces that the original README flagged were 16-line stub
__init__.pyfiles with no logic. The real implementations live inopensin_core/{hooks,plugins,skills}/.hookspluginsskillsThe rest of
opensin_agent_platform/src/(~66 .py files across 28 subdirs —assistant,bridge,buddy,cli,coordinator,entrypoints,keybindings,memdir,screens,vim,voice,outputStyles, etc.) has no counterpart in opensin_core. It is a Python terminal UI + agent framework, not a runtime engine. Kept as-is.Files
OpenSIN-Code(the TypeScript CLI).src/hooks/,src/plugins/,src/skills/— three stub directories.What this PR is NOT
It does not retire, productize, or absorb the folder — that is the next PR once the strategic question is answered. This PR just makes the overlap story accurate and puts the three concrete paths forward on paper.
Co-authored-by: v0[bot] <v0[bot]@users.noreply.github.com>