feat(code-intelligence): cross-reference code-intelligence plugin + host setup#27
Merged
Merged
Conversation
…d host setup terraform-skill is the Provider half of a Protocol/Provider split: it owns the terraform-ls capability matrix, routing, rename workflow, and now the ecosystem setup. The generic discipline (position anchoring, degradation gate, disclosure, anti-phantom-shim) is single-sourced in the companion code-intelligence plugin on the same marketplace. - SKILL.md + references/code-intelligence-lsp.md: soft cross-reference to the code-intelligence plugin; stays fully self-contained without it - references/code-intelligence-lsp.md: new Setup section (terraform-ls binary, ENABLE_LSP_TOOL, a position-based LSP transport, doctor/manual verification) so users need no glue instructions Tests: existing Scenario 17 (Code Navigation and Safe Rename) already covers the behavioral contract; this change is doc organization within an already-tested area and introduces no new agent behavior, so no new scenario is added (per CONTRIBUTING: no duplicate/untested additions).
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.
What
Establishes terraform-skill as the Provider half of a Protocol/Provider split with the companion
code-intelligenceplugin (sameantonbabenko/agent-pluginsmarketplace).references/code-intelligence-lsp.md): names thecode-intelligenceplugin as the source of truth for the generic discipline (position anchoring, degradation gate, disclosure, anti-phantom-shim). Defer to it when installed; stays fully self-contained without it - no hard dependency (skills are model-triggered anyway).references/code-intelligence-lsp.md: terraform-ls binary,ENABLE_LSP_TOOL, a position-based LSP transport, and readiness verification (/code-intelligence:doctorif the companion is present, else a manual probe). Users get zero-glue plug-n-play.Why
The terraform-ls specialization and its setup belong with the Terraform domain skill (discoverable at point of need), while the language-agnostic discipline is single-sourced in the generic plugin. Avoids cross-plugin duplication drift.
Tests
Existing Scenario 17 (Code Navigation and Safe Rename) in
tests/baseline-scenarios.md+rationalization-table.mdrow 17 already cover the behavioral contract. This change is documentation organization within an already-tested area and introduces no new agent behavior, so no new scenario is added (per CONTRIBUTING: no duplicate/untested additions).metadata.version/CHANGELOG left untouched (release-pipeline managed).