Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

sharedshared 工具

Agent Skill

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

总安装

10,358

周安装

415

GitHub Stars

318

下载量

3,353
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:shared(shared 工具)
来源仓库:https://github.com/boshu2/agentops
仓库路径:skills/shared
安装命令:
npx skills add https://github.com/boshu2/agentops --skill shared
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/boshu2/agentops --skill shared

简介

shared 存放多技能共用参考资料,包括验证契约与后端示例。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 的技能协同开发。
  • 包含 Claude Code 特性合约与 Teams/Codex 子 Agent 实现案例。
  • 作为公共知识库,供其他技能引用以确保行为一致性。
  • shared 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Shared References

This directory contains shared reference documents used by multiple skills:

  • validation-contract.md - Verification requirements for accepting spawned work
  • references/claude-code-latest-features.md - Claude Code feature contract (slash commands, agent isolation, hooks, settings)
  • references/backend-claude-teams.md - Concrete examples for Claude native teams (TeamCreate + SendMessage)
  • references/backend-codex-subagents.md - Concrete examples for Codex CLI and Codex sub-agents
  • references/backend-background-tasks.md - Fallback: Task(run_in_background=true)
  • references/backend-inline.md - Degraded single-agent mode (no spawn)
  • references/claude-cli-verified-commands.md - Verified Claude CLI command shapes and caveats
  • references/codex-cli-verified-commands.md - Verified Codex CLI command shapes and caveats
  • references/cli-command-failures-2026-02-26.md - Dated failure log and mitigations from live runs

These are not directly invocable skills. They are loaded by other skills (council, crank, swarm, research, implement) when needed.


CLI Availability Pattern

All skills that reference external CLIs MUST degrade gracefully when those CLIs are absent.

Check Pattern

# Before using any external CLI, check availability
if command -v bd &>/dev/null; then
  # Full behavior with bd
else
  echo "Note: bd CLI not installed. Using plain text tracking."
  # Fallback: use TaskList, plain markdown, or skip
fi

Fallback Table

CapabilityWhen MissingFallback Behavior
bdIssue tracking unavailableUse TaskList for tracking. Note "install bd for persistent issue tracking"
aoKnowledge flywheel unavailableWrite learnings to .agents/learnings/ directly. Skip flywheel metrics
gtWorkspace management unavailableWork in current directory. Skip convoy/sling operations
codexCLI missing or model unavailableFall back to runtime-native agents. Council pre-flight checks CLI presence (which codex) and model availability for --mixed mode.
cassSession search unavailableSkip transcript search. Note "install cass for session history"
Model tier config.agentops/config.yaml missingUse built-in defaults (quality=opus, balanced=sonnet, budget=haiku). Tier resolution falls through to "balanced".

Required Multi-Agent Capabilities

Council, swarm, and crank require a runtime that provides these capabilities. If a capability is missing, the corresponding feature degrades.

CapabilityWhat it doesIf missing
Spawn subagentCreate a parallel agent with a promptCannot run multi-agent. Fall back to --quick (inline single-agent).
Agent-to-agent messagingSend a message to a specific agentNo debate R2. Workers run fire-and-forget.
BroadcastMessage all agents at oncePer-agent messaging fallback.
Graceful shutdownRequest an agent to terminateAgents terminate on their own when done.
Shared task listAgents see shared work stateLead tracks manually.

Every runtime maps these capabilities to its own API. Skills describe WHAT to do, not WHICH tool to call.

After detecting your backend (see Backend Detection below), load the matching reference for concrete tool call examples:

BackendReference
Claude feature contractskills/shared/references/claude-code-latest-features.md
Claude Native Teamsskills/shared/references/backend-claude-teams.md
Codex Sub-Agents / CLIskills/shared/references/backend-codex-subagents.md
Background Tasks (fallback)skills/shared/references/backend-background-tasks.md
Inline (no spawn)skills/shared/references/backend-inline.md

Backend Detection

Use capability detection at runtime, not hardcoded tool names. The same skill must work across any agent harness that provides multi-agent primitives. If no multi-agent capability is detected, degrade to single-agent inline mode (--quick).

Selection policy (runtime-native first):

  1. If running in a Claude session and TeamCreate/SendMessage are available, use Claude Native Teams as the primary backend.
  2. If running in a Codex session and spawn_agent is available, use Codex sub-agents as the primary backend.
  3. If both are technically available, pick the backend native to the current runtime unless the user explicitly requests mixed/cross-vendor execution.
  4. Only use background tasks when neither native backend is available.
OperationCodex Sub-AgentsClaude Native TeamsOpenCode SubagentsInline Fallback
Spawnspawn_agent(message=...)TeamCreate + Task(team_name=...)task(subagent_type="general", prompt=...)Execute inline
Spawn (read-only)spawn_agent(message=...)Task(subagent_type="Explore")task(subagent_type="explore", prompt=...)Execute inline
Waitwait(ids=[...])Completion via SendMessageTask returns result directlyN/A
Retry/follow-upsend_input(id=..., message=...)SendMessage(type="message",...)task(task_id="<prior>", prompt=...)N/A
Cleanupclose_agent(id=...)shutdown_request + TeamDelete()None (sub-sessions auto-terminate)N/A
Inter-agent messagingsend_inputSendMessageNot availableN/A
Debate (R2)SupportedSupportedNot supported (no messaging)N/A

OpenCode limitations:

  • No inter-agent messaging — workers run as independent sub-sessions
  • No debate mode (--debate) — requires messaging between judges
  • --quick (inline) mode works identically across all backends

Backend Capabilities Matrix

Prefer native teams over background tasks. Native teams provide messaging, redirect, and graceful shutdown. Background tasks are fire-and-forget with no steering — only a speedometer and emergency brake.
CapabilityCodex Sub-AgentsClaude Native TeamsBackground Tasks
Observe outputwait() resultSendMessage deliveryTaskOutput (tail)
Send message mid-flightsend_inputSendMessageNO
Pause / resumeNOIdle → wake via SendMessageNO
Graceful stopclose_agentshutdown_requestTaskStop (lossy)
Redirect to different tasksend_inputSendMessageNO
Adjust scope mid-flightsend_inputSendMessageNO
File conflict preventionManual git worktree routingNative isolation: worktree + lead-only commitsNone
Process isolationYES (sub-process)Shared worktreeShared worktree

When to use each:

ScenarioBackend
Quick parallel tasks, coordination neededClaude Native Teams
Codex-specific executionCodex Sub-Agents
No team APIs available (last resort)Background Tasks

Skill Invocation Across Runtimes

Skills that chain to other skills (e.g., /rpi calls /research, /vibe calls /council) MUST handle runtime differences:

RuntimeToolBehaviorPattern
Claude CodeSkill(skill="X", args="...")Executable — skill runs as a sub-invocationSkill(skill="council", args="--quick validate recent")
CodexN/ASkills not available — inline the logic or skipCheck if Skill tool exists before calling
OpenCodeskill tool (read-only)Load-only — returns <skill_content> blocks into contextCall skill(skill="council"), then follow the loaded instructions inline

OpenCode skill chaining rules:

  1. Call the skill tool to load the target skill's content into context
  2. Read and follow the loaded instructions directly — do NOT expect automatic execution
  3. NEVER use slashcommand syntax (e.g., /council) in OpenCode — it triggers a command lookup, not skill loading
  4. If the loaded skill references tools by Claude Code names, use OpenCode equivalents (see tool mapping below)

Cross-runtime tool mapping:

Claude CodeOpenCodeNotes
Task(subagent_type="...")task(subagent_type="...")Same semantics, different casing
Skill(skill="X")skill tool (read-only)Load content, then follow inline
AskUserQuestionquestionSame purpose, different name
TaskCreate, TaskUpdate, TaskList, TaskGettodoTask tracking (Claude uses 4 tools, OpenCode uses 1)
Read, Write, Edit, Bash, Glob, GrepSame namesIdentical across runtimes

Rules

  1. Never crash — missing CLI = skip or fallback, not error
  2. Always inform — tell the user what was skipped and how to enable it
  3. Preserve core function — the skill's primary purpose must still work without optional CLIs
  4. Progressive enhancement — CLIs add capabilities, their absence removes them cleanly

Reference Documents

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.53%
按下载量换算1,124

Claude

32.39%
按下载量换算1,086

Cursor

20.09%
按下载量换算674

Gemini CLI

10.3%
按下载量换算345

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/boshu2/agentops --skill shared 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills