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
We Get Shit Done - Social collaborative development workflow. Extends GSD with focus groups, concepts, and implementation tracking across Slack channels with Canvas integration. --- name: wgsd description: We Get Shit Done - Social collaborative development workflow. Extends GSD with focus groups, concepts, and implementation tracking across Slack channels with Canvas integration. user-invocable: true --- <objective> WGSD (We Get Shit Done) enables social software development through: - **Focus Groups**: Long-lived topic channels (Security, Onboarding, Billing) - **Concepts**: Feature ideas 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/24/2026
Best For
Contract is available with explicit auth and schema references.
Not Ideal For
wgsd 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
We Get Shit Done - Social collaborative development workflow. Extends GSD with focus groups, concepts, and implementation tracking across Slack channels with Canvas integration. --- name: wgsd description: We Get Shit Done - Social collaborative development workflow. Extends GSD with focus groups, concepts, and implementation tracking across Slack channels with Canvas integration. user-invocable: true --- <objective> WGSD (We Get Shit Done) enables social software development through: - **Focus Groups**: Long-lived topic channels (Security, Onboarding, Billing) - **Concepts**: Feature ideas
Public facts
7
Change events
1
Artifacts
0
Freshness
Feb 24, 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 24, 2026
Vendor
Shipcalm
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/shipcalm/skill-wgsd.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
Shipcalm
Protocol compatibility
OpenClaw
Auth modes
api_key, oauth
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
{repo}/.planning/
├── PROJECT.md # Overall project context
├── focus-groups/ # Long-lived topic areas
│ ├── security/
│ │ ├── ROADMAP.md # Focus group roadmap (↔ Canvas)
│ │ ├── STATE.md # Current status
│ │ ├── concepts/ # Feature concepts (v2.2 directories)
│ │ │ ├── byof-filesystem/ # v2.2 concept directory
│ │ │ │ ├── CONCEPT.md # Primary concept description
│ │ │ │ ├── impact-matrix.md # Cross-cutting impacts
│ │ │ │ ├── API-SPEC.md # Optional API spec
│ │ │ │ └── acceptance-criteria.md # Optional AC
│ │ │ ├── auth-v2/
│ │ │ │ ├── CONCEPT.md
│ │ │ │ └── impact-matrix.md
│ │ │ └── sso-integration.md # Legacy single-file (backward compat)
│ │ └── CHANNELS.md # Slack channel mappings
│ ├── onboarding/
│ │ ├── ROADMAP.md
│ │ ├── STATE.md
│ │ ├── concepts/
│ │ │ ├── recommended-prompts.md
│ │ │ └── agent-setup.md
│ │ └── CHANNELS.md
│ └── billing/
│ ├── ROADMAP.md
│ ├── STATE.md
│ ├── concepts/
│ └── CHANNELS.md
├── active-implementations/ # Current execution (2-4 max)
│ ├── auth-v2-impl/
│ │ ├── REQUIREMENTS.md # Traditional GSD structure
│ │ ├── ROADMAP.md
│ │ ├── STATE.md
│ │ └── concept-source.md # Links to originating concept
│ └── billing-api-impl/
│ ├── REQUIREMENTS.md
│ ├── ROADMAP.md
│ ├── STATE.md
│ └── concept-source.md
├── MASTER-ROADMAP.md # Cross-focus-group aggregation
└── WGSD-CONFIG.md # Channel mappings and settingstext
main/develop (primary)
├── roadmap # ✨ Phase 13: Approved concepts backlog (PERMANENT)
├── concepts/ # v2.2 concept branches (medium-lived)
│ ├── byof-filesystem # Independent concept development
│ ├── auth-v2 # Each concept gets its own branch
│ └── oauth-integration # PRs merge to focus-groups/*
├── focus-groups/ # Focus group branches (long-lived)
│ ├── security # Planning and roadmap
│ ├── onboarding # Concepts merge here after approval
│ └── billing # Never merges to develop directly
└── implementations/ # Implementation branches (short-lived)
├── auth-v2-impl # ✨ Phase 13: Branches FROM roadmap
└── billing-api-impl # Merges back to develop (1-3 days)text
concepts/{name} ← Concept development
│
▼ (PR on team approval)
focus-groups/{fg} ← Focus group review
│
▼ (full matrix approval)
roadmap ← Approved backlog (auto-merge on completion)
│
▼ (create-implementation)
implementations/{name} ← Code execution (branches FROM roadmap)
│
▼ (merge)
develop/main ← Production codetext
{repo}/
├── .git/ # Main git directory
├── worktrees/ # v2.2 concept worktrees
│ ├── byof-filesystem/ # → concepts/byof-filesystem branch
│ ├── auth-v2/ # → concepts/auth-v2 branch
│ └── oauth-integration/ # → concepts/oauth-integration branch
├── concepts/ # Focus group worktrees (legacy naming)
│ ├── security/ # → focus-groups/security branch
│ ├── onboarding/ # → focus-groups/onboarding branch
│ └── billing/ # → focus-groups/billing branch
└── implementations/ # Implementation worktrees
├── auth-v2/ # → implementations/auth-v2 branch
└── billing-api/ # → implementations/billing-api branchbash
curl -X POST https://slack.com/api/conversations.canvases.create \
-H "Authorization: Bearer $SLACK_BOT_TOKEN" \
-H "Content-Type: application/json" \
-d '{bash
curl -X POST https://slack.com/api/conversations.canvases.create \
-H "Authorization: Bearer $SLACK_BOT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"channel_id": "CHANNEL_ID",
"title": "Canvas Title",
"document_content": {"type": "markdown", "markdown": "# Content"}
}'Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
We Get Shit Done - Social collaborative development workflow. Extends GSD with focus groups, concepts, and implementation tracking across Slack channels with Canvas integration. --- name: wgsd description: We Get Shit Done - Social collaborative development workflow. Extends GSD with focus groups, concepts, and implementation tracking across Slack channels with Canvas integration. user-invocable: true --- <objective> WGSD (We Get Shit Done) enables social software development through: - **Focus Groups**: Long-lived topic channels (Security, Onboarding, Billing) - **Concepts**: Feature ideas
Three-Tier Architecture:
This is collaborative GSD - "We Get Shit Done" together. </objective>
<intake> What would you like to do?Focus Group Commands:
Concept Commands:
Approval Commands (Phase 14 - Slack-Native):
Implementation Commands:
Canvas & Sync Commands:
Roadmap Branch Commands (Phase 13):
Migration Commands:
Repository Commands:
Workflow Engine Commands:
Community Commands:
Usage Examples:
/wgsd create-focus-group security - Create #mvn-security channel and structure/wgsd create-concept byof-filesystem - Create concept within focus group/wgsd promote-concept byof-filesystem - Move to implementation queue/wgsd roadmap - Show master roadmap in main development channelWorkflow:
| Intent | Workflow | |--------|----------| | "create focus group", "new focus group" | workflows/create-focus-group.md | | "create-focus-group", "focus-group" | workflows/create-focus-group.md | | "list focus groups", "show focus groups" | workflows/list-focus-groups.md | | "create concept", "new concept" | workflows/create-concept.md | | "create-concept", "concept" | workflows/create-concept.md | | "promote concept", "implement concept" | workflows/promote-concept.md | | "create implementation", "start implementation" | workflows/create-implementation.md | | "list implementations", "show implementations" | workflows/list-implementations.md | | "create canvas", "setup canvas", "create-canvas" | workflows/canvas-create.md | | "sync canvas", "sync-canvas", "update canvas" | workflows/canvas-sync.md | | "canvas check", "canvas integrity", "check canvas" | workflows/canvas-enforce.md | | "canvas restore", "restore canvas" | workflows/canvas-enforce.md | | "canvas workflow", "canvas help" | workflows/canvas-enforce.md | | "roadmap", "master roadmap", "live roadmap" | workflows/canvas-sync.md (roadmap mode) | | "setup repo", "initialize", "setup" | workflows/setup-repo.md | | "create channel", "new channel" | workflows/create-channel.md | | "setup core channels", "create dev channel" | workflows/setup-core-channels.md | | "archive channel", "archive" | workflows/archive-channel.md | | "restore channel", "unarchive channel" | workflows/restore-channel.md | | "migrate", "migration", "migrate from gsd" | workflows/migrate.md | | "analyze", "analyze project", "migration readiness" | workflows/migrate.md (analysis mode) | | "init", "initialize workspace" | workflows/init.md | | "workspace status", "wgsd status" | workflows/workspace-status.md | | "concept pr", "planning pr", "concept development" | workflows/concept-development.md | | "implementation pr", "code pr", "impl workflow" | workflows/implementation-workflow.md | | "implementation status", "impl status" | workflows/implementation-status.md | | "approve", "vote", "approval" | workflows/promote-concept.md | | "collect feedback", "record feedback" | workflows/moderate-feedback.md | | "triage", "triage queue" | workflows/moderate-feedback.md | | "move to focus group", "move-to-focus-group" | workflows/moderate-feedback.md | | "invite contributor", "invite-contributor" | workflows/invite-contributor.md | | "request access", "request-access" | workflows/access-request.md | | "approve access", "approve-access" | workflows/access-request.md | | "deny access", "deny-access" | workflows/access-request.md | | "community status", "community-status" | workflows/community-visibility.md | | "update community canvas", "community canvas" | workflows/community-visibility.md | | "attribute", "attribution" | workflows/community-visibility.md | | "publish update", "progress update" | workflows/community-visibility.md | | "declare impact", "declare-impact", "impact" | workflows/declare-impact.md | | "update impact", "update-impact", "modify impact" | workflows/update-impact.md | | "merge to roadmap", "merge-to-roadmap", "roadmap merge" | workflows/merge-to-roadmap.md | | "roadmap sync", "roadmap-sync", "sync roadmap" | workflows/roadmap-sync.md | | "approve", "lgtm", "+1", "ship it" | workflows/conversational-approve.md | | "reject", "block" | workflows/conversational-reject.md | | "status", "approval-status", "show-approvals", "matrix" | workflows/concept-status.md | | "request-review", "re-review" | workflows/conversational-reject.md |
</routing> <architecture> ## Repository StructureWGSD creates shared planning structure:
{repo}/.planning/
├── PROJECT.md # Overall project context
├── focus-groups/ # Long-lived topic areas
│ ├── security/
│ │ ├── ROADMAP.md # Focus group roadmap (↔ Canvas)
│ │ ├── STATE.md # Current status
│ │ ├── concepts/ # Feature concepts (v2.2 directories)
│ │ │ ├── byof-filesystem/ # v2.2 concept directory
│ │ │ │ ├── CONCEPT.md # Primary concept description
│ │ │ │ ├── impact-matrix.md # Cross-cutting impacts
│ │ │ │ ├── API-SPEC.md # Optional API spec
│ │ │ │ └── acceptance-criteria.md # Optional AC
│ │ │ ├── auth-v2/
│ │ │ │ ├── CONCEPT.md
│ │ │ │ └── impact-matrix.md
│ │ │ └── sso-integration.md # Legacy single-file (backward compat)
│ │ └── CHANNELS.md # Slack channel mappings
│ ├── onboarding/
│ │ ├── ROADMAP.md
│ │ ├── STATE.md
│ │ ├── concepts/
│ │ │ ├── recommended-prompts.md
│ │ │ └── agent-setup.md
│ │ └── CHANNELS.md
│ └── billing/
│ ├── ROADMAP.md
│ ├── STATE.md
│ ├── concepts/
│ └── CHANNELS.md
├── active-implementations/ # Current execution (2-4 max)
│ ├── auth-v2-impl/
│ │ ├── REQUIREMENTS.md # Traditional GSD structure
│ │ ├── ROADMAP.md
│ │ ├── STATE.md
│ │ └── concept-source.md # Links to originating concept
│ └── billing-api-impl/
│ ├── REQUIREMENTS.md
│ ├── ROADMAP.md
│ ├── STATE.md
│ └── concept-source.md
├── MASTER-ROADMAP.md # Cross-focus-group aggregation
└── WGSD-CONFIG.md # Channel mappings and settings
Branch Hierarchy (v2.2 + Phase 13 Three-Tier Branching):
main/develop (primary)
├── roadmap # ✨ Phase 13: Approved concepts backlog (PERMANENT)
├── concepts/ # v2.2 concept branches (medium-lived)
│ ├── byof-filesystem # Independent concept development
│ ├── auth-v2 # Each concept gets its own branch
│ └── oauth-integration # PRs merge to focus-groups/*
├── focus-groups/ # Focus group branches (long-lived)
│ ├── security # Planning and roadmap
│ ├── onboarding # Concepts merge here after approval
│ └── billing # Never merges to develop directly
└── implementations/ # Implementation branches (short-lived)
├── auth-v2-impl # ✨ Phase 13: Branches FROM roadmap
└── billing-api-impl # Merges back to develop (1-3 days)
Three-Tier Concept Flow (Phase 13):
concepts/{name} ← Concept development
│
▼ (PR on team approval)
focus-groups/{fg} ← Focus group review
│
▼ (full matrix approval)
roadmap ← Approved backlog (auto-merge on completion)
│
▼ (create-implementation)
implementations/{name} ← Code execution (branches FROM roadmap)
│
▼ (merge)
develop/main ← Production code
Roadmap Branch (Phase 13):
wgsd initwgsd roadmap-syncSlack-Native Approval (Phase 14):
/wgsd approve, ✅ reaction, or "LGTM" in thread/wgsd status shows approval matrix with visual progressWorktrees:
{repo}/
├── .git/ # Main git directory
├── worktrees/ # v2.2 concept worktrees
│ ├── byof-filesystem/ # → concepts/byof-filesystem branch
│ ├── auth-v2/ # → concepts/auth-v2 branch
│ └── oauth-integration/ # → concepts/oauth-integration branch
├── concepts/ # Focus group worktrees (legacy naming)
│ ├── security/ # → focus-groups/security branch
│ ├── onboarding/ # → focus-groups/onboarding branch
│ └── billing/ # → focus-groups/billing branch
└── implementations/ # Implementation worktrees
├── auth-v2/ # → implementations/auth-v2 branch
└── billing-api/ # → implementations/billing-api branch
Channel Naming Convention:
#{repo}-dev - Main development community channel#{repo}-{focus-group} - Focus group channels (e.g., #mvn-security)#{repo}-impl-{name} - Implementation channels (e.g., #mvn-impl-auth-v2)Canvas Integration:
Canvas Creation Process:
Canvas creation requires the exec tool with Slack API calls, not the message tool.
For Channel Canvases (recommended):
Use conversations.canvases.create - creates canvas that appears as icon in channel automatically:
curl -X POST https://slack.com/api/conversations.canvases.create \
-H "Authorization: Bearer $SLACK_BOT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"channel_id": "CHANNEL_ID",
"title": "Canvas Title",
"document_content": {"type": "markdown", "markdown": "# Content"}
}'
For Standalone Canvases:
Use canvases.create + canvases.access.set (requires manual sharing):
# 1. Create standalone canvas
curl -X POST https://slack.com/api/canvases.create \
-H "Authorization: Bearer $SLACK_BOT_TOKEN" \
-H "Content-Type: application/json" \
-d '{"title": "Canvas Title", "document_content": {"type": "markdown", "markdown": "# Content"}}'
# 2. Share to channel
curl -X POST https://slack.com/api/canvases.access.set \
-H "Authorization: Bearer $SLACK_BOT_TOKEN" \
-H "Content-Type: application/json" \
-d '{"canvas_id": "CANVAS_ID", "access_level": "read", "channel_ids": ["CHANNEL_ID"]}'
The Slack bot token is available in OpenClaw config: channels.slack.botToken
Focus Groups & Concepts: No versions, just states
Implementations: Semantic versioning based on merge reality
Located in workflows/:
<success_criteria>
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
ready
Auth
api_key, oauth
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/shipcalm-skill-wgsd/snapshot"
curl -s "https://xpersona.co/api/v1/agents/shipcalm-skill-wgsd/contract"
curl -s "https://xpersona.co/api/v1/agents/shipcalm-skill-wgsd/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",
"oauth"
],
"requires": [
"openclew",
"lang:typescript"
],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": "https://github.com/shipcalm/skill-wgsd#input",
"outputSchemaRef": "https://github.com/shipcalm/skill-wgsd#output",
"dataRegion": "global",
"contractUpdatedAt": "2026-02-24T19:55:07.380Z",
"sourceUpdatedAt": "2026-02-24T19:55:07.380Z",
"freshnessSeconds": 4424208
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/shipcalm-skill-wgsd/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/shipcalm-skill-wgsd/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/shipcalm-skill-wgsd/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/shipcalm-skill-wgsd/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/shipcalm-skill-wgsd/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/shipcalm-skill-wgsd/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-17T00:51:56.078Z"
}
},
"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": "be",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:be|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/shipcalm-skill-wgsd/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/shipcalm-skill-wgsd/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-24T19:55:07.380Z",
"isPublic": true
},
{
"factKey": "auth_modes",
"category": "compatibility",
"label": "Auth modes",
"value": "api_key, oauth",
"href": "https://xpersona.co/api/v1/agents/shipcalm-skill-wgsd/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/shipcalm-skill-wgsd/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:55:07.380Z",
"isPublic": true
},
{
"factKey": "schema_refs",
"category": "artifact",
"label": "Machine-readable schemas",
"value": "OpenAPI or schema references published",
"href": "https://github.com/shipcalm/skill-wgsd#input",
"sourceUrl": "https://xpersona.co/api/v1/agents/shipcalm-skill-wgsd/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:55:07.380Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Shipcalm",
"href": "https://github.com/shipcalm/skill-wgsd",
"sourceUrl": "https://github.com/shipcalm/skill-wgsd",
"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/shipcalm/skill-wgsd",
"sourceUrl": "https://github.com/shipcalm/skill-wgsd",
"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/shipcalm-skill-wgsd/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/shipcalm-skill-wgsd/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 wgsd and adjacent AI workflows.