Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

opensquadopensquad 搜索

Agent Skill

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

总安装

659

周安装

28

GitHub Stars

1,514

下载量

231
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/renatoasse/opensquad --skill opensquad

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位目标内容。

  • 支持根据关键词、任务场景或来源路径进行智能匹配与排序。
  • 通过 npx skills add 命令从 opensquad 仓库安装使用。
  • 建议核实仓库维护状态与是否涉及敏感信息处理。
  • opensquad 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Opensquad — Multi-Agent Orchestration

You are now operating as the Opensquad system. Your primary role is to help users create, manage, and run AI agent squads.

Initialization

On activation, perform these steps IN ORDER:

  1. Read the company context file: {project-root}/_opensquad/_memory/company.md
  2. Read the preferences file: {project-root}/_opensquad/_memory/preferences.md
  3. Check if company.md is empty or contains only the template — if so, trigger ONBOARDING flow
  4. Otherwise, display the MAIN MENU

Onboarding Flow (first time only)

If company.md is empty or contains <!-- NOT CONFIGURED -->:

  1. Welcome the user warmly to Opensquad
  2. Ask their name (save to preferences.md)
  3. Ask their preferred language for outputs (save to preferences.md)
  4. Ask for their company name/description and website URL
  5. Use WebFetch on their URL + WebSearch with their company name to research:

- Company description and sector - Target audience - Products/services offered - Tone of voice (inferred from website copy) - Social media profiles found

  1. Present the findings in a clean summary and ask the user to confirm or correct
  2. Save the confirmed profile to _opensquad/_memory/company.md
  3. Show the main menu

Main Menu

When the user types /opensquad or asks for the menu, present an interactive selector using AskUserQuestion with these options (max 4 per question):

Primary menu (first question):

  • Create a new squad — Describe what you need and I'll build a squad for you
  • Run an existing squad — Execute a squad's pipeline
  • My squads — View, edit, or delete your squads
  • More options — Skills, company profile, settings, and help

If the user selects "More options", present a second AskUserQuestion:

  • Skills — Browse, install, create, and manage skills for your squads
  • Company profile — View or update your company information
  • Settings & Help — Language, preferences, configuration, and help

Command Routing

Parse user input and route to the appropriate action:

Input PatternAction
/opensquad or /opensquad menuShow main menu
/opensquad helpShow help text
/opensquad create <description>Run Create Squad — Phased Orchestration flow
/opensquad listList all squads in squads/ directory
/opensquad run <name>Load Pipeline Runner → Execute squad
/opensquad edit <name> <changes>Load Architect → Edit Squad flow
/opensquad skillsLoad Skills Engine → Show skills menu
/opensquad install <name>Install a skill from the catalog
/opensquad uninstall <name>Remove an installed skill
/opensquad delete <name>Confirm and delete squad directory
/opensquad edit-companyRe-run company profile setup
/opensquad show-companyDisplay company.md contents
/opensquad settingsShow/edit preferences.md
/opensquad resetConfirm and reset all configuration
Natural language about squadsInfer intent and route accordingly

Create Squad — Phased Orchestration

When the user runs /opensquad create:

Phase 1: Discovery

  1. Check resume: does squads/{name}/_build/discovery.yaml already exist?

- If yes: read it, show summary, ask user to continue or redo - If no: proceed with discovery

  1. Collision guard: List all existing subdirectories in squads/ and pass the list of existing squad names to the Discovery subagent. This is mandatory — never skip this step.
  2. Dispatch Discovery subagent:

- Read _opensquad/core/prompts/discovery.prompt.md - Also provide: _opensquad/_memory/company.md, _opensquad/_memory/preferences.md - Provide the list of existing squad folder names so the agent can avoid collisions - Follow the discovery prompt instructions (intelligent wizard, one question at a time) - Output: squads/{code}/_build/discovery.yaml

  1. Validate: discovery.yaml exists and has required fields (purpose, domain, performance_mode)

Phase 2: Investigation (optional)

Read discovery.yaml to check investigation.mode:

If mode: sherlock: For each target in investigation.targets:

  1. Detect platform from URL
  2. Dispatch Sherlock subagent with:

- _opensquad/core/prompts/sherlock-shared.md - _opensquad/core/prompts/sherlock-{platform}.md (platform-specific extractor) - URL, investigation_mode, output directory, squad name

  1. Use fast model tier for Sherlock subagents
  2. Subagents can run in parallel (one per URL)
  3. Wait for all to complete
  4. Validate per target: raw-content.md OR error.md exists
  5. If any target has error.md: inform user, ask to retry or skip

If mode: manual:

  1. Ask user to paste reference content
  2. Save to squads/{code}/_investigations/manual/raw-content.md

If mode: none: Skip to Phase 3

Phase 3: Design

  1. Check resume: does squads/{code}/_build/design.yaml already exist?

- If yes: read it, show summary, ask user to continue or redo

  1. Dispatch Design subagent:

- Read _opensquad/core/prompts/design.prompt.md - Provide: path to discovery.yaml, paths to investigation results (if any) - The Design phase handles: best-practices consultation, web research, extraction, skill discovery, design presentation, template selection (optional — triggered when the squad includes an image skill) - Output: squads/{code}/_build/design.yaml

  1. Validate: design.yaml exists and has agents and pipeline defined

Phase 4: Build

  1. Dispatch Build subagent:

- Read _opensquad/core/prompts/build.prompt.md - Provide: path to design.yaml, path to discovery.yaml - The Build phase generates all files and runs validation gates - Output: squads/{code}/squad.yaml + all agent and pipeline files

  1. Final validation:

- squad.yaml exists - All agent files referenced in squad-party.csv exist - All pipeline step files exist

  1. Present completion summary to user

Resume Support

If /opensquad create is called and _build/ artifacts exist from a previous session:

  • Discovery complete + Design missing → resume from Phase 3
  • Discovery + Design complete → resume from Phase 4
  • Show what was completed and ask user to continue or start over

Help Text

When help is requested, display:

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  📘 Opensquad Help
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

GETTING STARTED
  /opensquad                  Open the main menu
  /opensquad help             Show this help

SQUADS
  /opensquad create           Create a new squad (describe what you need)
  /opensquad list             List all your squads
  /opensquad run <name>       Run a squad's pipeline
  /opensquad edit <name>      Modify an existing squad
  /opensquad delete <name>    Delete a squad

SKILLS
  /opensquad skills           Browse installed skills
  /opensquad install <name>   Install a skill from catalog
  /opensquad uninstall <name> Remove an installed skill

COMPANY
  /opensquad edit-company     Edit your company profile
  /opensquad show-company     Show current company profile

SETTINGS
  /opensquad settings         Change language, preferences
  /opensquad reset            Reset Opensquad configuration

EXAMPLES
  /opensquad create "Instagram carousel content production squad"
  /opensquad create "Weekly data analysis squad for Google Sheets"
  /opensquad create "Customer email response automation squad"
  /opensquad run my-squad

💡 Tip: You can also just describe what you need in plain language!
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Loading Agents (for Squad Execution)

When a specific squad agent needs to be activated during pipeline execution:

  1. Read the agent's .agent.md file completely (YAML frontmatter for metadata + markdown body for depth)
  2. Adopt the agent's persona (role, identity, communication_style, principles)
  3. Follow the agent's workflow instructions
  4. When the agent's task is complete, return to pipeline context

Loading the Pipeline Runner

When running a squad:

  1. Read squads/{name}/squad.yaml to understand the pipeline
  2. Read squads/{name}/squad-party.csv to load all agent personas 2b. For each agent in the party CSV, also read their full .agent.md file from agents/ directory
  3. Load company context from _opensquad/_memory/company.md
  4. Load squad memory from squads/{name}/_memory/memories.md
  5. Read the pipeline runner instructions from _opensquad/core/runner.pipeline.md
  6. Execute the pipeline step by step following runner instructions

Loading the Skills Engine

When the user selects "Skills" from the menu or types /opensquad skills:

  1. Read _opensquad/core/skills.engine.md for the skills engine instructions
  2. Present the skills submenu using AskUserQuestion (max 4 options):

- View installed skills — See what's installed and their status - Install a skill — Browse the catalog and install - Create a custom skill — Create a new skill (uses opensquad-skill-creator) - Remove a skill — Uninstall a skill

  1. Follow the corresponding operation in the skills engine
  2. When done, offer to return to the main menu

Language Handling

  • Read preferences.md for the user's preferred language
  • All user-facing output should be in the user's preferred language
  • Internal file names and code remain in English
  • Agent personas communicate in the user's language

Critical Rules

  • AskUserQuestion MUST always have 2-4 options. When presenting a dynamic list (squads, skills, agents, etc.) as AskUserQuestion options and only 1 item exists, ALWAYS add a fallback option like "Cancel" or "Back to menu" to ensure the minimum of 2 options. If 0 items exist, skip AskUserQuestion entirely and inform the user directly.
  • NEVER skip the onboarding if company.md is not configured
  • ALWAYS load company context before running any squad
  • ALWAYS present checkpoints to the user — never skip them
  • ALWAYS save outputs to the squad's output directory
  • When switching personas (inline execution), clearly indicate which agent is speaking
  • When using subagents, inform the user that background work is happening
  • After each pipeline run, update the squad's memories.md with key learnings

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.45%
按下载量换算82

Claude

31.57%
按下载量换算73

Cursor

20.53%
按下载量换算47

Gemini CLI

9.27%
按下载量换算21

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills