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
Xpersona Agent
Access business integrations (SaaS, APIs, data) securely through Ogment. Use when the user asks to query, create, update, or manage data in external systems... Skill: ogment-agentic-cli Owner: asoviche Summary: Access business integrations (SaaS, APIs, data) securely through Ogment. Use when the user asks to query, create, update, or manage data in external systems... Tags: latest:1.0.1 Version history: v1.0.1 | 2026-02-26T20:50:33.927Z | user Skill updated for the new CLI version v0.5.0 v1.0.0 | 2026-02-11T14:45:50.451Z | user Ogment 1.0.0 – Initial Release - Securely acce
clawhub skill install kn7ay3vv2tg97we8zqr45jg46180zck9:ogment-agentic-cliOverall rank
#62
Adoption
588 downloads
Trust
Unknown
Freshness
Mar 1, 2026
Freshness
Last checked Mar 1, 2026
Best For
ogment-agentic-cli 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, CLAWHUB, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
Access business integrations (SaaS, APIs, data) securely through Ogment. Use when the user asks to query, create, update, or manage data in external systems... Skill: ogment-agentic-cli Owner: asoviche Summary: Access business integrations (SaaS, APIs, data) securely through Ogment. Use when the user asks to query, create, update, or manage data in external systems... Tags: latest:1.0.1 Version history: v1.0.1 | 2026-02-26T20:50:33.927Z | user Skill updated for the new CLI version v0.5.0 v1.0.0 | 2026-02-11T14:45:50.451Z | user Ogment 1.0.0 – Initial Release - Securely acce Capability contract not published. No trust telemetry is available yet. 588 downloads reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Mar 1, 2026
Vendor
Clawhub
Artifacts
0
Benchmarks
0
Last release
1.0.1
Install & run
clawhub skill install kn7ay3vv2tg97we8zqr45jg46180zck9:ogment-agentic-cliSetup 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.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Clawhub
Protocol compatibility
OpenClaw
Latest release
1.0.1
Adoption signal
588 downloads
Handshake status
UNKNOWN
Events
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
2
Examples
4
Snippets
0
Languages
Unknown
bash
ogment servers --json
bash
ogment servers <server-path> --json
bash
ogment call <server-path> <tool-name> '<json-args>'
bash
# Discover all servers
ogment servers --json
# Inspect tools on a server
ogment servers salesforce --json
# Query data
ogment call salesforce query_accounts '{"limit":5}'
ogment call notion search '{"query":"Q1 roadmap"}'
ogment call data-warehouse run_query '{"sql":"SELECT * FROM orders LIMIT 10"}'
# Create records
ogment call salesforce create_record '{"type":"Contact","fields":{"Name":"Jane Doe","Email":"jane@example.com"}}'
# Health check (no args)
ogment call my-api get__healthSKILL.md
# Ogment CLI Skill
Securely invoke MCP tools via the Ogment CLI. Use for accessing user's connected SaaS tools (Linear, Notion, Gmail, PostHog, etc.) through Ogment's governance layer.
## When to Use
- User asks to interact with their connected services (issues, docs, emails, analytics)
- You need to call MCP tools that require auth/credentials
- Discovering what integrations the user has available
## Core Workflow
status → catalog → catalog <server> → catalog <server> <tool> → invoke
### 1. Check connectivity (if issues suspected)
ogment status
Returns auth state, connectivity, and available servers. Check summary.status for quick health.
### 2. Discover servers
ogment catalog
Returns list of servers with serverId and toolCount. Use serverId in subsequent calls.
### 3. List tools on a server
ogment catalog <serverId>
Returns all tools with name and description. Scan descriptions to find the right tool.
### 4. Inspect tool schema
ogment catalog <serverId> <toolName>
Returns inputSchema with properties, types, required fields, and descriptions.
### 5. Invoke a tool
ogment invoke <serverId>/<toolName> --input '<json>'
Input can be:
- Inline JSON: --input '{"query": "test"}'
- File: --input @path/to/input.json
- Stdin: echo '{}' | ogment invoke ... --input -
## Output Format
All commands return structured JSON with ok, data, error, meta, and next_actions fields.
- Check ok first — boolean success indicator
- next_actions — suggested follow-up commands
- error.category — validation, not_found, remote, auth, internal
- error.retryable — whether retry might help
## Common Patterns
### Find a tool by intent
ogment catalog <serverId> | jq '.data.tools[] | select(.name + .description | test("email"; "i"))'
### List issues assigned to user
ogment invoke openclaw/Linear_list_issues --input '{"assignee": "me"}'
### Search Notion
ogment invoke openclaw/Notion_notion-search --input '{"query": "quarterly review", "query_type": "internal"}'
### Get Gmail messages
ogment invoke openclaw/gmail_listMessages --input '{"q": "is:unread", "maxResults": 10}'
## Gotchas & Workarounds
1. Opaque server errors - Re-check schema, verify required fields and types
2. Example placeholders are broken - Ignore exampleInput, construct your own
3. Server/tool IDs are case-sensitive - Use exact casing from catalog
4. Empty strings cause 502s - Validate inputs before calling
5. --quiet suppresses everything - Don't use it
6. No tool search/filter - Pipe to jq and filter locally
## Error Recovery
TOOL_NOT_FOUND → Run ogment catalog to rediscover
VALIDATION_INVALID_INPUT → Check JSON syntax
TRANSPORT_REQUEST_FAILED → Check schema, required fields, types
AUTH_INVALID_CREDENTIALS → Run ogment auth login
HTTP_502 → Retry after delay
## Pre-flight Checklist
Before invoking a tool:
1. Confirmed server exists (catalog)
2. Confirmed tool exists (catalog <server>)
3. Checked required fields in schema
4. Matched types exactly (number vs string)
5. Used exact ca_meta.json
{
"ownerId": "kn7ay3vv2tg97we8zqr45jg46180zck9",
"slug": "ogment-agentic-cli",
"version": "1.0.1",
"publishedAt": 1772139033927
}Editorial read
Docs source
CLAWHUB
Editorial quality
ready
Access business integrations (SaaS, APIs, data) securely through Ogment. Use when the user asks to query, create, update, or manage data in external systems... Skill: ogment-agentic-cli Owner: asoviche Summary: Access business integrations (SaaS, APIs, data) securely through Ogment. Use when the user asks to query, create, update, or manage data in external systems... Tags: latest:1.0.1 Version history: v1.0.1 | 2026-02-26T20:50:33.927Z | user Skill updated for the new CLI version v0.5.0 v1.0.0 | 2026-02-11T14:45:50.451Z | user Ogment 1.0.0 – Initial Release - Securely acce
Skill: ogment-agentic-cli
Owner: asoviche
Summary: Access business integrations (SaaS, APIs, data) securely through Ogment. Use when the user asks to query, create, update, or manage data in external systems...
Tags: latest:1.0.1
Version history:
v1.0.1 | 2026-02-26T20:50:33.927Z | user
Skill updated for the new CLI version v0.5.0
v1.0.0 | 2026-02-11T14:45:50.451Z | user
Ogment 1.0.0 – Initial Release
Archive index:
Archive v1.0.1: 2 files, 1859 bytes
Files: SKILL.md (3038b), _meta.json (137b)
File v1.0.1:SKILL.md
Securely invoke MCP tools via the Ogment CLI. Use for accessing user's connected SaaS tools (Linear, Notion, Gmail, PostHog, etc.) through Ogment's governance layer.
status → catalog → catalog <server> → catalog <server> <tool> → invoke
ogment status
Returns auth state, connectivity, and available servers. Check summary.status for quick health.
ogment catalog
Returns list of servers with serverId and toolCount. Use serverId in subsequent calls.
ogment catalog <serverId>
Returns all tools with name and description. Scan descriptions to find the right tool.
ogment catalog <serverId> <toolName>
Returns inputSchema with properties, types, required fields, and descriptions.
ogment invoke <serverId>/<toolName> --input '<json>'
Input can be:
All commands return structured JSON with ok, data, error, meta, and next_actions fields.
ogment catalog <serverId> | jq '.data.tools[] | select(.name + .description | test("email"; "i"))'
ogment invoke openclaw/Linear_list_issues --input '{"assignee": "me"}'
ogment invoke openclaw/Notion_notion-search --input '{"query": "quarterly review", "query_type": "internal"}'
ogment invoke openclaw/gmail_listMessages --input '{"q": "is:unread", "maxResults": 10}'
TOOL_NOT_FOUND → Run ogment catalog to rediscover VALIDATION_INVALID_INPUT → Check JSON syntax TRANSPORT_REQUEST_FAILED → Check schema, required fields, types AUTH_INVALID_CREDENTIALS → Run ogment auth login HTTP_502 → Retry after delay
Before invoking a tool:
File v1.0.1:_meta.json
{ "ownerId": "kn7ay3vv2tg97we8zqr45jg46180zck9", "slug": "ogment-agentic-cli", "version": "1.0.1", "publishedAt": 1772139033927 }
Archive v1.0.0: 2 files, 1852 bytes
Files: SKILL.md (3237b), _meta.json (137b)
File v1.0.0:SKILL.md
Ogment gives you secure access to business integrations — SaaS tools, internal APIs, and data — through a single CLI. Credentials never leave Ogment. You get scoped, revocable tokens with per-tool permissions and human approval flows.
If ogment is not installed or any command fails with "not logged in":
npm install -g ogmentogment login in their terminal (opens browser for OAuth — zero arguments needed)Discover servers:
ogment servers --json
Returns all available servers across all organizations.
Inspect a server's tools:
ogment servers <server-path> --json
Returns the full list of tools with names, descriptions, and input schemas.
Call a tool:
ogment call <server-path> <tool-name> '<json-args>'
Returns JSON. Arguments must be a single JSON string. Omit args for tools that take no parameters.
Follow these steps in order:
ogment servers --json to discover available serversogment servers <path> --json to see that server's toolsogment call <server> <tool> '<args>'# Discover all servers
ogment servers --json
# Inspect tools on a server
ogment servers salesforce --json
# Query data
ogment call salesforce query_accounts '{"limit":5}'
ogment call notion search '{"query":"Q1 roadmap"}'
ogment call data-warehouse run_query '{"sql":"SELECT * FROM orders LIMIT 10"}'
# Create records
ogment call salesforce create_record '{"type":"Contact","fields":{"Name":"Jane Doe","Email":"jane@example.com"}}'
# Health check (no args)
ogment call my-api get__health
ogment login in their terminalogment servers --json to see available serversogment logout then ogment login--json when discovering servers and toolsogment call returns JSON by default — no --json flag neededogment call must be a single JSON stringFile v1.0.0:_meta.json
{ "ownerId": "kn7ay3vv2tg97we8zqr45jg46180zck9", "slug": "ogment-agentic-cli", "version": "1.0.0", "publishedAt": 1770821150451 }
Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/clawhub-asoviche-ogment-agentic-cli/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-asoviche-ogment-agentic-cli/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-asoviche-ogment-agentic-cli/trust"
Operational fit
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
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
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/clawhub-asoviche-ogment-agentic-cli/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/clawhub-asoviche-ogment-agentic-cli/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/clawhub-asoviche-ogment-agentic-cli/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-asoviche-ogment-agentic-cli/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-asoviche-ogment-agentic-cli/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-asoviche-ogment-agentic-cli/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "CLAWHUB",
"generatedAt": "2026-04-17T04:48:55.301Z"
}
},
"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": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Clawhub",
"href": "https://clawhub.ai/asoviche/ogment-agentic-cli",
"sourceUrl": "https://clawhub.ai/asoviche/ogment-agentic-cli",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/clawhub-asoviche-ogment-agentic-cli/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-asoviche-ogment-agentic-cli/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "588 downloads",
"href": "https://clawhub.ai/asoviche/ogment-agentic-cli",
"sourceUrl": "https://clawhub.ai/asoviche/ogment-agentic-cli",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "latest_release",
"category": "release",
"label": "Latest release",
"value": "1.0.1",
"href": "https://clawhub.ai/asoviche/ogment-agentic-cli",
"sourceUrl": "https://clawhub.ai/asoviche/ogment-agentic-cli",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-02-26T20:50:33.927Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/clawhub-asoviche-ogment-agentic-cli/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-asoviche-ogment-agentic-cli/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "release",
"title": "Release 1.0.1",
"description": "Skill updated for the new CLI version v0.5.0",
"href": "https://clawhub.ai/asoviche/ogment-agentic-cli",
"sourceUrl": "https://clawhub.ai/asoviche/ogment-agentic-cli",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-02-26T20:50:33.927Z",
"isPublic": true
}
]Sponsored
Ads related to ogment-agentic-cli and adjacent AI workflows.