Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Multi-model agent implementation workflow for software development. Orchestrates research, evaluation, design baseline, implementation, RCA, structured decomposition, constraint discovery, model selection, and agent-driven Stage 3 codemap exploration across external AI models (GPT, GLM, Claude). Use when implementing features through a structured multi-phase pipeline with worktrees, dynamic scheduling, and SQLite-backed agent coordination. --- name: agent-implementation-skill description: Multi-model agent implementation workflow for software development. Orchestrates research, evaluation, design baseline, implementation, RCA, structured decomposition, constraint discovery, model selection, and agent-driven Stage 3 codemap exploration across external AI models (GPT, GLM, Claude). Use when implementing features through a structured multi-phase pipeline Published capability contract available. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/24/2026.
Freshness
Last checked 2/22/2026
Best For
Contract is available with explicit auth and schema references.
Not Ideal For
agent-implementation-skill is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.
Evidence Sources Checked
editorial-content, capability-contract, runtime-metrics, public facts pack
Multi-model agent implementation workflow for software development. Orchestrates research, evaluation, design baseline, implementation, RCA, structured decomposition, constraint discovery, model selection, and agent-driven Stage 3 codemap exploration across external AI models (GPT, GLM, Claude). Use when implementing features through a structured multi-phase pipeline with worktrees, dynamic scheduling, and SQLite-backed agent coordination. --- name: agent-implementation-skill description: Multi-model agent implementation workflow for software development. Orchestrates research, evaluation, design baseline, implementation, RCA, structured decomposition, constraint discovery, model selection, and agent-driven Stage 3 codemap exploration across external AI models (GPT, GLM, Claude). Use when implementing features through a structured multi-phase pipeline
Public facts
7
Change events
1
Artifacts
0
Freshness
Feb 22, 2026
Published capability contract available. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/24/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 22, 2026
Vendor
Nestharus
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Published capability contract available. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/24/2026.
Setup snapshot
git clone https://github.com/nestharus/agent-implementation-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
Nestharus
Protocol compatibility
OpenClaw
Auth modes
api_key
Machine-readable schemas
OpenAPI or schema references published
Adoption signal
1 GitHub stars
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
$WORKFLOW_HOME/
SKILL.md # this file — entry point
implement.md # multi-model implementation pipeline
research.md # exploration → alignment → proposal
rca.md # root cause analysis
evaluate.md # proposal review
baseline.md # constraint extraction
audit.md # structured task decomposition
constraints.md # constraint discovery
models.md # model selection guide
scripts/
workflow.sh # schedule driver ([wait]/[run]/[done]/[fail])
db.sh # SQLite-backed coordination database
scan.sh # Stage 3 coordinator: dispatches agents to explore codespace and build codemap, then per-section file identification
section-loop.py # strategic section-loop orchestrator: integration proposals, strategic implementation, cross-section communication, global coordination (Stages 4-5 of implement.md)
tools/
extract-docstring-py # extract Python module docstrings
extract-summary-md # extract YAML frontmatter from markdown
README.md # tool interface spec (for Opus to write new tools)
agents/
orchestrator.md # event-driven step dispatcher (model: claude-opus)
monitor.md # task-level pipeline monitor — detects cycles/stuck (model: glm)
qa-monitor.md # deep QA monitor — 26 rules, 5 categories, PAUSE authority (model: opus)
agent-monitor.md # per-agent loop detector — watches narration (model: glm)
state-detector.md # workspace state reporter (model: claude-opus)
exception-handler.md # RCA on failed steps (model: claude-opus)
microstrategy-writer.md # tactical per-file breakdown (model: gpt-5.3-codex-high)
section-re-explorer.md # re-explores sections with no related files (model: claude-opus)
setup-excerpter.md # extracts section excerpts from globals (model: claude-opus)
bridge-agent.md # resolves cross-section interface fritext
Exploration → Alignment → Proposal → Review → Baseline → Implementation → Verification (research.md) (evaluate.md) (baseline.md) (implement.md) (rca.md)
text
[Raw Idea]
↓
[Exploration Notes] ← research.md Phase A
↓
[Alignment Document] ← research.md Phase B
↓
[Proposal] ← research.md Phase C
↓
[Evaluation Report] ← evaluate.md (iterate if REJECT/PUSH BACK)
↓
[Design Baseline] ← baseline.md (constraints/, patterns/, TRADEOFFS.md)
↓
[Section Files → Integration Proposals → Strategic Implementation → Code] ← implement.md
↓
[Tests → Debug → Constraint Check → Lint → Commit] ← implement.md + rca.mdbash
# Sequential dispatch — model directly with prompt file uv run agents --model <model> --file <planspace>/artifacts/step-N-prompt.md \ > <planspace>/artifacts/step-N-output.md 2>&1 # Agent file dispatch — agent instructions prepended to prompt uv run agents --agent-file "$WORKFLOW_HOME/agents/exception-handler.md" \ --file <planspace>/artifacts/exception-prompt.md # Parallel dispatch with db.sh coordination (uv run agents --model gpt-5.3-codex-high --file <prompt-A.md> && \ bash "$WORKFLOW_HOME/scripts/db.sh" send <planspace>/run.db orchestrator "done:block-A") & (uv run agents --model gpt-5.3-codex-high --file <prompt-B.md> && \ bash "$WORKFLOW_HOME/scripts/db.sh" send <planspace>/run.db orchestrator "done:block-B") & bash "$WORKFLOW_HOME/scripts/db.sh" recv <planspace>/run.db orchestrator bash "$WORKFLOW_HOME/scripts/db.sh" recv <planspace>/run.db orchestrator # Codemap exploration dispatch (Opus explores the codespace) uv run agents --model claude-opus --project <codespace> \ --file <planspace>/artifacts/scan-logs/codemap-prompt.md \ > <planspace>/artifacts/codemap.md 2>&1
text
[wait] 1. step-name | model-name -- description (skill-section-reference)
bash
# Initialize the coordination database (idempotent) bash "$WORKFLOW_HOME/scripts/db.sh" init <planspace>/run.db # Send a message to an agent bash "$WORKFLOW_HOME/scripts/db.sh" send <planspace>/run.db <target> [--from <agent>] "message text" # Block until a message arrives (agent sleeps, no busy-loop) bash "$WORKFLOW_HOME/scripts/db.sh" recv <planspace>/run.db <name> [timeout_seconds] # Check pending count (non-blocking) bash "$WORKFLOW_HOME/scripts/db.sh" check <planspace>/run.db <name> # Read all pending messages bash "$WORKFLOW_HOME/scripts/db.sh" drain <planspace>/run.db <name> # Agent lifecycle bash "$WORKFLOW_HOME/scripts/db.sh" register <planspace>/run.db <name> [pid] bash "$WORKFLOW_HOME/scripts/db.sh" unregister <planspace>/run.db <name> bash "$WORKFLOW_HOME/scripts/db.sh" agents <planspace>/run.db bash "$WORKFLOW_HOME/scripts/db.sh" cleanup <planspace>/run.db [name] # Event logging and querying bash "$WORKFLOW_HOME/scripts/db.sh" log <planspace>/run.db <kind> [tag] [body] [--agent <name>] bash "$WORKFLOW_HOME/scripts/db.sh" tail <planspace>/run.db [kind] [--since <id>] [--limit <n>] bash "$WORKFLOW_HOME/scripts/db.sh" query <planspace>/run.db <kind> [--tag <t>] [--agent <a>] [--since <id>] [--limit <n>]
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Multi-model agent implementation workflow for software development. Orchestrates research, evaluation, design baseline, implementation, RCA, structured decomposition, constraint discovery, model selection, and agent-driven Stage 3 codemap exploration across external AI models (GPT, GLM, Claude). Use when implementing features through a structured multi-phase pipeline with worktrees, dynamic scheduling, and SQLite-backed agent coordination. --- name: agent-implementation-skill description: Multi-model agent implementation workflow for software development. Orchestrates research, evaluation, design baseline, implementation, RCA, structured decomposition, constraint discovery, model selection, and agent-driven Stage 3 codemap exploration across external AI models (GPT, GLM, Claude). Use when implementing features through a structured multi-phase pipeline
Single entry point for the full development lifecycle. Read this file, determine what phase you're in or what the user needs, then read the relevant sub-file from this directory.
Everything lives in this skill folder. WORKFLOW_HOME is: !dirname "$(grep -rl '^name: agent-implementation-skill' ~/.claude/skills/*/SKILL.md .claude/skills/*/SKILL.md 2>/dev/null | head -1)" 2>/dev/null
When dispatching scripts or agents, export WORKFLOW_HOME with the path
above. Scripts also self-locate via dirname as a fallback when invoked
directly.
$WORKFLOW_HOME/
SKILL.md # this file — entry point
implement.md # multi-model implementation pipeline
research.md # exploration → alignment → proposal
rca.md # root cause analysis
evaluate.md # proposal review
baseline.md # constraint extraction
audit.md # structured task decomposition
constraints.md # constraint discovery
models.md # model selection guide
scripts/
workflow.sh # schedule driver ([wait]/[run]/[done]/[fail])
db.sh # SQLite-backed coordination database
scan.sh # Stage 3 coordinator: dispatches agents to explore codespace and build codemap, then per-section file identification
section-loop.py # strategic section-loop orchestrator: integration proposals, strategic implementation, cross-section communication, global coordination (Stages 4-5 of implement.md)
tools/
extract-docstring-py # extract Python module docstrings
extract-summary-md # extract YAML frontmatter from markdown
README.md # tool interface spec (for Opus to write new tools)
agents/
orchestrator.md # event-driven step dispatcher (model: claude-opus)
monitor.md # task-level pipeline monitor — detects cycles/stuck (model: glm)
qa-monitor.md # deep QA monitor — 26 rules, 5 categories, PAUSE authority (model: opus)
agent-monitor.md # per-agent loop detector — watches narration (model: glm)
state-detector.md # workspace state reporter (model: claude-opus)
exception-handler.md # RCA on failed steps (model: claude-opus)
microstrategy-writer.md # tactical per-file breakdown (model: gpt-5.3-codex-high)
section-re-explorer.md # re-explores sections with no related files (model: claude-opus)
setup-excerpter.md # extracts section excerpts from globals (model: claude-opus)
bridge-agent.md # resolves cross-section interface friction (model: gpt-5.3-codex-xhigh)
templates/
implement-proposal.md # 10-step implementation schedule
research-cycle.md # 7-step research schedule
rca-cycle.md # 6-step RCA schedule
Workspaces live on native filesystem for performance, separate from project:
~/.claude/workspaces/<task-slug>/ — schedule, state, log, artifacts, coordination databaseClean up planspace when workflow is fully complete (rm -rf the workspace dir).
Check these in order:
rca.mdevaluate.mdbaseline.mdimplement.mdresearch.mdconstraints.mdmodels.mdaudit.md| File | What It Does |
|------|-------------|
| research.md | Exploration → alignment → proposal → refinement |
| evaluate.md | Proposal alignment review (Accept / Reject / Push Back) |
| baseline.md | Atomize proposal into constraints / patterns / tradeoffs |
| implement.md | Multi-model implementation with worktrees + dynamic scheduling |
| rca.md | Root cause analysis + architectural fix for test failures |
| audit.md | General structured task decomposition + delegation |
| constraints.md | Surface implicit constraints, validate design principles |
| models.md | Model selection guide for multi-model workflows |
These principles govern all pipeline behavior. Violations are alignment failures.
Exploration → Alignment → Proposal → Review → Baseline → Implementation → Verification
(research.md) (evaluate.md) (baseline.md) (implement.md) (rca.md)
Phases iterate: Review may loop back to Research. Implementation may trigger tangent research cycles. Verification may reveal architectural issues requiring RCA.
[Raw Idea]
↓
[Exploration Notes] ← research.md Phase A
↓
[Alignment Document] ← research.md Phase B
↓
[Proposal] ← research.md Phase C
↓
[Evaluation Report] ← evaluate.md (iterate if REJECT/PUSH BACK)
↓
[Design Baseline] ← baseline.md (constraints/, patterns/, TRADEOFFS.md)
↓
[Section Files → Integration Proposals → Strategic Implementation → Code] ← implement.md
↓
[Tests → Debug → Constraint Check → Lint → Commit] ← implement.md + rca.md
For multi-step workflows, use the orchestration system instead of running everything from memory.
uv run agentsCRITICAL: All step dispatch goes through uv run agents via Bash.
Never use Claude's Task tool to spawn sub-agents — it causes "sibling"
errors and reliability issues. The agent runner automatically unsets
CLAUDECODE so sibling Claude sessions can launch.
# Sequential dispatch — model directly with prompt file
uv run agents --model <model> --file <planspace>/artifacts/step-N-prompt.md \
> <planspace>/artifacts/step-N-output.md 2>&1
# Agent file dispatch — agent instructions prepended to prompt
uv run agents --agent-file "$WORKFLOW_HOME/agents/exception-handler.md" \
--file <planspace>/artifacts/exception-prompt.md
# Parallel dispatch with db.sh coordination
(uv run agents --model gpt-5.3-codex-high --file <prompt-A.md> && \
bash "$WORKFLOW_HOME/scripts/db.sh" send <planspace>/run.db orchestrator "done:block-A") &
(uv run agents --model gpt-5.3-codex-high --file <prompt-B.md> && \
bash "$WORKFLOW_HOME/scripts/db.sh" send <planspace>/run.db orchestrator "done:block-B") &
bash "$WORKFLOW_HOME/scripts/db.sh" recv <planspace>/run.db orchestrator
bash "$WORKFLOW_HOME/scripts/db.sh" recv <planspace>/run.db orchestrator
# Codemap exploration dispatch (Opus explores the codespace)
uv run agents --model claude-opus --project <codespace> \
--file <planspace>/artifacts/scan-logs/codemap-prompt.md \
> <planspace>/artifacts/codemap.md 2>&1
Pre-built schedules in $WORKFLOW_HOME/templates/. Each step specifies its model:
[wait] 1. step-name | model-name -- description (skill-section-reference)
implement-proposal.md — full 10-step implementation pipelineresearch-cycle.md — research → evaluate → propose → refinerca-cycle.md — investigate → plan fix → apply → verifyStage 3 dispatches agents to explore and understand the codebase:
<planspace>/artifacts/codemap.md capturing what it discovered.Control and recovery:
codemap.md already exists, codemap exploration can be skipped.## Related Files, its exploration is skipped.| Model | Used For |
|-------|----------|
| claude-opus | Section setup (excerpt extraction), alignment checks (shape/direction), decomposition, codemap exploration, per-section file identification |
| gpt-5.3-codex-high | Integration proposals, strategic implementation, coordinated fixes, extraction, investigation |
| gpt-5.3-codex-high2 | Constraint audit (same capability, different quota) |
| gpt-5.3-codex-xhigh | Deep architectural synthesis, proposal drafting |
| glm | Test running, verification, quick commands, deep file analysis, semantic impact analysis, sub-agent exploration during integration proposals |
Step agents receive self-contained prompt files (they cannot read
$WORKFLOW_HOME). The orchestrator builds each prompt from:
state.mdWritten to: <planspace>/artifacts/step-N-prompt.md
Each workflow gets a planspace at ~/.claude/workspaces/<task-slug>/:
schedule.md — task queue with status markers (copied from template)state.md — current position + accumulated factslog.md — append-only execution logartifacts/ — prompt files, output files, working files for steps
artifacts/sections/ — section excerpts (proposal + alignment excerpts)artifacts/proposals/ — integration proposals per sectionartifacts/snapshots/ — post-completion file snapshots per sectionartifacts/notes/ — cross-section consequence notesartifacts/coordination/ — global coordinator state and fix promptsartifacts/decisions/ — accumulated parent decisions per section (from pause/resume)run.db — coordination database (messages, events, agent registry)constraints/ — discovered constraints (promote later)tradeoffs/ — discovered tradeoffs (promote later)SQLite-backed coordination for agent messaging. One run.db per pipeline
run — messages are claimed (not consumed), history is preserved, and the
database file is the complete audit trail.
# Initialize the coordination database (idempotent)
bash "$WORKFLOW_HOME/scripts/db.sh" init <planspace>/run.db
# Send a message to an agent
bash "$WORKFLOW_HOME/scripts/db.sh" send <planspace>/run.db <target> [--from <agent>] "message text"
# Block until a message arrives (agent sleeps, no busy-loop)
bash "$WORKFLOW_HOME/scripts/db.sh" recv <planspace>/run.db <name> [timeout_seconds]
# Check pending count (non-blocking)
bash "$WORKFLOW_HOME/scripts/db.sh" check <planspace>/run.db <name>
# Read all pending messages
bash "$WORKFLOW_HOME/scripts/db.sh" drain <planspace>/run.db <name>
# Agent lifecycle
bash "$WORKFLOW_HOME/scripts/db.sh" register <planspace>/run.db <name> [pid]
bash "$WORKFLOW_HOME/scripts/db.sh" unregister <planspace>/run.db <name>
bash "$WORKFLOW_HOME/scripts/db.sh" agents <planspace>/run.db
bash "$WORKFLOW_HOME/scripts/db.sh" cleanup <planspace>/run.db [name]
# Event logging and querying
bash "$WORKFLOW_HOME/scripts/db.sh" log <planspace>/run.db <kind> [tag] [body] [--agent <name>]
bash "$WORKFLOW_HOME/scripts/db.sh" tail <planspace>/run.db [kind] [--since <id>] [--limit <n>]
bash "$WORKFLOW_HOME/scripts/db.sh" query <planspace>/run.db <kind> [--tag <t>] [--agent <a>] [--since <id>] [--limit <n>]
Key patterns:
recv waiting for parallel step resultsdone:<step>:<summary> or fail:<step>:<error> when finishedsummary:setup:, summary:proposal:, summary:proposal-align:, summary:impl:, summary:impl-align:, status:coordination: messages; complete only on full success; fail:<num>:coordination_exhausted:<summary> on coordination timeoutask:<step>:<question>, then block on their own mailboxabort to any agent to trigger graceful shutdownagents command shows who's registered and who's waiting — detect stuck agentsMachine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
ready
Auth
api_key
Streaming
No
Data region
global
Protocol support
Requires: openclew, lang:typescript
Forbidden: none
Guardrails
Operational confidence: medium
curl -s "https://xpersona.co/api/v1/agents/nestharus-agent-implementation-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/nestharus-agent-implementation-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/nestharus-agent-implementation-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
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
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "ready",
"authModes": [
"api_key"
],
"requires": [
"openclew",
"lang:typescript"
],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": "https://github.com/nestharus/agent-implementation-skill#input",
"outputSchemaRef": "https://github.com/nestharus/agent-implementation-skill#output",
"dataRegion": "global",
"contractUpdatedAt": "2026-02-24T19:43:54.987Z",
"sourceUpdatedAt": "2026-02-24T19:43:54.987Z",
"freshnessSeconds": 4428451
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/nestharus-agent-implementation-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/nestharus-agent-implementation-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/nestharus-agent-implementation-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/nestharus-agent-implementation-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/nestharus-agent-implementation-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/nestharus-agent-implementation-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T01:51:26.059Z"
}
},
"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": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "launch",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "dispatches",
"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": "read",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "send",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:launch|supported|profile capability:dispatches|supported|profile capability:be|supported|profile capability:read|supported|profile capability:send|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": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/nestharus-agent-implementation-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/nestharus-agent-implementation-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:54.987Z",
"isPublic": true
},
{
"factKey": "auth_modes",
"category": "compatibility",
"label": "Auth modes",
"value": "api_key",
"href": "https://xpersona.co/api/v1/agents/nestharus-agent-implementation-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/nestharus-agent-implementation-skill/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:43:54.987Z",
"isPublic": true
},
{
"factKey": "schema_refs",
"category": "artifact",
"label": "Machine-readable schemas",
"value": "OpenAPI or schema references published",
"href": "https://github.com/nestharus/agent-implementation-skill#input",
"sourceUrl": "https://xpersona.co/api/v1/agents/nestharus-agent-implementation-skill/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:43:54.987Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Nestharus",
"href": "https://github.com/nestharus/agent-implementation-skill",
"sourceUrl": "https://github.com/nestharus/agent-implementation-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1 GitHub stars",
"href": "https://github.com/nestharus/agent-implementation-skill",
"sourceUrl": "https://github.com/nestharus/agent-implementation-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/nestharus-agent-implementation-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/nestharus-agent-implementation-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 agent-implementation-skill and adjacent AI workflows.