improved flow and catch linting failures #8
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.
This pull request introduces several improvements to the linter-driven Go development workflow, focusing on explicit skill invocation, enhanced linter-to-skill routing, stricter quality gates, and improved documentation for design and refactoring patterns. The changes ensure that skills are invoked programmatically (not just referenced), clarify how linter errors map to remediation steps, and add detailed design guidance for handling common linter failures. Additionally, the
mcp__ide__getDiagnosticstool is now permitted in all relevant agents and commands, enabling better diagnostic integration.Key changes include:
Skill Invocation and Tooling Consistency
mcp__ide__getDiagnosticstool, ensuring consistent access to IDE diagnostics across the workflow. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]<skill_invocation>sections to all major skills, requiring that skills (e.g.,@testing,@refactoring) be invoked via the Skill tool, not just referenced in text. Clear tables show the mapping between notation and tool calls. [1] [2] [3]Linter Error Routing and Design Patterns
argument-limit→ options struct,function-result-limit→ result type,file-length-limit→ file splitting/god object decomposition). [1] [2] [3] [4]Workflow and Quality Gate Enhancements
Documentation and Usability Improvements
These changes collectively make the Go linter-driven workflow more robust, explicit, and maintainable by enforcing best practices and ensuring all automation is performed through well-defined skill invocations.