Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

symbiontsymbiont 搜索

Agent Skill

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

总安装

22,768

周安装

978

GitHub Stars

公开资料未说明

下载量

7,980
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install symbiont

简介

symbiont 实施零信任治理框架,强化 OpenClaw 代理安全性。

  • 适合在 OpenClaw 中部署 Cedar 策略引擎与 SchemaPin 验证层。
  • 通过 clawhub 安装,集成 ORGA 运行时与密码学审计组件。
  • 使用前应配置细粒度访问控制与异常行为扫描规则。
  • 适用于金融、医疗等高安全要求领域的代理部署。

SKILL.md

name
symbiont
description
Zero-trust AI agent governance for OpenClaw. Adds ORGA runtime, Cedar policy enforcement, SchemaPin tool verification, ClawHavoc skill scanning, and cryptographic audit trails. Use when you need agent governance, security policies, Cedar authorization, MCP tool verification, audit logging, or when scaffolding governed agent projects, scanning skills for malicious patterns, or writing Symbiont DSL definitions.
version
0.1.0
metadata
clawdbot
emoji
🛡️
requires
bins
env
[]
install
kind
brew
formula
symbi
tap
thirdkeyai/tap
bins
[symbi]
label
Install symbi (Homebrew)
primaryEnv
homepage
https://symbiont.dev
repository
https://github.com/thirdkeyai/symbi-openclaw
tags

Symbiont Governance for OpenClaw

Bring Symbiont's zero-trust AI agent governance to your OpenClaw workflow. Enforce Cedar authorization policies, verify MCP tool integrity with SchemaPin, scan skills with ClawHavoc, maintain cryptographic audit trails, and manage governed agents.

This skill is the OpenClaw counterpart to symbi-claude-code and symbi-gemini-cli. All three deliver the same Symbiont governance capabilities, adapted for each platform's skill/extension format.

A companion SOUL.md for the Symbiont governance agent personality is available separately on onlycrabs.ai.

Prerequisites

  • OpenClaw installed
  • jq for JSON parsing (apt install jq / brew install jq)
  • symbi binary on PATH (optional; skill degrades gracefully without it)

Install symbi:

# Via Homebrew (recommended)
brew tap thirdkeyai/tap && brew install symbi

# Or from source
cargo install symbi

# Or via Docker
docker pull ghcr.io/thirdkeyai/symbi:latest

Quick Start

After installing this skill:

  1. Tell the agent: "Initialize a Symbiont-governed project"
  2. Define agents in agents/*.dsl
  3. Create Cedar policies in policies/*.cedar
  4. Ask the agent: "Check Symbiont status"

Capabilities

This skill provides six governed workflows. Invoke them by describing what you need; the agent will follow the appropriate procedure.

1. Initialize a Governed Project

Trigger: "Set up Symbiont governance", "Initialize a governed project", "Add agent governance to this repo"

Create the governed project scaffold in the current directory:

  1. Check if symbiont.toml already exists. If it does, confirm before overwriting.
  2. Create directory structure:
   agents/          # Agent DSL definitions
   policies/        # Cedar policy files
   .symbiont/       # Local governance config and audit logs
   .symbiont/audit/ # Audit log output
  1. Write symbiont.toml with defaults:
   [runtime]
   security_tier = "tier1"
   log_level = "info"

   [policy]
   engine = "cedar"
   enforcement = "strict"

   [schemapin]
   mode = "tofu"
  1. Write a starter agent at agents/assistant.dsl:
   metadata {
       version = "1.0.0"
       description = "Default governed assistant"
   }

   agent assistant(input: Query) -> Response {
       capabilities = ["read", "analyze"]

       policy default_access {
           allow: read(input) if true
           deny: write(any) if not approved
           audit: all_operations
       }

       with memory = "session" {
           result = process(input)
           return result
       }
   }
  1. Write a starter Cedar policy at policies/default.cedar:
   permit(
       principal,
       action == Action::"read",
       resource
   );

   forbid(
       principal,
       action == Action::"write",
       resource
   ) unless {
       principal.approved == true
   };
  1. Write .symbiont/local-policy.toml with default deny rules:
   [deny]
   paths = [".env", ".ssh/", ".aws/", ".gnupg/", "credentials"]
   commands = ["rm -rf", "git push --force", "mkfs", "dd if="]
   branches = ["main", "master", "production"]
  1. Write AGENTS.md manifest.
  2. Report what was created and suggest next steps.

2. Create or Edit Cedar Policies

Trigger: "Create a Cedar policy", "Edit authorization policy", "Add a policy for X"

Steps:

  1. Ask what the policy should govern (read/write access, tool invocation, sandbox tier, etc.).
  2. Check existing policies in policies/*.cedar.
  3. Write or update the .cedar file using Cedar syntax.
  4. If symbi is on PATH, validate with symbi policy validate policies/.
  5. Explain what the policy permits and forbids.

Reference: Read references/cedar-patterns.md for common Cedar policy patterns.

3. Verify MCP Tool Schemas (SchemaPin)

Trigger: "Verify this MCP tool", "Check tool schema", "Is this tool signed?"

Steps:

  1. Identify the tool name and domain.
  2. If symbi is on PATH, run symbi verify --tool <tool_name> --domain <domain>.
  3. Otherwise, explain SchemaPin's ECDSA P-256 verification model and suggest manual steps.
  4. Report verification result: signature valid/invalid, TOFU pin status, revocation status.

4. Query Audit Logs

Trigger: "Show audit logs", "What did the agent do?", "Review tool usage"

Steps:

  1. Check for .symbiont/audit/tool-usage.jsonl.
  2. Parse JSONL entries and summarize: tool name, timestamp, action, result, policy decision.
  3. If symbi is on PATH, use symbi audit query for richer queries.
  4. Highlight any denied or flagged operations.

5. Write or Validate DSL Agent Definitions

Trigger: "Create an agent definition", "Write a DSL agent", "Validate my agent DSL"

Steps:

  1. Determine agent purpose, capabilities, and policy requirements.
  2. Write or edit the .dsl file in agents/.
  3. If symbi is on PATH, validate with symbi dsl parse agents/<name>.dsl.
  4. Update AGENTS.md manifest.

Reference: Read references/dsl-guide.md for DSL syntax and patterns.

6. Scan Skills for Malicious Patterns (ClawHavoc)

Trigger: "Scan this skill", "Is this skill safe?", "Check for malicious patterns", "ClawHavoc scan"

Steps:

  1. Identify the skill directory or SKILL.md to scan.
  2. Run scripts/clawhavoc-scan.sh <skill-path> to check against 40+ built-in detection rules.
  3. Report findings by severity: Critical, High, Medium, Warning, Info.
  4. Critical or High findings mean the skill should NOT be loaded.
  5. Suggest remediation for any findings.

The scanner covers: reverse shells, credential harvesting, network exfiltration, process injection, privilege escalation, symlink/path traversal, and downloader chains.

Governance Tiers

This skill provides three progressive levels of protection, matching symbi-claude-code and symbi-gemini-cli:

Tier 1: Awareness (default)

All tool calls proceed. State-modifying actions are logged to .symbiont/audit/tool-usage.jsonl for post-hoc review.

No symbi binary required. The scripts/audit-log.sh script handles logging.

Tier 2: Protection

Create .symbiont/local-policy.toml to block dangerous patterns:

[deny]
paths = [".env", ".ssh/", ".aws/"]
commands = ["rm -rf", "git push --force"]
branches = ["main", "master", "production"]

The scripts/policy-guard.sh script checks tool calls against this deny list. Built-in patterns (destructive commands, force pushes, writes to sensitive files) are always blocked regardless of config.

No symbi binary required. The same .symbiont/local-policy.toml works across symbi-claude-code, symbi-gemini-cli, and this skill.

Tier 3: Governance

If symbi is on PATH and policies/ exists, Cedar policies are evaluated for formal authorization decisions on every tool call.

Dual-Mode Architecture

Mode A: Standalone (Skill-First)

Developer installs this skill into OpenClaw. The skill provides advisory policy checking, audit logging, and access to Symbiont MCP tools if symbi is on PATH.

Developer -> OpenClaw + symbiont skill -> symbi mcp (stdio)

Best for: individual developers adding governance awareness to their workflow.

Mode B: ORGA-Managed (Runtime-First)

Symbiont's CliExecutor spawns OpenClaw as a governed subprocess. The skill detects SYMBIONT_MANAGED=true and connects back to the parent runtime's MCP server instead of spawning a new one. The outer ORGA Gate provides hard enforcement that cannot be bypassed.

Symbiont Runtime (ORGA Loop)
  -> CliExecutor (sandbox + budget enforcement)
    -> OpenClaw (with symbiont skill)
      -> Skill connects back to parent MCP server

Best for: automated pipelines, dark factory deployments, enterprise governance.

Rules

  • ALWAYS check .symbiont/local-policy.toml before executing commands that modify files, run shell commands, or interact with git branches.
  • ALWAYS log state-modifying tool calls to .symbiont/audit/tool-usage.jsonl.
  • NEVER execute commands matching deny patterns in the local policy.
  • NEVER write to paths listed in the deny list (.env, .ssh/, .aws/, etc.).
  • NEVER force-push to protected branches.
  • If SYMBIONT_MANAGED=true is set in the environment, defer all policy decisions to the parent Symbiont runtime via MCP.
  • When scanning skills with ClawHavoc, ALWAYS refuse to load skills with Critical or High findings.
  • When verifying tools with SchemaPin, ALWAYS warn the user if a tool's signature is invalid or its key has been revoked.

File Conventions

PathPurpose
agents/*.dslAgent DSL definitions
policies/*.cedarCedar authorization policies
symbiont.tomlSymbiont runtime configuration
AGENTS.mdAgent manifest
.symbiont/audit/Audit log output
.symbiont/local-policy.tomlLocal deny list (Tier 2)

Comparison with Other Symbiont Plugins

AspectClaude CodeGemini CLIOpenClaw
FormatPlugin (.claude-plugin/)Extension (gemini-extension.json)Skill (SKILL.md)
CommandsMarkdown filesTOML filesNatural language triggers
MCP tool prefixmcp__symbi__symbi__symbi__ (when connected)
Native policiesNoYes (policies/*.toml)No
Tool restrictionAllow listDeny list (excludeTools)Deny list (.symbiont/local-policy.toml)
Context fileCLAUDE.mdGEMINI.mdSOUL.md (via onlycrabs.ai)
Skill scanningVia hookVia hookBuilt-in ClawHavoc scanner

Links

License

Apache 2.0

Disclaimer

This project is not affiliated with, endorsed by, or sponsored by Anthropic PBC, Google LLC, or the OpenClaw project. "OpenClaw" and "ClawHub" are trademarks of their respective owners. "Symbiont" and "ThirdKey" are trademarks of ThirdKey AI.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

95.2%
按下载量换算7,597

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills