Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
This skill should be used when the user asks to "create a sub-agent", "build an agent", "make a new agent", "scaffold an agent", "design an agent", "set up a worker agent", "create a specialist agent", "add a custom agent", "建立子代理", "建立 agent", "新增 agent", mentions sub-agent creation, agent design, agent scaffolding, agent configuration, or custom agent setup for Claude Code. --- name: create-sub-agent description: >- This skill should be used when the user asks to "create a sub-agent", "build an agent", "make a new agent", "scaffold an agent", "design an agent", "set up a worker agent", "create a specialist agent", "add a custom agent", "建立子代理", "建立 agent", "新增 agent", mentions sub-agent creation, agent design, agent scaffolding, agent configuration, or custom agent setup for Claude Code Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
create-sub-agent is best for modify, read, memory workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
This skill should be used when the user asks to "create a sub-agent", "build an agent", "make a new agent", "scaffold an agent", "design an agent", "set up a worker agent", "create a specialist agent", "add a custom agent", "建立子代理", "建立 agent", "新增 agent", mentions sub-agent creation, agent design, agent scaffolding, agent configuration, or custom agent setup for Claude Code. --- name: create-sub-agent description: >- This skill should be used when the user asks to "create a sub-agent", "build an agent", "make a new agent", "scaffold an agent", "design an agent", "set up a worker agent", "create a specialist agent", "add a custom agent", "建立子代理", "建立 agent", "新增 agent", mentions sub-agent creation, agent design, agent scaffolding, agent configuration, or custom agent setup for Claude Code
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Apr 15, 2026
Vendor
Joneshong Skills
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/joneshong-skills/create-sub-agent.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Joneshong Skills
Protocol compatibility
MCP
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
# List existing agents ls ~/.claude/agents/ .claude/agents/ 2>/dev/null # List existing skills that might already cover this ls ~/.claude/skills/ | head -30
text
Task needs to modify code?
├── No (read-only / analysis)
│ ├── Simple (search, classify, summarize) → haiku
│ └── Complex (security audit, architecture review) → sonnet or opus
└── Yes (writes/edits files)
├── High-risk (production, security-related) → opus
├── Standard development → sonnet
└── Mechanical (formatting, simple edits) → haikuyaml
disallowedTools: Write, Edit # can read but not modify
bash
python3 ~/.claude/skills/create-sub-agent/scripts/init_agent.py <agent-name> \ [--scope user|project] \ [--model haiku|sonnet|opus] \ [--role explorer|reviewer|worker|researcher|full]
markdown
You are a code reviewer specialized in TypeScript/React applications. ## Your Role - Review code for quality, security, and best practices - Identify bugs, performance issues, and anti-patterns - Provide specific, actionable feedback with line references ## Constraints - NEVER modify files — read only - Focus on issues, not style preferences - Prioritize: security > correctness > performance > readability ## Output Format Return a markdown report: - Summary (1-2 sentences) - Critical issues (must fix) - Warnings (should fix) - Suggestions (nice to have)
bash
python3 ~/.claude/skills/create-sub-agent/scripts/validate_agent.py <path-to-agent.md>
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
This skill should be used when the user asks to "create a sub-agent", "build an agent", "make a new agent", "scaffold an agent", "design an agent", "set up a worker agent", "create a specialist agent", "add a custom agent", "建立子代理", "建立 agent", "新增 agent", mentions sub-agent creation, agent design, agent scaffolding, agent configuration, or custom agent setup for Claude Code. --- name: create-sub-agent description: >- This skill should be used when the user asks to "create a sub-agent", "build an agent", "make a new agent", "scaffold an agent", "design an agent", "set up a worker agent", "create a specialist agent", "add a custom agent", "建立子代理", "建立 agent", "新增 agent", mentions sub-agent creation, agent design, agent scaffolding, agent configuration, or custom agent setup for Claude Code
Guide the creation of well-designed sub-agents — specialized AI workers that run in isolated context windows with specific model, tool, and permission constraints.
Sub-agents are Markdown files at ~/.claude/agents/ (user-level) or .claude/agents/
(project-level). The filename becomes the agent name. Frontmatter defines constraints;
the body becomes the system prompt.
| Signal | Create Sub-Agent | Create Skill |
|--------|-----------------|-------------|
| Need isolated context (prevent pollution) | Yes | No |
| Need specific model (haiku for speed, opus for quality) | Yes | Skill also has model but less precise |
| Need tool sandboxing (read-only, no-bash) | Yes | Skill has allowed-tools but agent is stricter |
| Need persistent memory for the agent | Yes (memory field) | No |
| Need reusable knowledge/procedures | No — use a skill | Yes |
| Need supporting files (e.g. helper scripts) | No — load a skill into the agent | Yes |
Best practice: Create a sub-agent that loads skills via the skills field.
The agent defines WHO does it (model, tools, permissions); skills define HOW.
Before creating any agent, check for overlap:
# List existing agents
ls ~/.claude/agents/ .claude/agents/ 2>/dev/null
# List existing skills that might already cover this
ls ~/.claude/skills/ | head -30
Ask: "Does this need an isolated context and specific constraints, or is a skill enough?"
Collect from the user:
code-reviewer, security-scanner)Use the model decision tree:
Task needs to modify code?
├── No (read-only / analysis)
│ ├── Simple (search, classify, summarize) → haiku
│ └── Complex (security audit, architecture review) → sonnet or opus
└── Yes (writes/edits files)
├── High-risk (production, security-related) → opus
├── Standard development → sonnet
└── Mechanical (formatting, simple edits) → haiku
Quick reference:
| Task Type | Model | Cost | Speed |
|-----------|-------|------|-------|
| Codebase search/exploration | haiku | $ | Fast |
| Classification / routing | haiku | $ | Fast |
| Log analysis / summarization | haiku | $ | Fast |
| Lint / format checking | haiku | $ | Fast |
| Code review (read-only) | sonnet | $$ | Medium |
| Bug debugging | sonnet | $$ | Medium |
| Test generation | sonnet | $$ | Medium |
| Refactoring | sonnet | $$ | Medium |
| Documentation writing | sonnet | $$ | Medium |
| Architecture design | opus | $$$ | Slow |
| Security audit | opus | $$$ | Slow |
| Complex multi-step reasoning | opus | $$$ | Slow |
| Production-critical code gen | opus | $$$ | Slow |
For full model details, see references/model-guide.md.
Apply the principle of least privilege:
| Agent Role | Recommended Tools |
|-----------|------------------|
| Explorer (read-only) | Read, Glob, Grep |
| Reviewer (read + report) | Read, Glob, Grep, Bash |
| Worker (can modify files) | Read, Glob, Grep, Edit, Write, Bash |
| Researcher (web access) | Read, Glob, Grep, Bash, WebSearch, WebFetch |
| Full access (trusted) | (omit tools to inherit all) |
Use disallowedTools to deny specific tools:
disallowedTools: Write, Edit # can read but not modify
| Permission Mode | Use When |
|----------------|----------|
| default | Standard interactive use |
| plan | Read-only exploration mode |
| acceptEdits | Trusted worker, auto-accept file changes |
| dontAsk | Strict deny-by-default, only allowed tools work |
Run the initialization script:
python3 ~/.claude/skills/create-sub-agent/scripts/init_agent.py <agent-name> \
[--scope user|project] \
[--model haiku|sonnet|opus] \
[--role explorer|reviewer|worker|researcher|full]
Default: --scope user --model sonnet --role worker
This generates the agent Markdown file with frontmatter and a starter system prompt.
The body of the agent file is its system prompt. Key principles:
skills frontmatter field.Example system prompt structure:
You are a code reviewer specialized in TypeScript/React applications.
## Your Role
- Review code for quality, security, and best practices
- Identify bugs, performance issues, and anti-patterns
- Provide specific, actionable feedback with line references
## Constraints
- NEVER modify files — read only
- Focus on issues, not style preferences
- Prioritize: security > correctness > performance > readability
## Output Format
Return a markdown report:
- Summary (1-2 sentences)
- Critical issues (must fix)
- Warnings (should fix)
- Suggestions (nice to have)
python3 ~/.claude/skills/create-sub-agent/scripts/validate_agent.py <path-to-agent.md>
Checks: valid frontmatter, required fields, naming conventions, tool consistency.
Invoke the agent to verify it works:
# Claude auto-delegates based on description
# Or explicitly: "use the <agent-name> agent to..."
Verify:
---
name: code-reviewer
description: Reviews code for quality and best practices. Use proactively after code changes.
tools: Read, Glob, Grep, Bash
model: sonnet
permissionMode: plan
maxTurns: 20
skills:
- review
- scan
memory: user
---
You are a senior code reviewer...
| Field | Required | Values |
|-------|----------|--------|
| name | Yes | kebab-case identifier |
| description | Yes | When Claude should delegate to this agent |
| tools | No | Comma-separated tool names (inherits all if omitted) |
| disallowedTools | No | Tools to explicitly deny |
| model | No | haiku, sonnet, opus, inherit (default: inherit) |
| permissionMode | No | default, plan, acceptEdits, dontAsk, bypassPermissions |
| maxTurns | No | Max agentic turns before stopping |
| skills | No | Array of skill names to preload |
| mcpServers | No | MCP servers available to this agent |
| hooks | No | Lifecycle hooks (PreToolUse, PostToolUse, Stop) |
| memory | No | Persistent memory scope: user, project, local |
| Location | Scope | Priority |
|----------|-------|----------|
| --agents CLI flag | Session only | Highest |
| .claude/agents/ | Current project | High |
| ~/.claude/agents/ | All projects | Medium |
| Plugin agents/ | Where plugin enabled | Lowest |
Explorer (read-only, fast):
python3 ~/.claude/skills/create-sub-agent/scripts/init_agent.py explorer \
--model haiku --role explorer
Code Reviewer (read-only, thorough):
python3 ~/.claude/skills/create-sub-agent/scripts/init_agent.py code-reviewer \
--model sonnet --role reviewer
Security Scanner (read-only, maximum quality):
python3 ~/.claude/skills/create-sub-agent/scripts/init_agent.py security-scanner \
--model opus --role reviewer
Doc Writer (can write files):
python3 ~/.claude/skills/create-sub-agent/scripts/init_agent.py doc-writer \
--model sonnet --role worker
For more patterns, see references/agent-patterns.md.
opus for simple tasks (waste of money, 5x cost vs haiku)bypassPermissions unless absolutely necessaryAfter every invocation:
lessons.md### YYYY-MM-DD -- Brief title
- **Friction**: What went wrong
- **Fix**: How it was resolved
- **Rule**: Generalizable takeaway
references/model-guide.md -- Detailed model selection with cost/speed/quality analysisreferences/agent-patterns.md -- Common agent architectures with full examplesscripts/init_agent.py -- Scaffold a new sub-agentscripts/validate_agent.py -- Validate agent structure and configurationMachine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/joneshong-skills-create-sub-agent/snapshot"
curl -s "https://xpersona.co/api/v1/agents/joneshong-skills-create-sub-agent/contract"
curl -s "https://xpersona.co/api/v1/agents/joneshong-skills-create-sub-agent/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/joneshong-skills-create-sub-agent/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/joneshong-skills-create-sub-agent/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/joneshong-skills-create-sub-agent/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/joneshong-skills-create-sub-agent/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/joneshong-skills-create-sub-agent/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/joneshong-skills-create-sub-agent/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T02:31:48.476Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "modify",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "read",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "memory",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "write",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:modify|supported|profile capability:read|supported|profile capability:memory|supported|profile capability:write|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Joneshong Skills",
"href": "https://github.com/joneshong-skills/create-sub-agent",
"sourceUrl": "https://github.com/joneshong-skills/create-sub-agent",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T01:15:02.426Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/joneshong-skills-create-sub-agent/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/joneshong-skills-create-sub-agent/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T01:15:02.426Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/joneshong-skills-create-sub-agent/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/joneshong-skills-create-sub-agent/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to create-sub-agent and adjacent AI workflows.