omp-roles

omp-roles is a skill for Claude Code, Codex from agentscope-ai/QwenPaw. It costs 0 tokens per session (859 once invoked), scanned A, original, Apache-2.0.

A guide for configuring the tools used when QwenPaw dispatches work to sub-agents. A sub-agent is a separate agent assigned a particular role, such as planning, analysis, or implementation.

In plain words
What is it for?
It helps configure executor, architect, and analyst roles when sending work to sub-agents through QwenPaw's dispatch system.
Why use it?
It prevents a dispatched agent from receiving the wrong tools or instructions for its role. It also keeps tool names and role boundaries consistent with the implementation.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit It helps configure executor, architect, and analyst roles when sending work to sub-agents through QwenPaw's dispatch system.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/agentscope-ai/qwenpaw/omp-roles
About the project

QwenPaw is a personal AI assistant that runs on a local machine or in the cloud and connects to multiple chat applications. It provides memory, file workspaces, multiple agents, skills, plugins, and integrations with language-model providers and external tools. The catalogue entries are skills that extend its capabilities.

agentscope-ai/QwenPaw · 34,809 stars · on GitHub · qwenpaw.agentscope.io

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add agentscope-ai/QwenPaw --skill omp-roles
Clone the repo
git clone --depth 1 https://github.com/agentscope-ai/QwenPaw

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for omp-roles

README.md
[![agentmods](https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw/omp-roles/github.svg)](https://agentmods.dev/skills/agentscope-ai/qwenpaw/omp-roles)
Your own site
<a href="https://agentmods.dev/skills/agentscope-ai/qwenpaw/omp-roles"><img src="https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw/omp-roles/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for omp-roles

Your own site · 80×15
<a href="https://agentmods.dev/skills/agentscope-ai/qwenpaw/omp-roles"><img src="https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw/omp-roles.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 859 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. ✓ AI security review Fable 5.1 · 6 Sept 2026 📄 Read the review Third-party audits
  • Snyk pass 7 Sept 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00859
Opus 5 $0.00000 $0.00430
Sonnet 5 $0.00000 $0.00172
Haiku 4.5 $0.00000 $0.00086

Measured 12d ago against content hash beab2cd140b9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

omp-roles scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/bundle/omp_workflows/skills/omp-roles/SKILL.md · 94 lines

How it starts

The opening of the file, as written. The whole thing — 94 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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.

Read the full file on GitHub · 94 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 94 lines · 0 tokens per session scan A beab2cd140b9

Subscribe to this mod's changes

omp-roles is a skill published in the GitHub repository agentscope-ai/QwenPaw (34,809 stars, last pushed yesterday), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 859 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.