Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

venn-nino维恩·尼诺

Agent Skill

venn-nino 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,794

周安装

155

GitHub Stars

公开资料未说明

下载量

1,228
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:venn-nino(维恩·尼诺)
来源仓库:https://github.com/ninonano64/venn-nino
安装命令:
openclaw skills install venn-nino
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install venn-nino

简介

venn-nino 提供统一 MCP 端点连接多种企业工具,包括 Gmail、GitHub、Salesforce 等。

  • 适合在 OpenClaw 中实现自动化工作流集成,减少重复性手动操作。
  • 通过标准化接口调用各平台功能,具体可用命令与权限范围需参照官方示例配置。
  • 使用前务必完成 OAuth 授权与安全审计,防止凭证泄露导致账户风险。
  • 建议在生产环境启用日志监控,及时发现异常访问或权限滥用行为。

SKILL.md

name
venn
description
Safely connects Gmail, Calendar, Drive, Atlassian (Jira/Confluence), Notion, GitHub, Salesforce, and dozens of other enterprise tools via a single MCP endpoint. Free, register @ https://venn.ai
version
1.0.4
metadata
openclaw
emoji
🦉
requires
env
bins
setup
on_missing
variable
VENN_UNIVERSAL_URL
store
openclaw.json
on_ready
help
Install/build vennporter (device_code-capable fork)
help
Register the Venn MCP server using vennporter
help
Authenticate Venn via device code (headless-safe)
help
Verify Venn is healthy
fields
label
Venn Universal URL
type
string
ui
config
placeholder
https://app.venn.ai/mcp
help
Your Venn Universal URL from https://app.venn.ai/assistants/openclaw
examples
label
Check connected services
label
Check recent emails
label
Check for work in Jira
label
Review figma figjam session
primaryEnv
VENN_UNIVERSAL_URL
auth
method
oauth
provider
venn

Venn Your Universal MCP Server

Overview

You are the architectural bridge between the user and their enterprise SaaS stack. You operate via the Venn MCP gateway to coordinate tasks across Atlassian, Google Workspace, Notion, Box, and other enterprise software tools.

⚡️ Quick Start Prompts

Copy and paste these to get started:

  • First Time Setup: @venn setup. Here is my URL: [PASTE_UNIVERSAL_URL_HERE]
  • Reauthenticate: @venn auth
  • Discovery: @venn Show me all my connected services

Core Activation Loop

When @venn is mentioned, or the user asks for data from a Venn-connected SaaS service (Gmail, Jira, Notion, etc.):

  1. Verify Environment: Check if VENN_UNIVERSAL_URL is set. If not, follow the Setup Flow.
  2. The Discovery Loop: Since Venn is a "Server of Servers," you must discover tools dynamically:

- Search: Use ~/.local/bin/vennporter call venn.search_tools --args '{"query":"..."}' for every new request. - Describe: Use ~/.local/bin/vennporter call venn.describe_tools to validate JSON schemas before execution. - Governance: Check for write_operation: "audit". If present, you MUST pause for user confirmation.

Setup Request with Venn Universal URL & Bootstrap

If the user provides a URL in response to a setup request:

  1. Save & Sync: Confirm you have saved the URL as an environment variable VENN_UNIVERSAL_URL
  2. Register: Immediately run ~/.local/bin/vennporter config add venn --url <URL> --auth oauth --deviceCodeGrant.
  3. Authenticate: Follow Venn Authentication.
  4. Verify Health: Run ~/.local/bin/vennporter list and confirm the venn status is "ok" before proceeding.

Setup Request with Missing Venn Universal URL

If VENN_UNIVERSAL_URL is missing or the connection is broken:

  1. Request URL: Prompt the user for their Venn Universal URL from Venn.ai.
  2. Register Server: Once provided, run:

~/.local/bin/vennporter config add venn --url "$VENN_UNIVERSAL_URL" --auth oauth --deviceCodeGrant

  1. Initiate OAuth: Check browser availability (see above).

- Browser available: Run ~/.local/bin/vennporter auth venn to launch the browser authorization. - No browser: Follow Headless Authentication below.

  1. Verify Health: Run ~/.local/bin/vennporter list and confirm the venn status is "ok" before proceeding.

Venn Authentication

Step 1 — Build vennporter (once)

Check if the build already exists. If ~/.local/share/vennporter/dist/cli.js is missing, run:

bash ~/.openclaw/workspace/skills/venn/scripts/install-vennporter.sh"

Step 2 — Authenticate

In a sub-process, run the following command:

~/.local/bin/vennporter auth venn

Polling sub-process for outcome (timeout is 3 minutes)

  1. Every 5 seconds, poll sub-process for output.
  2. If Authorization complete for 'venn' is received, then the sub-process is complete.
  3. If To authorize, visit [[auth_url]] is received, inform user to visit auth_url to authenticate Venn.
  4. If Failed to authorize 'venn' is received DO NOT automatically retry authenticating. Inform user it did not complete.
  5. Go back to step 1 until success or timeout.

Execution Protocols

1. High-Efficiency Workflows

Always prefer execute_workflow for multi-step tasks to reduce latency.

  • Context Guardrail: Extract only necessary keys (e.g., id, subject, summary). Do not return full raw API payloads to the user.
  • Timeout Management: Enterprise SaaS calls can be slow. If using a run tool, set a 30s timeout for Venn workflows.

2. Single Tool Calls via venn.execute_tool

For individual operations, use this syntax:

~/.local/bin/vennporter call venn.execute_tool --args '{"server_id":"atlassian","tool_name":"atlassian_user_info","tool_args":{}}'

3. Discover which services are connected to Venn via venn.help tool

To list all services that user has connected to their Venn account, use this syntax:

~/.local/bin/vennporter call venn.help --args '{"action":"LIST_SERVERS"}'

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.22%
按下载量换算1,022

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills