From agent-knowledge
Manages agent-knowledge skill auto-activation via subcommands: status to view config, on/off to toggle globally, config to interactively set individual skills.
npx claudepluginhub chris-xperimntl/agent-knowledgeThis skill is limited to using the following tools:
Manage the agent-knowledge skill auto-activation system.
Integrates installed skill usage guidance into CLAUDE.md/AGENTS.md by analyzing project context, scoring relevance, and generating trigger-based instructions. Use after installing skills, for new projects, or to update stale guidance.
Defines patterns for agents to discover, reference, and compose skills using progressive disclosure to manage context efficiently for large skill sets.
Guides creation of Agent Skills with progressive disclosure, best practices, structure, and categories. Use when building new skills or understanding skill format.
Share bugs, ideas, or general feedback.
Manage the agent-knowledge skill auto-activation system.
Location: .agent-knowledge/skill-activation.json (per-repo, in project root)
Default configuration (created if missing):
{
"enabled": true,
"threshold": 1,
"skills": {
"knowledge-search": true,
"when-to-query": true,
"search-optimization": true,
"advanced-workflows": true,
"store-lifecycle": true
}
}
Extract the subcommand from $ARGUMENTS:
Read .agent-knowledge/skill-activation.json
If the file doesn't exist, use the default configuration shown above.
For "status" or empty arguments:
Display the current configuration:
## Skill Activation Status
**Status**: [Enabled/Disabled]
**Threshold**: [threshold value]
### Individual Skills
| Skill | Status |
|-------|--------|
| knowledge-search | enabled/disabled |
| when-to-query | enabled/disabled |
| search-optimization | enabled/disabled |
| advanced-workflows | enabled/disabled |
| store-lifecycle | enabled/disabled |
Use `/agent-knowledge:skill-activation config` to toggle individual skills.
For "on":
enabled: true.agent-knowledge/For "off":
enabled: falseFor "config":
{
"questions": [{
"question": "Which skills should auto-activate when relevant patterns are detected?",
"header": "Skills",
"multiSelect": true,
"options": [
{
"label": "knowledge-search",
"description": "Suggests when to query BK for library questions"
},
{
"label": "when-to-query",
"description": "Guides BK vs Grep/Read decisions"
},
{
"label": "search-optimization",
"description": "Tips for optimizing search parameters"
},
{
"label": "advanced-workflows",
"description": "Multi-tool orchestration patterns"
},
{
"label": "store-lifecycle",
"description": "Managing knowledge stores"
}
]
}]
}
.agent-knowledge/ directory)