recommend-assignee

recommend-assignee is a skill for Claude Code, Codex from pilotspace/pilot-space. It costs 14 tokens per session (1,454 once invoked), scanned A, original, Apache-2.0.

An issue-assignment helper that matches a task with team members based on their past work and current open issues.

In plain words
What is it for?
It helps choose owners for unassigned issues, check skill fit, and balance work across the team.
Why use it?
It reduces guesswork when deciding who should own a new or reassigned issue.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/pilotspace/pilot-space/recommend-assignee
Any agent
npx skills add pilotspace/pilot-space --skill recommend-assignee
Clone the repo
git clone --depth 1 https://github.com/pilotspace/pilot-space

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 recommend-assignee

README.md
[![agentmods](https://agentmods.dev/badge/skills/pilotspace/pilot-space/recommend-assignee.svg)](https://agentmods.dev/skills/pilotspace/pilot-space/recommend-assignee)
Your own site
<a href="https://agentmods.dev/skills/pilotspace/pilot-space/recommend-assignee"><img src="https://agentmods.dev/badge/skills/pilotspace/pilot-space/recommend-assignee.svg" alt="Measured on agentmods" height="20"></a>
Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,454 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00014 $0.01454
Opus 5 $0.00007 $0.00727
Sonnet 5 $0.00003 $0.00291
Haiku 4.5 $0.00001 $0.00145

Measured 4d ago against content hash 7b7257103d21, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

recommend-assignee 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 4d 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.

backend/src/pilot_space/ai/templates/skills/recommend-assignee/SKILL.md · 211 lines

How it starts

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

Recommend Assignee Skill

Suggest optimal assignee for issue using expertise matching, past work analysis, and workload balancing.

Quick Start

Use this skill when:

  • New issue created without assignee
  • User requests assignee recommendation (/recommend-assignee)
  • Issue reassignment needed due to skill mismatch

Example:

Issue: "Implement GraphQL API for user queries"

AI recommends:
- [email protected] (RECOMMENDED)
  - Expertise: GraphQL, API design (15 prior issues)
  - Workload: 3 open issues (below team average of 5)
  - Recent: Completed "GraphQL schema design" 2 weeks ago

Workflow

  1. Analyze Issue Requirements

    • Extract technical keywords from title/description
    • Identify domain (backend, frontend, infra, design)
    • Classify complexity (low, medium, high)
  2. Build Team Expertise Profile

    • For each workspace member:
      • Past issues worked on (completed, in-progress)
      • Labels/technologies from those issues
      • Success rate (completion time, quality)
    • Load expertise data from user_expertise table
  3. Score Candidates

    • Expertise Match (0-100): Keyword overlap with past work
    • Workload (0-100): Inverse of current open issues
    • Recency (0-100): Recently worked on similar issues
    • Domain Familiarity (0-100): Experience in issue domain
    • Weighted score: Expertise (40%) + Workload (30%) + Recency (20%) + Domain (10%)
  4. Apply Business Rules

    • Exclude members on PTO or unavailable
    • Consider role permissions (e.g., only admins for security issues)
    • Respect team preferences (preferred domains)
  5. Tag Confidence

    • RECOMMENDED: High score (>80), clear expertise match
    • DEFAULT: Medium score (50-80), general fit
    • ALTERNATIVE: Multiple candidates with similar scores

Output Format

{
  "recommendations": [
    {
      "user_id": "user-abc123",
      "email": "[email protected]",
      "name": "Alice Johnson",
      "confidence": "RECOMMENDED",
      "score": 92,
      "rationale": "Strong GraphQL expertise (15 prior issues), below workload average",
      "expertise_match": {
        "graphql": 95,
        "api_design": 88,
        "python": 82
      },
      "workload": {
        "open_issues": 3,
        "team_average": 5
      },
      "recent_work": [
        {"title": "GraphQL schema design", "completed": "2024-01-10"}
      ]
    },
    {
      "user_id": "user-def456",
      "email": "[email protected]",
      "name": "Bob Smith",
      "confidence": "DEFAULT",
      "score": 68,
      "rationale": "API experience but no GraphQL history, workload is high",
      "expertise_match": {
        "api_design": 75,
        "python": 88
      },
      "workload": {
        "open_issues": 7,
        "team_average": 5
      }
    }
  ],
  "summary": "2 candidates found, 1 RECOMMENDED"
}

Read the full file on GitHub · 211 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. 4d ago First seen · 211 lines · 14 tokens per session scan A 7b7257103d21

Subscribe to this mod's changes

recommend-assignee is a skill published in the GitHub repository pilotspace/pilot-space (2 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 14 tokens to every session and 1,454 once invoked, about $0.0001 per session on Opus 5. 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-31.

Related

Other skills, from other repositories

recipe-create-meet-space

Create a Google Meet meeting space and share the join link.

googleworkspace/cli · 18 tokens

agile-product-owner

../../../product-team/agile-product-owner/skills/agile-product-owner/SKILL.md.

alirezarezvani/claude-skills · 0 tokens

workthreads

SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what shipped, what is still…

specstoryai/getspecstory · 126 tokens

atmos-config

Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.

cloudposse/atmos · 31 tokens

story-readiness

Validate that a story file is implementation-ready. Checks for embedded GDD requirements, ADR references, engine notes, clear acceptance criteria, and no open design questions. Produces READY / NEEDS WORK / BLOCKED verdict with specific gaps. Use when user says 'is this story ready', 'can I start on this story', 'is…

Donchitos/Claude-Code-Game-Studios · 77 tokens

monorepo-management

Master monorepo management with Turborepo, Nx, and pnpm workspaces to build efficient, scalable multi-package repositories with optimized builds and dependency management. Use when setting up monorepos, optimizing builds, or managing shared dependencies.

wshobson/agents · 54 tokens