Conversation
BREAKING CHANGE: Package renamed from `@premierstudio/ai-hooks` (packages/core) to `@premierstudio/ai-hooks` (packages/hooks). The `packages/plannable` package has been removed entirely. Introduces 5 new engine packages alongside the existing hook engine: - `@premierstudio/ai-mcp` — MCP server configuration management (stdio/SSE transports) - `@premierstudio/ai-agents` — Agent configuration with markdown adapter factory - `@premierstudio/ai-skills` — Skills/prompts configuration (name + content as markdown) - `@premierstudio/ai-rules` — Project rules with scoping system (always/glob/manual/agent) - `@premierstudio/ai-tools` — Unified CLI dispatcher routing to all 5 engines All packages follow the same adapter-registry-CLI pattern. Each engine supports 9+ AI tools (Claude Code, Codex, Cursor, Gemini CLI, Kiro, OpenCode, Cline, Factory Droid, Amp, and more). 83 test files, 1718 tests, 100% coverage. Also adds CLAUDE.md hierarchy for AI-assisted development, .claude/settings.json with permissions and PostToolUse formatting hook, and .claude/commands/ skills.
…with --force override - All 5 packages (hooks, mcp, agents, skills, rules) now call adapter.detect() when --tools is specified, skipping undetected tools with a warning - Added --force flag to bypass detection checks for --tools across all packages - Rules package: changed resolveAdapters from sync getAll() to async detectAll(), so default (no --tools) only targets detected tools instead of all registered adapters - Updated CLI tests in all 5 packages with install guard and --force coverage
b365d6f to
9c59756
Compare
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
packages/core→packages/hooks, removespackages/plannable@premierstudio/ai-mcp,@premierstudio/ai-agents,@premierstudio/ai-skills,@premierstudio/ai-rules,@premierstudio/ai-tools(unified CLI).claude/settings.json, and.claude/commands/skills for AI-assisted developmentBREAKING CHANGES
packages/coredirectory renamed topackages/hooks(npm package name@premierstudio/ai-hooksunchanged)packages/plannableremoved entirelyTest plan
npm run checkpasses (lint, format, typecheck, test)npm run buildproduces all 6 package dist outputsai-tools,ai-hooks,ai-mcp,ai-skills,ai-agents,ai-rules