Reduce internal-only labeling noise in source comments (#355)
This pass rewrites comment-only ANT-ONLY markers to neutral internal-only language across the source tree without changing runtime strings, flags, commands, or protocol identifiers. The goal is to lower obvious internal prose leakage while keeping the diff mechanically safe and easy to review. Constraint: Phase B is limited to comments/prose only; runtime strings and user-facing labels remain deferred Rejected: Broad search-and-replace across strings and command descriptions | too risky for a prose-only pass Confidence: high Scope-risk: narrow Reversibility: clean Directive: Remaining ANT-ONLY hits are mostly runtime/user-facing strings and should be handled separately from comment cleanup Tested: bun run build Tested: bun run smoke Tested: bun run verify:privacy Tested: bun run test:provider Tested: bun run test:provider-recommendation Not-tested: Full repo typecheck (upstream baseline remains noisy) Co-authored-by: anandh8x <test@example.com>
This commit is contained in:
@@ -371,7 +371,7 @@ export const SkillTool: Tool<InputSchema, Output, Progress> = buildTool({
|
||||
? trimmed.substring(1)
|
||||
: trimmed
|
||||
|
||||
// Remote canonical skill handling (ant-only experimental). Intercept
|
||||
// Remote canonical skill handling (internal-only experimental). Intercept
|
||||
// `_canonical_<slug>` names before local command lookup since remote
|
||||
// skills are not in the local command registry.
|
||||
if (
|
||||
@@ -485,7 +485,7 @@ export const SkillTool: Tool<InputSchema, Output, Progress> = buildTool({
|
||||
}
|
||||
}
|
||||
|
||||
// Remote canonical skills are ant-only experimental — auto-grant.
|
||||
// Remote canonical skills are internal-only experimental — auto-grant.
|
||||
// Placed AFTER the deny loop so a user-configured Skill(_canonical_:*)
|
||||
// deny rule is honored (same pattern as safe-properties auto-allow below).
|
||||
// The skill content itself is canonical/curated, not user-authored.
|
||||
@@ -597,7 +597,7 @@ export const SkillTool: Tool<InputSchema, Output, Progress> = buildTool({
|
||||
// Remove leading slash if present (for compatibility)
|
||||
const commandName = trimmed.startsWith('/') ? trimmed.substring(1) : trimmed
|
||||
|
||||
// Remote canonical skill execution (ant-only experimental). Intercepts
|
||||
// Remote canonical skill execution (internal-only experimental). Intercepts
|
||||
// `_canonical_<slug>` before local command lookup — loads SKILL.md from
|
||||
// AKI/GCS (with local cache), injects content directly as a user message.
|
||||
// Remote skills are declarative markdown so no slash-command expansion
|
||||
|
||||
Reference in New Issue
Block a user