跳到主要内容
知仓学习社ZHICANG

omp-roles

omp-roles,来自 agentscope-ai/QwenPaw 的 agent 技能。

不碰外部(只输出文字)无严重或高危命中agentscope-ai/QwenPaw

它会碰到什么

扫了多少1 个文本文件,4 KB
它会碰到什么不碰外部(只输出文字)
命中总数0 处
命中统计严重 0 · 高 0 · 中 0 · 低 0

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

OMP Role Tool Configuration

When using spawn_subagent (single or batch mode) to dispatch sub-agents,

set the corresponding allowed_tools and skills parameters based on the

sub-agent's role.

Canonical source of truth in code:

plugins/bundle/omp_workflows/shared/constants.py

(ROLE_ALLOWED_TOOLS, ROLE_SKILLS, TOOL_* names) and

shared/role_prompts.py (ROLE_PROMPTS, build_worker_prompt,

format_spawn_call). Tool strings must match registered ToolRegistry

names — do not invent aliases.

Role Definitions

executor (Code Executor)

  • allowed_tools: null (inherits all tools)
  • skills: null (inherits all skills)
  • Boundary: Implement features, run quality checks. Follow existing patterns.

architect (System Architect)

  • allowed_tools: ["read_file", "grep_search", "glob_search",

"write_file", "ast_search", "execute_shell_command"]

  • skills: []
  • Boundary: Design interfaces and module boundaries, diagnose complex issues. No implementation code.

analyst (Requirements Analyst)

  • allowed_tools: ["read_file", "grep_search", "glob_search",

"write_file", "execute_shell_command"]

  • skills: []
  • Boundary: Extract requirements, identify constraints, define acceptance criteria. No code.

critic (Plan/Design Critic)

  • allowed_tools: ["read_file", "grep_search", "glob_search",

"ast_search"]

  • skills: []
  • Boundary: Review plans and designs, challenge assumptions. No plans, no code.

security-reviewer (Security Reviewer)

  • allowed_tools: ["read_file", "grep_search", "glob_search",

"execute_shell_command", "ast_search"]

  • skills: []
  • Boundary: Identify vulnerabilities, injection vectors, auth weaknesses. No file modifications.

code-reviewer (Code Reviewer)

  • allowed_tools: ["read_file", "grep_search", "glob_search",

"execute_shell_command", "ast_search"]

  • skills: []
  • Boundary: Review code quality, maintainability, convention adherence. No file modifications.

qa-tester (QA Tester)

  • allowed_tools: ["read_file", "grep_search", "glob_search",

"execute_shell_command"]

  • skills: []
  • Boundary: Interactive CLI/service testing — start services and verify behavior.

planner (Strategic Planner)

  • allowed_tools: ["read_file", "grep_search", "glob_search",

"write_file", "ast_search"]

  • skills: []
  • Boundary: Create implementation plans, define task breakdown and dependencies. No implementation code.

explore (Code Explorer)

  • allowed_tools: ["read_file", "grep_search", "glob_search",

"ast_search"]

  • skills: []
  • Boundary: Read-only exploration. Map codebase structure and dependencies.

debugger (Debugging Expert)

  • allowed_tools: null (inherits all tools)
  • skills: []
  • Boundary: Root cause analysis, fix build/test failures. No new features.

verifier (Adversarial Verifier)

  • allowed_tools: ["read_file", "grep_search", "glob_search",

"execute_shell_command", "ast_search"]

  • skills: []
  • Boundary: Verification only — no file modifications. Physical isolation via read-only tool set.

Usage

spawn_subagent(
    task="<role identity from ROLE_PROMPTS>\n\n## Task\n<task description>",
    allowed_tools=<ROLE_ALLOWED_TOOLS[role] or omit if null>,
    skills=<ROLE_SKILLS[role] or omit if null>,
    fork=True,         # if worktree isolation needed
    background=True,   # if background execution needed
)

When allowed_tools or skills is null, omit the parameter (uses default None).

For batch mode, pass task="" and put per-item role config in each batch dict.

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。

它属于哪个仓库

星标★ 35,028
本站分层T1
该仓技能数44
原文件路径plugins/bundle/omp_workflows/skills/omp-roles/SKILL.md

同一个仓库里的其他技能

看这个仓库的全部 44 个技能