技能详情(站内镜像,无评论)
作者:Amaury Soviche @asoviche
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.3
统计:⭐ 4 · 296 · 0 current installs · 0 all-time installs
⭐ 4
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:asoviche/ogment
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's requirements and instructions align with its stated purpose (wrapping the Ogment CLI to access many SaaS integrations); nothing requested is unexplained or out of scope, though the usual user-consent and token-storage risks of delegating account access apply.
目的
The name/description claim secure access to many SaaS via the Ogment CLI; the skill requires the 'ogment' binary and documents CLI commands (auth, catalog, invoke). That is coherent — the node package @ogment-ai/cli is the expected install path to provide the 'ogment' binary and jq is a reasonable optional helper.
说明范围
SKILL.md only instructs use of the Ogment CLI (auth flow, catalog, invoke) and does not ask to read unrelated files or environment variables. It does instruct the agent to extract a verificationUri and 'send it to your human as a clickable link' — expected for a device/browser-based auth flow, but the instructions do not advise inspecting requested scopes/permissions before approving.
安装机制
Install spec uses an npm package (@ogment-ai/cli) to create the 'ogment' binary and Homebrew to install jq. This is a standard pattern; it is not an arbitrary URL download or archive extraction. The npm install step is the primary non-trivial install action (moderate trust required in the package and its publisher).
证书
The skill declares no required environment variables or credentials. Authentication is performed via the CLI's interactive/web verification flow (the user must approve). This is proportionate, but note that the auth flow will produce tokens/credentials stored by the CLI, enabling access to Gmail/Notion/etc. — a legitimate capability but sensitive.
持久
The skill does not request always:true, does not require config paths, and does not modify other skills. Autonomous invocation is allowed by default (platform standard); combined with delegated SaaS access, this increases impact but is expected for an integration skill.
综合结论
This skill simply wraps the Ogment CLI to let the agent call your connected SaaS through Ogment's governance layer — that is coherent with its description. Before installing: (1) verify you trust the npm package @ogment-ai/cli and the ogment.ai homepage; (2) understand the auth flow: you will be asked to approve access via a verification link and that approval grants the CLI tokens that can access Gmail, Notion, Slack, etc.; (3) check what sco…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Ogment」。简介:Invoke MCP tools via Ogment CLI — secure access to Linear, Notion, Gmail, PostH…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/asoviche/ogment/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: ogment
description: Invoke MCP tools via Ogment CLI — secure access to Linear, Notion, Gmail, PostHog, and 100+ SaaS integrations through Ogment's governance layer.
version: 1.0.3
metadata:
openclaw:
requires:
bins:
- ogment
anyBins:
- jq
install:
- kind: node
package: "@ogment-ai/cli"
bins: [ogment]
- kind: brew
formula: jq
bins: [jq]
emoji: "🔌"
homepage: https://ogment.ai
---
# Ogment CLI Skill
Securely invoke MCP tools via the Ogment CLI. Access your connected SaaS tools (Linear, Notion, Gmail, Slack, Supabase, etc.) through Ogment's governance layer.
## Quick Start
### Step 1: Check Auth
```bash
ogment auth status
```
- If `loggedIn: true` → skip to Step 3
- If `loggedIn: false` → continue to Step 2
### Step 2: Login (if needed)
```bash
ogment auth login
```
Extract `verificationUri` from the response and **send it to your human as a clickable link:**
> **🔐 Approve Ogment access:**
> 👉 [Click to approve](https://dashboard.ogment.ai/cli/approve?authRequestId=...)
Wait for approval, then verify with `ogment auth status`.
### Step 3: Discover What's Available
```bash
ogment catalog
ogment catalog <serverId>
```
### Step 4: Summarize to Your Human
> **✅ Connected to Ogment!** Here's what I can access:
> - **Gmail:** 11 tools (messages, threads, drafts)
> - **Notion:** 5 tools (search, fetch, comments)
> - **Slack:** 7 tools (conversations, users)
>
> What would you like me to help with?
## Core Workflow
```
auth status → catalog → catalog <server> → invoke <server> <tool>
```
### Discover servers
```bash
ogment catalog
```
### List tools
```bash
ogment catalog <serverId>
```
### Inspect tool schema
```bash
ogment catalog <serverId> <toolName>
```
### Invoke a tool
```bash
ogment invoke <serverId> <toolName> --input '<json>'
```
## Common Patterns
### Gmail (requires `userId: "me"`)
```bash
ogment invoke <server> gmail_listMessages --input '{"userId": "me", "maxResults": 10}'
ogment invoke <server> gmail_getMessage --input '{"userId": "me", "messageId": "<id>"}'
```
### Notion
```bash
ogment invoke <server> Notion_notion-search --input '{"query": "quarterly review"}'
```
### Supabase
```bash
ogment invoke <server> Supabase_execute_sql --input '{"query": "SELECT * FROM users LIMIT 5"}'
```
### Linear
```bash
ogment invoke <server> Linear_list_issues --input '{}'
```