Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Comprehensive external research methodology using web search, URL fetching, and documentation APIs for authoritative, version-aware documentation gathering --- name: "External Research" description: "Comprehensive external research methodology using web search, URL fetching, and documentation APIs for authoritative, version-aware documentation gathering" --- External Research Skill Overview This skill defines the **mandatory methodology** for conducting external research during planning and implementation phases. It ensures that all external knowledge is gathered from a Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Freshness
Last checked 4/14/2026
Best For
External Research is best for hallucinate, adapt, be 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
Comprehensive external research methodology using web search, URL fetching, and documentation APIs for authoritative, version-aware documentation gathering --- name: "External Research" description: "Comprehensive external research methodology using web search, URL fetching, and documentation APIs for authoritative, version-aware documentation gathering" --- External Research Skill Overview This skill defines the **mandatory methodology** for conducting external research during planning and implementation phases. It ensures that all external knowledge is gathered from a
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 14, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Apr 14, 2026
Vendor
Maizecobra
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/14/2026.
Setup snapshot
git clone https://github.com/MaizeCobra/external-research-skill.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
Maizecobra
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
text
# Without year - may return outdated 2020-2023 content "FastAPI JWT authentication" # With year - prioritizes current best practices "FastAPI JWT authentication 2026" "React useEffect best practices 2026" "Python security vulnerabilities 2026"
text
Good: "Next.js 14 app router server actions tutorial 2026" Good: "React 18 useEffect cleanup async 2026" Good: "Python 3.12 new features type hints" Bad: "how to use react" Bad: "javascript tutorial"
text
Good: "How to implement JWT authentication middleware in Express.js 4.x" Good: "React 18 useEffect cleanup function for async operations" Good: "FastAPI dependency injection with database sessions" Bad: "auth" Bad: "database"
text
mcp_context7_resolve-library-id("fastapi", "How to create API endpoints with authentication")text
mcp_context7_query-docs("/fastapi/fastapi", "JWT authentication with OAuth2PasswordBearer")text
search_web("FastAPI 0.110 JWT authentication best practices", domain: "fastapi.tiangolo.com")Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Comprehensive external research methodology using web search, URL fetching, and documentation APIs for authoritative, version-aware documentation gathering --- name: "External Research" description: "Comprehensive external research methodology using web search, URL fetching, and documentation APIs for authoritative, version-aware documentation gathering" --- External Research Skill Overview This skill defines the **mandatory methodology** for conducting external research during planning and implementation phases. It ensures that all external knowledge is gathered from a
This skill defines the mandatory methodology for conducting external research during planning and implementation phases. It ensures that all external knowledge is gathered from authoritative sources, properly validated, version-aware, and correctly cited.
Large Language Models have knowledge cutoffs and can hallucinate API details, deprecated patterns, or incorrect version-specific behavior. Relying solely on model memory for technical implementation details is dangerous and unacceptable.
Common failure modes when relying on model memory:
| Failure Mode | Example | Consequence |
|--------------|---------|-------------|
| Outdated APIs | Using componentWillMount in React 18 | Runtime warnings, deprecated code |
| Version Mismatches | Assuming FastAPI 0.100+ syntax in 0.95 project | Import errors, crashes |
| Hallucinated Methods | Inventing .toJSON() on objects that don't have it | Runtime errors |
| Security Vulnerabilities | Using outdated authentication patterns | Exploitable code |
| Incorrect Defaults | Wrong default parameter values | Subtle bugs |
| Missing Breaking Changes | Not knowing about API removals | Production failures |
By using external research tools, we:
Your environment likely provides these capabilities (tool names vary by platform):
search_web, @web, /web)Purpose: Discover official documentation, changelogs, breaking changes, security advisories, RFCs, tutorials, and best practices.
When to Use:
Best Practices:
domain parameter to prioritize official sources (e.g., domain: "fastapi.tiangolo.com")⏰ Time-Aware Searching (Critical for Relevant Results):
Adding the current year dramatically improves search result relevance:
# Without year - may return outdated 2020-2023 content
"FastAPI JWT authentication"
# With year - prioritizes current best practices
"FastAPI JWT authentication 2026"
"React useEffect best practices 2026"
"Python security vulnerabilities 2026"
Why this matters:
scripts/get_current_time.py --tips for query examplesQuery Examples:
Good: "Next.js 14 app router server actions tutorial 2026"
Good: "React 18 useEffect cleanup async 2026"
Good: "Python 3.12 new features type hints"
Bad: "how to use react"
Bad: "javascript tutorial"
read_url_content, WebFetch, URL Context)Purpose: Fetch and read the actual content of documentation pages, specifications, guides, and reference materials discovered via search_web.
When to Use:
search_webBest Practices:
What to Extract:
context7 MCP, library-specific APIs)Purpose: Deep, version-aware framework, SDK, and API knowledge with authoritative context. Provides structured documentation queries with version-specific accuracy.
Tools Available:
mcp_context7_resolve-library-id: Resolves a library name to a Context7-compatible IDmcp_context7_query-docs: Queries documentation for a specific libraryWhen to Use:
search_web results are too general or scatteredBest Practices:
mcp_context7_resolve-library-idQuery Examples:
Good: "How to implement JWT authentication middleware in Express.js 4.x"
Good: "React 18 useEffect cleanup function for async operations"
Good: "FastAPI dependency injection with database sessions"
Bad: "auth"
Bad: "database"
Library ID Format: /org/project or /org/project/version
Examples:
/vercel/next.js/fastapi/fastapi/facebook/react/expressjs/expressBefore writing any code that uses external libraries, APIs, or frameworks, identify:
For each external dependency:
Resolve library ID (if using context7)
mcp_context7_resolve-library-id("fastapi", "How to create API endpoints with authentication")
Query official documentation
mcp_context7_query-docs("/fastapi/fastapi", "JWT authentication with OAuth2PasswordBearer")
Search for additional context
search_web("FastAPI 0.110 JWT authentication best practices", domain: "fastapi.tiangolo.com")
Read and validate documentation
read_url_content("https://fastapi.tiangolo.com/tutorial/security/oauth2-jwt/")
All research must be documented with:
❗ NEVER assume model memory is accurate for:
| Category | Why It's Dangerous | |----------|-------------------| | Library APIs | Methods may be renamed, deprecated, or removed between versions | | Function Signatures | Parameter names, types, and defaults change frequently | | Version Compatibility | What works in v2.0 may not exist in v1.5 | | Security Practices | Security recommendations evolve; old patterns become vulnerabilities | | Framework Behavior | Internal behavior changes even when APIs look the same | | Default Values | Defaults can change between versions, causing subtle bugs | | Error Handling | Exception types and error formats change | | Configuration Options | Config keys are added, renamed, or removed | | Environment Variables | Expected env vars change between versions | | Database Schemas | ORM/database patterns evolve significantly |
Before considering research complete, verify:
All externally sourced knowledge MUST be cited in your plan or documentation.
### Relevant Documentation
- [FastAPI Security - OAuth2 with JWT](https://fastapi.tiangolo.com/tutorial/security/oauth2-jwt/)
- Version: FastAPI 0.110+
- Key Content: OAuth2PasswordBearer implementation pattern
- Why Needed: Required for implementing secure token authentication
- Sourced via: search_web → read_url_content
- [React useEffect Reference](https://react.dev/reference/react/useEffect)
- Version: React 18.2
- Key Content: Cleanup function patterns for async operations
- Why Needed: Prevent memory leaks in component unmount
- Sourced via: context7 MCP
Always include explicit version numbers:
✅ Good: "FastAPI v0.110 OAuth2PasswordBearer"
✅ Good: "React 18.2 useEffect cleanup"
✅ Good: "Next.js 14.1 App Router server actions"
❌ Bad: "FastAPI authentication"
❌ Bad: "React hooks"
❌ Bad: "Next.js routing"
search_web("[library] official docs")mcp_context7_resolve-library-id("[library]", "[your goal]")mcp_context7_query-docs("[library-id]", "[specific feature]")read_url_content("[docs-url]/getting-started")read_url_content("[docs-url]/api/[feature]")search_web("[library] changelog [version]")search_web("[library] breaking changes [old-version] to [new-version]")search_web("[library] migration guide [version]")read_url_content("[migration-guide-url]")search_web("[library] security best practices [year]")search_web("[library] CVE security advisory")mcp_context7_query-docs("[library-id]", "security authentication encryption")read_url_content("[docs-url]/security")search_web("[exact error message]")search_web("[library] [error type] common causes")read_url_content("[github-issue-url]")mcp_context7_query-docs("[library-id]", "[error context]")When using this skill during the planning phase (e.g., with the plan-feature workflow):
### Phase 3: External Research & Documentation
> 📚 **Using External Research Skill**
**Research Conducted:**
1. **context7 MCP**: Queried `/vercel/next.js` for "App Router authentication patterns"
2. **search_web**: Searched "Next.js 14 middleware authentication JWT"
3. **read_url_content**: Read https://nextjs.org/docs/app/building-your-application/authentication
**Findings:**
- Next.js 14 uses middleware.ts for route protection
- JWT validation should happen in middleware, not in page components
- Server actions can access session via cookies() helper
**Citations:**
- [Next.js Authentication Docs](https://nextjs.org/docs/app/building-your-application/authentication) - v14.1
✅ Specific version numbers mentioned ✅ Direct links to official documentation ✅ Exact API signatures extracted (not paraphrased) ✅ Code examples from official sources ✅ Warnings and caveats noted ✅ Multiple sources cross-referenced ✅ Clear citation trail (which tool found what)
❌ Vague statements like "according to the docs" ❌ No version numbers specified ❌ Paraphrased API signatures ❌ No direct documentation links ❌ Assumed behavior without verification ❌ Single source only ❌ No code examples referenced
External research is not optional—it is a mandatory requirement for producing reliable, maintainable, and secure code. The three tools (search_web, read_url_content, context7 MCP) work together to provide:
Always research. Always cite. Always verify. Never assume.
Machine 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/maizecobra-external-research-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/maizecobra-external-research-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/maizecobra-external-research-skill/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/maizecobra-external-research-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/maizecobra-external-research-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/maizecobra-external-research-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/maizecobra-external-research-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/maizecobra-external-research-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/maizecobra-external-research-skill/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-17T06:00:35.783Z"
}
},
"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": "hallucinate",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "adapt",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "be",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "change",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "access",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:hallucinate|supported|profile capability:adapt|supported|profile capability:be|supported|profile capability:change|supported|profile capability:access|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": "Maizecobra",
"href": "https://github.com/MaizeCobra/external-research-skill",
"sourceUrl": "https://github.com/MaizeCobra/external-research-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-14T22:26:35.667Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/maizecobra-external-research-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/maizecobra-external-research-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-14T22:26:35.667Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/maizecobra-external-research-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/maizecobra-external-research-skill/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 External Research and adjacent AI workflows.