feat: migrate MCP prompts and tools into Agent Skills - #129
Conversation
|
/gcbrun |
There was a problem hiding this comment.
Code Review
This pull request introduces a major refactoring of the context generation logic, transitioning from specialized generation tools to a unified context-generation-guide skill. This change affects the bootstrap and hill-climb workflows, which now leverage this guide for phrase extraction and parameterization. Additionally, the PR includes a comprehensive set of reference documentation for different SQL dialects (PostgreSQL, MySQL, GoogleSQL) and removes several legacy generation tools and prompts. Feedback focuses on addressing a missing documentation section in the new skill guide and correcting a placeholder inconsistency in the GoogleSQL value search reference to align with the repository style guide.
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
1 similar comment
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
…ills (#142) ## Summary Removes the legacy `/autoctx:*` and `/generate_targeted_*` slash command definitions now that the same workflows are exposed as Agent Skills (migration landed in #129). Updates all docs that still referenced the slash-command syntax. > **Breaking change for Gemini CLI users on v0.5.1.** The `.toml` > slash commands (`/autoctx:init`, `/autoctx:bootstrap`, etc.) shipped > in v0.5.1 and are removed here. After the next release lands, users > must activate the equivalent skill instead — invoke `autoctx-init` > by name, or ask the agent in natural language (e.g. "initialize > autoctx for my database"). > > The Claude Code `.md` slash commands were added post-v0.5.1 (in #136) > and never appeared in a release, so removing them is internal cleanup. ## Changes - Delete `plugin/commands/` (18 `.md`/`.toml` files covering autoctx, generate_targeted_*, and setup-database-connection). - Drop the `cp -r plugin/commands/ staging/commands/` step from `.github/workflows/release.yml` — there's no `commands/` directory to bundle anymore. - Update `README.md`, `plugin/GEMINI.md`, and `plugin/skills/autoctx-hillclimb/SKILL.md` to reference skill names (`autoctx-init`, `autoctx-bootstrap`, etc.) instead of slash commands (`/autoctx:init`, `/autoctx:bootstrap`).
This PR introduces the following changes