Crawler Summary

manatal-api answer-first brief

Interact with Manatal recruitment API for candidates, jobs, matches, contacts, and organizations. Use when working with recruiting data, applicant tracking, or HR automation. --- name: manatal-api description: Interact with Manatal recruitment API for candidates, jobs, matches, contacts, and organizations. Use when working with recruiting data, applicant tracking, or HR automation. --- Manatal API Reference Authentication Set your API key as an environment variable: All requests require authentication via header: - **Preferred**: Authorization: Token $MANATAL_API_KEY - **Alternative**: x- Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Freshness

Last checked 4/15/2026

Best For

manatal-api 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

manatal-api

Interact with Manatal recruitment API for candidates, jobs, matches, contacts, and organizations. Use when working with recruiting data, applicant tracking, or HR automation. --- name: manatal-api description: Interact with Manatal recruitment API for candidates, jobs, matches, contacts, and organizations. Use when working with recruiting data, applicant tracking, or HR automation. --- Manatal API Reference Authentication Set your API key as an environment variable: All requests require authentication via header: - **Preferred**: Authorization: Token $MANATAL_API_KEY - **Alternative**: x-

OpenClawself-declared

Public facts

4

Change events

1

Artifacts

0

Freshness

Apr 15, 2026

Verifiededitorial-contentNo verified compatibility signals

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

Trust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 15, 2026

Vendor

Kismet Labs Inc

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/15/2026.

Setup snapshot

git clone https://github.com/Kismet-Labs-Inc/manatal-skills.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

Kismet Labs Inc

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

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 15, 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

bash

export MANATAL_API_KEY="your-api-key-here"

bash

curl -X GET "https://api.manatal.com/open/v3/candidates/?limit=20&offset=0" \
  -H "Authorization: Token $MANATAL_API_KEY"

bash

curl -X GET "https://api.manatal.com/open/v3/candidates/?limit=20&offset=0" \
  -H "Authorization: Token $MANATAL_API_KEY"

bash

curl -X POST "https://api.manatal.com/open/v3/candidates/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{

bash

curl -X POST "https://api.manatal.com/open/v3/candidates/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "first_name": "John",
    "last_name": "Doe",
    "email": "john.doe@example.com",
    "phone_number": "+1234567890",
    "position_applied": "Software Engineer"
  }'

bash

curl -X GET "https://api.manatal.com/open/v3/candidates/{id}/" \
  -H "Authorization: Token $MANATAL_API_KEY"

Docs & README

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

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Interact with Manatal recruitment API for candidates, jobs, matches, contacts, and organizations. Use when working with recruiting data, applicant tracking, or HR automation. --- name: manatal-api description: Interact with Manatal recruitment API for candidates, jobs, matches, contacts, and organizations. Use when working with recruiting data, applicant tracking, or HR automation. --- Manatal API Reference Authentication Set your API key as an environment variable: All requests require authentication via header: - **Preferred**: Authorization: Token $MANATAL_API_KEY - **Alternative**: x-

Full README

name: manatal-api description: Interact with Manatal recruitment API for candidates, jobs, matches, contacts, and organizations. Use when working with recruiting data, applicant tracking, or HR automation.

Manatal API Reference

Authentication

Set your API key as an environment variable:

export MANATAL_API_KEY="your-api-key-here"

All requests require authentication via header:

  • Preferred: Authorization: Token $MANATAL_API_KEY
  • Alternative: x-api-key: $MANATAL_API_KEY

Base URL: https://api.manatal.com/open/v3/

Quick Reference

| Resource | List | Create | Get | Update | Delete | |----------|------|--------|-----|--------|--------| | Candidates | GET /candidates/ | POST /candidates/ | GET /candidates/{id}/ | PATCH /candidates/{id}/ | DELETE /candidates/{id}/ | | Jobs | GET /jobs/ | POST /jobs/ | GET /jobs/{id}/ | PATCH /jobs/{id}/ | DELETE /jobs/{id}/ | | Matches | GET /matches/ | POST /matches/ | GET /matches/{id}/ | PATCH /matches/{id}/ | DELETE /matches/{id}/ | | Contacts | GET /contacts/ | POST /contacts/ | GET /contacts/{id}/ | PATCH /contacts/{id}/ | DELETE /contacts/{id}/ | | Organizations | GET /organizations/ | POST /organizations/ | GET /organizations/{id}/ | PATCH /organizations/{id}/ | DELETE /organizations/{id}/ |

Common Query Parameters

  • Pagination: ?limit=20&offset=0
  • Ordering: ?ordering=created_at or ?ordering=-created_at (descending)
  • Search: ?search=keyword
  • Filtering: Resource-specific, e.g., ?status=active

Candidates

List Candidates

curl -X GET "https://api.manatal.com/open/v3/candidates/?limit=20&offset=0" \
  -H "Authorization: Token $MANATAL_API_KEY"

Create Candidate

curl -X POST "https://api.manatal.com/open/v3/candidates/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "first_name": "John",
    "last_name": "Doe",
    "email": "john.doe@example.com",
    "phone_number": "+1234567890",
    "position_applied": "Software Engineer"
  }'

Get Candidate

curl -X GET "https://api.manatal.com/open/v3/candidates/{id}/" \
  -H "Authorization: Token $MANATAL_API_KEY"

Update Candidate

curl -X PATCH "https://api.manatal.com/open/v3/candidates/{id}/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"first_name": "Jane"}'

Delete Candidate

curl -X DELETE "https://api.manatal.com/open/v3/candidates/{id}/" \
  -H "Authorization: Token $MANATAL_API_KEY"

Candidate Sub-resources

| Sub-resource | Endpoint | |--------------|----------| | Activities | GET/POST /candidates/{id}/activities/ | | Educations | GET/POST /candidates/{id}/educations/ | | Experiences | GET/POST /candidates/{id}/experiences/ | | Attachments | GET/POST /candidates/{id}/attachments/ | | Notes | GET/POST /candidates/{id}/notes/ | | Matches | GET /candidates/{id}/matches/ |

Add Candidate Education

curl -X POST "https://api.manatal.com/open/v3/candidates/{id}/educations/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "school": "MIT",
    "degree": "Bachelor",
    "field_of_study": "Computer Science",
    "start_date": "2015-09-01",
    "end_date": "2019-06-01"
  }'

Add Candidate Experience

curl -X POST "https://api.manatal.com/open/v3/candidates/{id}/experiences/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "company_name": "Tech Corp",
    "position_title": "Software Developer",
    "start_date": "2019-07-01",
    "is_current": true
  }'

Upload Candidate Attachment (Resume)

curl -X POST "https://api.manatal.com/open/v3/candidates/{id}/attachments/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -F "file=@/path/to/resume.pdf" \
  -F "attachment_type=resume"

Jobs

List Jobs

curl -X GET "https://api.manatal.com/open/v3/jobs/?limit=20&offset=0" \
  -H "Authorization: Token $MANATAL_API_KEY"

Create Job

curl -X POST "https://api.manatal.com/open/v3/jobs/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "position_name": "Senior Software Engineer",
    "department": "Engineering",
    "status": "open",
    "job_type": "full_time",
    "description": "We are looking for...",
    "requirements": "5+ years experience..."
  }'

Get Job

curl -X GET "https://api.manatal.com/open/v3/jobs/{id}/" \
  -H "Authorization: Token $MANATAL_API_KEY"

Update Job

curl -X PATCH "https://api.manatal.com/open/v3/jobs/{id}/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"status": "closed"}'

Delete Job

curl -X DELETE "https://api.manatal.com/open/v3/jobs/{id}/" \
  -H "Authorization: Token $MANATAL_API_KEY"

Job Sub-resources

| Sub-resource | Endpoint | |--------------|----------| | Activities | GET/POST /jobs/{id}/activities/ | | Attachments | GET/POST /jobs/{id}/attachments/ | | Matches | GET /jobs/{id}/matches/ | | Notes | GET/POST /jobs/{id}/notes/ |


Matches

Matches connect candidates to jobs through the recruitment pipeline.

List Matches

curl -X GET "https://api.manatal.com/open/v3/matches/?limit=20" \
  -H "Authorization: Token $MANATAL_API_KEY"

Filter by job or candidate:

curl -X GET "https://api.manatal.com/open/v3/matches/?job={job_id}" \
  -H "Authorization: Token $MANATAL_API_KEY"

curl -X GET "https://api.manatal.com/open/v3/matches/?candidate={candidate_id}" \
  -H "Authorization: Token $MANATAL_API_KEY"

Create Match

curl -X POST "https://api.manatal.com/open/v3/matches/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "candidate": {candidate_id},
    "job": {job_id},
    "stage": {stage_id}
  }'

Update Match Stage

curl -X PATCH "https://api.manatal.com/open/v3/matches/{id}/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"stage": {new_stage_id}}'

Match Sub-resources

| Sub-resource | Endpoint | |--------------|----------| | Activities | GET/POST /matches/{id}/activities/ | | Attachments | GET/POST /matches/{id}/attachments/ | | Notes | GET/POST /matches/{id}/notes/ |


Contacts

Contacts are people at client organizations (hiring managers, etc.).

List Contacts

curl -X GET "https://api.manatal.com/open/v3/contacts/?limit=20" \
  -H "Authorization: Token $MANATAL_API_KEY"

Create Contact

curl -X POST "https://api.manatal.com/open/v3/contacts/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "first_name": "Sarah",
    "last_name": "Smith",
    "email": "sarah.smith@company.com",
    "organization": {organization_id},
    "position_title": "HR Manager"
  }'

Get/Update/Delete Contact

# Get
curl -X GET "https://api.manatal.com/open/v3/contacts/{id}/" \
  -H "Authorization: Token $MANATAL_API_KEY"

# Update
curl -X PATCH "https://api.manatal.com/open/v3/contacts/{id}/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"position_title": "Senior HR Manager"}'

# Delete
curl -X DELETE "https://api.manatal.com/open/v3/contacts/{id}/" \
  -H "Authorization: Token $MANATAL_API_KEY"

Organizations

Client companies/organizations.

List Organizations

curl -X GET "https://api.manatal.com/open/v3/organizations/?limit=20" \
  -H "Authorization: Token $MANATAL_API_KEY"

Create Organization

curl -X POST "https://api.manatal.com/open/v3/organizations/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Acme Corporation",
    "industry": "Technology",
    "website": "https://acme.com",
    "description": "Leading tech company"
  }'

Get/Update/Delete Organization

# Get
curl -X GET "https://api.manatal.com/open/v3/organizations/{id}/" \
  -H "Authorization: Token $MANATAL_API_KEY"

# Update
curl -X PATCH "https://api.manatal.com/open/v3/organizations/{id}/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"industry": "Software"}'

# Delete
curl -X DELETE "https://api.manatal.com/open/v3/organizations/{id}/" \
  -H "Authorization: Token $MANATAL_API_KEY"

Reference Data

Read-only endpoints for system reference data.

Match Stages (Pipeline Stages)

curl -X GET "https://api.manatal.com/open/v3/match-stages/" \
  -H "Authorization: Token $MANATAL_API_KEY"

Job Pipelines

curl -X GET "https://api.manatal.com/open/v3/job-pipelines/" \
  -H "Authorization: Token $MANATAL_API_KEY"

Users

curl -X GET "https://api.manatal.com/open/v3/users/" \
  -H "Authorization: Token $MANATAL_API_KEY"

Other Reference Endpoints

  • GET /currencies/ - Available currencies
  • GET /languages/ - Language codes
  • GET /nationalities/ - Nationality codes
  • GET /industries/ - Industry categories
  • GET /countries/ - Country codes

Career Page (Public)

Public endpoints for career page integrations.

List Public Jobs

curl -X GET "https://api.manatal.com/open/v3/career-page/{career_page_id}/jobs/"

Get Application Form Schema

curl -X GET "https://api.manatal.com/open/v3/career-page/{career_page_id}/jobs/{job_id}/application-form/"

Submit Application

curl -X POST "https://api.manatal.com/open/v3/career-page/{career_page_id}/jobs/{job_id}/apply/" \
  -H "Content-Type: multipart/form-data" \
  -F "first_name=John" \
  -F "last_name=Doe" \
  -F "email=john@example.com" \
  -F "resume=@/path/to/resume.pdf"

Submit Referral

curl -X POST "https://api.manatal.com/open/v3/career-page/{career_page_id}/jobs/{job_id}/refer/" \
  -H "Content-Type: application/json" \
  -d '{
    "referrer_name": "Jane Smith",
    "referrer_email": "jane@example.com",
    "candidate_first_name": "John",
    "candidate_last_name": "Doe",
    "candidate_email": "john@example.com"
  }'

Webhooks

Subscribe to events for real-time notifications.

List Webhooks

curl -X GET "https://api.manatal.com/open/v3/webhooks/" \
  -H "Authorization: Token $MANATAL_API_KEY"

Create Webhook

curl -X POST "https://api.manatal.com/open/v3/webhooks/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://your-server.com/webhook",
    "events": ["candidate.created", "candidate.updated", "match.stage_changed"],
    "is_active": true
  }'

Available Events

  • candidate.created, candidate.updated, candidate.deleted
  • job.created, job.updated, job.deleted
  • match.created, match.updated, match.deleted, match.stage_changed
  • contact.created, contact.updated, contact.deleted
  • organization.created, organization.updated, organization.deleted

Update/Delete Webhook

# Update
curl -X PATCH "https://api.manatal.com/open/v3/webhooks/{id}/" \
  -H "Authorization: Token $MANATAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"is_active": false}'

# Delete
curl -X DELETE "https://api.manatal.com/open/v3/webhooks/{id}/" \
  -H "Authorization: Token $MANATAL_API_KEY"

Error Handling

Common HTTP Status Codes

  • 200 - Success
  • 201 - Created
  • 204 - No Content (successful delete)
  • 400 - Bad Request (invalid data)
  • 401 - Unauthorized (invalid/missing API key)
  • 403 - Forbidden (insufficient permissions)
  • 404 - Not Found
  • 429 - Rate Limited
  • 500 - Server Error

Error Response Format

{
  "detail": "Error message here",
  "errors": {
    "field_name": ["Specific field error"]
  }
}

Rate Limiting

If you receive a 429 response, wait and retry with exponential backoff:

# Check rate limit headers in response
# X-RateLimit-Limit: requests allowed per window
# X-RateLimit-Remaining: requests remaining
# X-RateLimit-Reset: Unix timestamp when limit resets

Tips

  1. Bash variable timing: When using $MANATAL_API_KEY, export it in a separate command first, or use the key directly. Running export VAR=x && curl $VAR won't work because bash expands variables before executing export.
  2. Always paginate large lists to avoid timeouts
  3. Use filters to narrow results before fetching
  4. Store IDs returned from create operations for future reference
  5. Check stage IDs via /match-stages/ before moving candidates through pipeline
  6. Validate webhooks by checking the signature header on incoming requests

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/kismet-labs-inc-manatal-skills/snapshot"
curl -s "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/contract"
curl -s "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/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 6d 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/kismet-labs-inc-manatal-skills/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/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-17T02:49:51.768Z"
    }
  },
  "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": "Kismet Labs Inc",
    "href": "https://github.com/Kismet-Labs-Inc/manatal-skills",
    "sourceUrl": "https://github.com/Kismet-Labs-Inc/manatal-skills",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T02:15:40.482Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-15T02:15:40.482Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/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 manatal-api and adjacent AI workflows.