Crawler Summary

cursor-ai-engineer answer-first brief

Expert AI/ML engineering skill for Cursor IDE grounded in Google engineering practices. Covers the full ML stack from research to production. Use when users want to (1) set up a new Cursor project with AI coding rules, (2) review code using Google's engineering standards, (3) create or customize .mdc/.cursorrules files, (4) work with ML/AI frameworks (PyTorch, Transformers, TensorFlow, scikit-learn), (5) optimize C++ inference code, (6) implement MLOps pipelines, (7) design silicon-aware AI infrastructure, or (8) establish coding standards for Python, React, SQL/Supabase projects. Stack expertise includes C++, Python, NumPy, Pandas, PyTorch (primary), TensorFlow/Keras, Hugging Face Transformers, scikit-learn, FastAPI, CUDA, and production ML systems. Triggers include "set up Cursor," "create AI rules," "review this code," "ML project," "inference optimization," "MLOps," "model serving," or "AI infrastructure." --- name: cursor-ai-engineer description: Expert AI/ML engineering skill for Cursor IDE grounded in Google engineering practices. Covers the full ML stack from research to production. Use when users want to (1) set up a new Cursor project with AI coding rules, (2) review code using Google's engineering standards, (3) create or customize .mdc/.cursorrules files, (4) work with ML/AI frameworks (PyTorch, Transformers, T Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.

Freshness

Last checked 4/14/2026

Best For

cursor-ai-engineer is best for general automation workflows where OpenClaw 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

Claim this agent
Agent DossierGitHubSafety: 94/100

cursor-ai-engineer

Expert AI/ML engineering skill for Cursor IDE grounded in Google engineering practices. Covers the full ML stack from research to production. Use when users want to (1) set up a new Cursor project with AI coding rules, (2) review code using Google's engineering standards, (3) create or customize .mdc/.cursorrules files, (4) work with ML/AI frameworks (PyTorch, Transformers, TensorFlow, scikit-learn), (5) optimize C++ inference code, (6) implement MLOps pipelines, (7) design silicon-aware AI infrastructure, or (8) establish coding standards for Python, React, SQL/Supabase projects. Stack expertise includes C++, Python, NumPy, Pandas, PyTorch (primary), TensorFlow/Keras, Hugging Face Transformers, scikit-learn, FastAPI, CUDA, and production ML systems. Triggers include "set up Cursor," "create AI rules," "review this code," "ML project," "inference optimization," "MLOps," "model serving," or "AI infrastructure." --- name: cursor-ai-engineer description: Expert AI/ML engineering skill for Cursor IDE grounded in Google engineering practices. Covers the full ML stack from research to production. Use when users want to (1) set up a new Cursor project with AI coding rules, (2) review code using Google's engineering standards, (3) create or customize .mdc/.cursorrules files, (4) work with ML/AI frameworks (PyTorch, Transformers, T

OpenClawself-declared

Public facts

4

Change events

1

Artifacts

0

Freshness

Apr 14, 2026

Verifiededitorial-contentNo verified compatibility signals

Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.

Trust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 14, 2026

Vendor

Ibucketbranch

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.

Setup snapshot

git clone https://github.com/ibucketbranch/claudeskills.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    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.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Ibucketbranch

profilemedium
Observed Apr 14, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 14, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB OPENCLEW

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Parameters

Executable Examples

text

Baseline:     Python + PyTorch + Transformers
Elite:        C++ + inference optimization  
Production:   MLOps (separates toy projects from real products)
Future:       AI infra + silicon-aware design

bash

# Create rules directory
mkdir -p .cursor/rules

# Always include core rules
cp assets/mdc-templates/core.mdc .cursor/rules/

# Add stack-specific rules
cp assets/mdc-templates/python.mdc .cursor/rules/      # Python projects
cp assets/mdc-templates/react.mdc .cursor/rules/       # React/TS projects
cp assets/mdc-templates/sql-supabase.mdc .cursor/rules/ # Database work

# ML/AI projects - add relevant templates
cp assets/mdc-templates/ml-stack.mdc .cursor/rules/     # PyTorch, TF, sklearn
cp assets/mdc-templates/ml-engineering.mdc .cursor/rules/ # Training loops
cp assets/mdc-templates/cpp-inference.mdc .cursor/rules/  # C++ optimization
cp assets/mdc-templates/mlops.mdc .cursor/rules/        # Production ML
cp assets/mdc-templates/ai-infra.mdc .cursor/rules/     # Infrastructure

yaml

---
description: Clear description of when this rule applies
globs: ["*.py", "**/*.py"]  # File patterns
alwaysApply: false  # true = always active, false = agent-requested
---

# Rule Title

Concise instructions for the AI. Use imperative form.
- Specific, actionable guidance
- Examples when helpful
- Constraints and boundaries

text

[Context]: What exists, what's the goal
[Task]: Specific action to take
[Constraints]: Boundaries, patterns to follow
[Verification]: How to confirm success

text

Context: FastAPI backend with SQLAlchemy, auth via Supabase
Task: Add endpoint for user preferences CRUD
Constraints: Follow existing patterns in routes/users.py, use Pydantic models
Verification: Write tests first, then implement until tests pass

text

.cursor/
├── rules/
│   ├── core.mdc           # Always-on foundational rules
│   ├── python.mdc         # Python-specific (auto-attach *.py)
│   ├── react.mdc          # React-specific (auto-attach *.tsx)
│   ├── sql.mdc            # SQL-specific
│   ├── ml.mdc             # ML engineering rules
│   └── code-review.mdc    # Review workflow rules
└── .cursorignore          # Files to exclude from AI context

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Expert AI/ML engineering skill for Cursor IDE grounded in Google engineering practices. Covers the full ML stack from research to production. Use when users want to (1) set up a new Cursor project with AI coding rules, (2) review code using Google's engineering standards, (3) create or customize .mdc/.cursorrules files, (4) work with ML/AI frameworks (PyTorch, Transformers, TensorFlow, scikit-learn), (5) optimize C++ inference code, (6) implement MLOps pipelines, (7) design silicon-aware AI infrastructure, or (8) establish coding standards for Python, React, SQL/Supabase projects. Stack expertise includes C++, Python, NumPy, Pandas, PyTorch (primary), TensorFlow/Keras, Hugging Face Transformers, scikit-learn, FastAPI, CUDA, and production ML systems. Triggers include "set up Cursor," "create AI rules," "review this code," "ML project," "inference optimization," "MLOps," "model serving," or "AI infrastructure." --- name: cursor-ai-engineer description: Expert AI/ML engineering skill for Cursor IDE grounded in Google engineering practices. Covers the full ML stack from research to production. Use when users want to (1) set up a new Cursor project with AI coding rules, (2) review code using Google's engineering standards, (3) create or customize .mdc/.cursorrules files, (4) work with ML/AI frameworks (PyTorch, Transformers, T

Full README

name: cursor-ai-engineer description: Expert AI/ML engineering skill for Cursor IDE grounded in Google engineering practices. Covers the full ML stack from research to production. Use when users want to (1) set up a new Cursor project with AI coding rules, (2) review code using Google's engineering standards, (3) create or customize .mdc/.cursorrules files, (4) work with ML/AI frameworks (PyTorch, Transformers, TensorFlow, scikit-learn), (5) optimize C++ inference code, (6) implement MLOps pipelines, (7) design silicon-aware AI infrastructure, or (8) establish coding standards for Python, React, SQL/Supabase projects. Stack expertise includes C++, Python, NumPy, Pandas, PyTorch (primary), TensorFlow/Keras, Hugging Face Transformers, scikit-learn, FastAPI, CUDA, and production ML systems. Triggers include "set up Cursor," "create AI rules," "review this code," "ML project," "inference optimization," "MLOps," "model serving," or "AI infrastructure." alwaysApply: true

Cursor AI Engineer

Expert AI/ML engineering skill for Cursor IDE, applying Google's engineering practices across the full ML stack.

Skill Tiers

Baseline:     Python + PyTorch + Transformers
Elite:        C++ + inference optimization  
Production:   MLOps (separates toy projects from real products)
Future:       AI infra + silicon-aware design

Quick Reference

| Task | Template | |------|----------| | How to use this skill | references/usage-guide.md | | Expert debugging/profiling | references/expert-knowledge.md | | Learning roadmap & courses | references/learning-resources.md |

| Task | Template | |------|----------| | New project setup | core.mdc + stack-specific templates | | Python/FastAPI | python.mdc | | React/TypeScript | react.mdc | | SQL/Supabase | sql-supabase.mdc | | ML Stack (PyTorch, TF, sklearn) | ml-stack.mdc | | ML Training/Experiments | ml-engineering.mdc | | C++ Inference Optimization | cpp-inference.mdc | | MLOps/Production | mlops.mdc | | AI Infrastructure | ai-infra.mdc | | Code Review | code-review.mdc |

Core Workflows

1. Set Up New Cursor Project

# Create rules directory
mkdir -p .cursor/rules

# Always include core rules
cp assets/mdc-templates/core.mdc .cursor/rules/

# Add stack-specific rules
cp assets/mdc-templates/python.mdc .cursor/rules/      # Python projects
cp assets/mdc-templates/react.mdc .cursor/rules/       # React/TS projects
cp assets/mdc-templates/sql-supabase.mdc .cursor/rules/ # Database work

# ML/AI projects - add relevant templates
cp assets/mdc-templates/ml-stack.mdc .cursor/rules/     # PyTorch, TF, sklearn
cp assets/mdc-templates/ml-engineering.mdc .cursor/rules/ # Training loops
cp assets/mdc-templates/cpp-inference.mdc .cursor/rules/  # C++ optimization
cp assets/mdc-templates/mlops.mdc .cursor/rules/        # Production ML
cp assets/mdc-templates/ai-infra.mdc .cursor/rules/     # Infrastructure

After copying, customize each .mdc file:

  1. Update project-specific paths and conventions
  2. Add team-specific naming patterns
  3. Include relevant library versions and APIs

2. Code Review (Google Standard)

Apply this checklist to every review:

Design

  • Does this change belong in this codebase?
  • Is it well-integrated with the rest of the system?

Functionality

  • Does code do what the author intended?
  • Is behavior good for users of this code?

Complexity

  • Could it be simpler?
  • Will another developer understand it easily?

Tests

  • Are there correct, well-designed automated tests?
  • Do tests cover edge cases?

Naming

  • Are names clear and descriptive?
  • Do they follow project conventions?

Comments

  • Are comments clear and explain why, not what?
  • Is documentation updated alongside code?

Style

  • Does code conform to style guides?
  • Is formatting consistent?

For detailed guidance, see references/google-engineering.md.

3. Create AI Coding Rules

Rule structure (.mdc format):

---
description: Clear description of when this rule applies
globs: ["*.py", "**/*.py"]  # File patterns
alwaysApply: false  # true = always active, false = agent-requested
---

# Rule Title

Concise instructions for the AI. Use imperative form.
- Specific, actionable guidance
- Examples when helpful
- Constraints and boundaries

Best practices:

  • Keep rules under 500 lines
  • One concern per rule file
  • Use globs to auto-attach rules to relevant files
  • Write for another Claude/AI instance, not humans

4. Effective Cursor Prompting

Prompt structure:

[Context]: What exists, what's the goal
[Task]: Specific action to take
[Constraints]: Boundaries, patterns to follow
[Verification]: How to confirm success

Example:

Context: FastAPI backend with SQLAlchemy, auth via Supabase
Task: Add endpoint for user preferences CRUD
Constraints: Follow existing patterns in routes/users.py, use Pydantic models
Verification: Write tests first, then implement until tests pass

Mode selection:

  • Agent Mode (⌘.): Multi-file changes, refactoring, new features
  • Chat Mode: Questions, explanations, design discussions
  • Inline Edit (⌘K): Single-location focused edits

For detailed workflows, see references/cursor-workflows.md.

File Organization

.cursor/
├── rules/
│   ├── core.mdc           # Always-on foundational rules
│   ├── python.mdc         # Python-specific (auto-attach *.py)
│   ├── react.mdc          # React-specific (auto-attach *.tsx)
│   ├── sql.mdc            # SQL-specific
│   ├── ml.mdc             # ML engineering rules
│   └── code-review.mdc    # Review workflow rules
└── .cursorignore          # Files to exclude from AI context

Key Principles (Google Engineering)

  1. Continuous improvement over perfection - Approve CLs that improve overall code health
  2. Technical facts over opinions - Base decisions on data and engineering principles
  3. Style guide is authority - On style matters, defer to the guide
  4. Implement what's needed now - Avoid speculative features
  5. Tests and docs in same CL - Keep changes atomic and complete

Template Assets

Located in assets/mdc-templates/:

Foundation

  • core.mdc - Always-on foundational rules (context-first, naming, testing)

Languages & Frameworks

  • python.mdc - Python/FastAPI/Pydantic patterns
  • react.mdc - React/TypeScript/Tailwind patterns
  • sql-supabase.mdc - SQL, Supabase, MySQL patterns
  • cpp-inference.mdc - C++ inference optimization, CUDA, SIMD

ML/AI Stack

  • ml-stack.mdc - NumPy, Pandas, PyTorch, TensorFlow, Transformers, scikit-learn
  • ml-engineering.mdc - Training loops, experiment tracking, model development

Production & Infrastructure

  • mlops.mdc - DVC, MLflow, CI/CD, feature stores, monitoring
  • ai-infra.mdc - Silicon-aware design, GPU optimization, model serving

Process

  • code-review.mdc - Google-style review workflow

Framework Priority (ML/AI)

  1. PyTorch — Primary framework (🔥 most important)
  2. Hugging Face Transformers — NLP/LLM tasks
  3. TensorFlow/Keras — When required by existing code
  4. Scikit-learn — Classical ML, preprocessing, evaluation

Skill Progression Path

1. Baseline: Python + PyTorch + Transformers
   → Core ML development, model training, fine-tuning

2. Elite: + C++ inference optimization
   → SIMD, CUDA kernels, quantization, low-latency serving

3. Production: + MLOps
   → DVC, MLflow, CI/CD, monitoring, feature stores

4. Future: + AI infrastructure
   → Multi-GPU, TensorRT, vLLM, silicon-aware design

Copy and customize these templates for each project.

Expert-Level Guidance

For advanced troubleshooting and deep knowledge, see references/expert-knowledge.md:

Debugging Workflows:

  • NaN/Inf in training
  • Out of Memory (OOM)
  • Slow training diagnosis
  • Model not learning

Performance Profiling:

  • PyTorch profiler usage
  • NVIDIA Nsight Systems
  • Roofline analysis
  • Bottleneck identification

Common Pitfalls:

  • PyTorch gotchas (no_grad, data transfer, vectorization)
  • CUDA pitfalls (coalescing, bank conflicts, warp divergence)
  • Training bugs (gradient accumulation, data leakage)

Architecture Decisions:

  • Framework selection guide
  • Training strategy selection (DDP vs FSDP vs DeepSpeed)
  • PEFT method selection (LoRA vs QLoRA vs adapters)
  • Quantization decision tree

Memory Estimation:

  • Model memory formulas
  • Activation memory calculation
  • Quick estimates for common model sizes

Hyperparameter Ranges:

  • Learning rates by optimizer and task
  • Batch sizes by domain
  • LoRA hyperparameters (r, alpha, dropout)

Learning & Deep Dive Resources

For continued learning, see references/learning-resources.md:

Top Free Courses:

  • fast.ai - Practical Deep Learning
  • Hugging Face NLP/LLM Courses
  • Andrej Karpathy - Neural Networks: Zero to Hero
  • Full Stack Deep Learning

Essential Books:

  • "Deep Learning" (Goodfellow) - free at deeplearningbook.org
  • "Dive into Deep Learning" - free at d2l.ai
  • "Programming Massively Parallel Processors" (CUDA bible)
  • "Designing Machine Learning Systems" (Huyen)

Key Papers:

  • Attention Is All You Need (Transformers)
  • LoRA / QLoRA (efficient fine-tuning)
  • FlashAttention (memory-efficient attention)

Communities:

  • Hugging Face Discord
  • PyTorch Forums
  • r/MachineLearning, r/LocalLLaMA

Practice Platforms:

  • Kaggle (competitions + free GPUs)
  • Google Colab (free T4)

Learning Roadmap: Foundations → PyTorch → Transformers → MLOps → Specialization

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/ibucketbranch-claudeskills/snapshot"
curl -s "https://xpersona.co/api/v1/agents/ibucketbranch-claudeskills/contract"
curl -s "https://xpersona.co/api/v1/agents/ibucketbranch-claudeskills/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

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

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITHUB_REPOSactivepieces

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

OPENCLAW
GITHUB_REPOScherry-studio

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

MCPOPENCLAW
GITHUB_REPOSAionUi

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

MCPOPENCLAW
GITHUB_REPOSCopilotKit

Rank

70

The Frontend for Agents & Generative UI. React + Angular

Traction

No public download signal

Freshness

Updated 23d ago

OPENCLAW
Machine Appendix

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/ibucketbranch-claudeskills/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/ibucketbranch-claudeskills/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/ibucketbranch-claudeskills/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/ibucketbranch-claudeskills/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/ibucketbranch-claudeskills/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/ibucketbranch-claudeskills/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-16T23:36:01.819Z"
    }
  },
  "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"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|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": "Ibucketbranch",
    "href": "https://github.com/ibucketbranch/claudeskills",
    "sourceUrl": "https://github.com/ibucketbranch/claudeskills",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-14T22:27:19.149Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/ibucketbranch-claudeskills/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/ibucketbranch-claudeskills/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-14T22:27:19.149Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/ibucketbranch-claudeskills/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/ibucketbranch-claudeskills/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 cursor-ai-engineer and adjacent AI workflows.