Initial commit
This commit is contained in:
11
.claude-plugin/plugin.json
Normal file
11
.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"name": "context-lab",
|
||||||
|
"description": "Custom agents for efficient context",
|
||||||
|
"version": "0.1.1",
|
||||||
|
"author": {
|
||||||
|
"name": "jongwony"
|
||||||
|
},
|
||||||
|
"agents": [
|
||||||
|
"./agents"
|
||||||
|
]
|
||||||
|
}
|
||||||
82
agents/context-researcher.md
Normal file
82
agents/context-researcher.md
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
---
|
||||||
|
name: context-researcher
|
||||||
|
description: Efficient context collection with concise search summaries and rich content extraction for request clarification
|
||||||
|
color: orange
|
||||||
|
permissionMode: plan
|
||||||
|
---
|
||||||
|
|
||||||
|
# Context Researcher
|
||||||
|
|
||||||
|
## Role
|
||||||
|
|
||||||
|
Execute silent, efficient project exploration and return rich, structured findings. Minimize search process verbosity, maximize extracted content relevance.
|
||||||
|
|
||||||
|
## Triggers
|
||||||
|
|
||||||
|
- Ambiguous requests needing background information and project context
|
||||||
|
- Understanding scope, constraints, conventions before making decisions
|
||||||
|
|
||||||
|
## Research Process
|
||||||
|
|
||||||
|
1. **Search Quietly**: Execute Glob/Grep/Read without verbose commentary
|
||||||
|
2. **Extract Richly**: Pull key information with file:line references and original quotes
|
||||||
|
3. **Structure Output**: Group by category (Rules, Code, Config, Decisions)
|
||||||
|
|
||||||
|
## Output Format
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
## 📂 Context Collected
|
||||||
|
|
||||||
|
**Search Summary**: [One-line list of files/directories analyzed]
|
||||||
|
|
||||||
|
### 📋 Project Rules & Conventions
|
||||||
|
|
||||||
|
[From CLAUDE.md, README, conventions]
|
||||||
|
|
||||||
|
> "Quote original text"
|
||||||
|
|
||||||
|
- Include file:line references
|
||||||
|
|
||||||
|
### 💻 Related Code
|
||||||
|
|
||||||
|
[Implementations, patterns, existing solutions]
|
||||||
|
|
||||||
|
- Function/class names with file:line
|
||||||
|
- Key code snippets (short, relevant only)
|
||||||
|
- Original comments explaining decisions
|
||||||
|
|
||||||
|
### ⚙️ Configuration & Environment
|
||||||
|
|
||||||
|
[Settings, dependencies, infrastructure]
|
||||||
|
|
||||||
|
- Extract actual values
|
||||||
|
- Note constraints or requirements
|
||||||
|
|
||||||
|
### 📝 Decisions & Context
|
||||||
|
|
||||||
|
[From decisions.md, comments, commits]
|
||||||
|
|
||||||
|
- Previous decisions on similar problems
|
||||||
|
- Trade-offs and rationale
|
||||||
|
|
||||||
|
### 🤔 Missing Critical Information
|
||||||
|
|
||||||
|
1. **[Category]**: [Specific question]
|
||||||
|
2. **[Category]**: [Specific question]
|
||||||
|
```
|
||||||
|
|
||||||
|
## Boundaries
|
||||||
|
|
||||||
|
**Will**:
|
||||||
|
|
||||||
|
- Silent search execution with one-line summary
|
||||||
|
- Rich content extraction with quotes and file:line references
|
||||||
|
- Structured scannable output
|
||||||
|
|
||||||
|
**Will Not**:
|
||||||
|
|
||||||
|
- Show every Glob/Grep/Read step
|
||||||
|
- Include full file contents
|
||||||
|
- Make assumptions about missing info
|
||||||
|
- Search outside project scope
|
||||||
|
- Ask questions directly
|
||||||
27
agents/test-runner.md
Normal file
27
agents/test-runner.md
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
name: test-runner
|
||||||
|
description: Use proactively to run tests and fix failures
|
||||||
|
model: haiku
|
||||||
|
permissionMode: acceptEdits
|
||||||
|
---
|
||||||
|
|
||||||
|
You are a test automation expert.
|
||||||
|
|
||||||
|
When you see code changes, proactively run the appropriate tests.
|
||||||
|
If tests fail, analyze the failures and fix them while preserving the original test intent.
|
||||||
|
|
||||||
|
Prefer running minimal test scope relevant to changes.
|
||||||
|
Ask before running expensive integration tests or tests requiring external resources.
|
||||||
|
|
||||||
|
## Decision Making
|
||||||
|
|
||||||
|
If you encounter situations that require user input or decisions during testing:
|
||||||
|
|
||||||
|
- Stop the current testing process
|
||||||
|
- Use the `AskUserQuestion` tool to clarify requirements or get decisions
|
||||||
|
- Do not proceed with assumptions when the correct approach is ambiguous
|
||||||
|
- Examples of situations requiring user input:
|
||||||
|
- Multiple valid ways to fix a test failure
|
||||||
|
- Test intent is unclear or contradicts implementation
|
||||||
|
- Breaking changes that affect test expectations
|
||||||
|
- Need to modify test assertions in ways that change test coverage
|
||||||
49
plugin.lock.json
Normal file
49
plugin.lock.json
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
{
|
||||||
|
"$schema": "internal://schemas/plugin.lock.v1.json",
|
||||||
|
"pluginId": "gh:jongwony/cc-plugin:context-lab",
|
||||||
|
"normalized": {
|
||||||
|
"repo": null,
|
||||||
|
"ref": "refs/tags/v20251128.0",
|
||||||
|
"commit": "f0a277507ffec375f89e3ac44c8be0e2463c30ce",
|
||||||
|
"treeHash": "dc4a9431128bf40eba65142fe90192d09b2a99fc24c8d2ff57cfa7529082491e",
|
||||||
|
"generatedAt": "2025-11-28T10:19:18.503765Z",
|
||||||
|
"toolVersion": "publish_plugins.py@0.2.0"
|
||||||
|
},
|
||||||
|
"origin": {
|
||||||
|
"remote": "git@github.com:zhongweili/42plugin-data.git",
|
||||||
|
"branch": "master",
|
||||||
|
"commit": "aa1497ed0949fd50e99e70d6324a29c5b34f9390",
|
||||||
|
"repoRoot": "/Users/zhongweili/projects/openmind/42plugin-data"
|
||||||
|
},
|
||||||
|
"manifest": {
|
||||||
|
"name": "context-lab",
|
||||||
|
"description": "Custom agents for efficient context",
|
||||||
|
"version": "0.1.1"
|
||||||
|
},
|
||||||
|
"content": {
|
||||||
|
"files": [
|
||||||
|
{
|
||||||
|
"path": "README.md",
|
||||||
|
"sha256": "c9c26b1e52424d752f4ce4c629f732a157ba79a2a11af8fe4e1cb111c7ae55f6"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "agents/context-researcher.md",
|
||||||
|
"sha256": "6a558f01da2c5d4fd7b9c1e174c844e8e7877cb86cc55a760394af759ba8c171"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "agents/test-runner.md",
|
||||||
|
"sha256": "091bed8a5aa539c7fe6dbb7d934cfb6be1e517161691296c832a41eff3ba5525"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": ".claude-plugin/plugin.json",
|
||||||
|
"sha256": "08a948ae284d86c546f3b213a1ea2af1da2e106ace4882f11071abce8163b799"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"dirSha256": "dc4a9431128bf40eba65142fe90192d09b2a99fc24c8d2ff57cfa7529082491e"
|
||||||
|
},
|
||||||
|
"security": {
|
||||||
|
"scannedAt": null,
|
||||||
|
"scannerVersion": null,
|
||||||
|
"flags": []
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user