feat(skill): add [skills].suppress_warnings to quiet third-party skill warnings - #8338
Open
onionviolet wants to merge 1 commit into
Open
feat(skill): add [skills].suppress_warnings to quiet third-party skill warnings#8338onionviolet wants to merge 1 commit into
onionviolet wants to merge 1 commit into
Conversation
onionviolet
force-pushed
the
fix/6483-suppress-skill-warnings
branch
from
August 11, 2026 06:35
fdc920f to
518b134
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
Adds
[skills].suppress_warnings(boolean, defaultfalse) to quiet noisy third-party skill loading warnings at startup, specifically the missing-description warning emitted by the skill loader ininternal/skill. The default keeps current behavior unchanged, so this is backward compatible. Suppression is stderr-only: which skills load and the skill index content are untouched. On-demand diagnostics such asreasonix doctor capabilitiesare intentionally not affected, since those are explicit troubleshooting surfaces.Implements #6483.
Issues
Fixes #6483
Verification
go test ./...passes (full suite)gofmt -l .cleango vet ./...passesTestSuppressWarningsQuietsMissingDescription(internal/skill),TestDefaultSkillsSuppressWarningsOffandTestDecodeSkillsSuppressWarnings(internal/config), plus thesuppress_warningssubtest inTestSaveToExistingProjectRemovesResetSkillOverrides.Documentation impact
Documentation-impact: updated -
[skills].suppress_warningsdocumented indocs/SPEC.md(config contract),docs/GUIDE.md,docs/GUIDE.zh-CN.md, andreasonix.example.toml.Cache impact
Cache-impact: none - suppression affects stderr output only; the skill index and system prompt are unchanged.
Cache-guard: TestSuppressWarningsQuietsMissingDescription (internal/skill) covers the loader warning; existing skill index guard tests cover index behavior.
System-prompt-review: maintainer approval required for the skill-loader change - suppression is stderr-only; the skill index and system prompt are unchanged, but CI classifies internal/skill and internal/boot as system-prompt-sensitive.