← All plugins
promptscout
v1.2.1Enrich coding agent prompts with codebase context using a local LLM
Claude Code
by Omercan BalandiMIT35updated 5 months ago
Source
git clone https://github.com/obsfx/promptscoutClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
promptscout/
└── .claude-plugin/plugin.json
Manifests1
.claude-plugin/plugin.json
{
"name": "promptscout",
"description": "Enrich coding agent prompts with codebase context using a local LLM",
"version": "1.2.1",
"author": {
"name": "Omercan Balandi",
"url": "https://github.com/obsfx"
},
"repository": "https://github.com/obsfx/promptscout",
"license": "MIT",
"homepage": "https://github.com/obsfx/promptscout",
"keywords": [
"prompt-enrichment",
"codebase-context",
"local-llm",
"coding-agent"
],
"hooks": {
"UserPromptSubmit": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/user-prompt-submit.sh",
"timeout": 120
}
]
}
]
}
}