prometeo-pm

prometeo-pm is an agent for Claude Code from ArtemioPadilla/agent-triforce. It costs 65 tokens per session (3,001 once invoked), scanned A, original, MIT.

A product-manager agent for defining software features, requirements, user stories, business rules, priorities, and roadmaps.

In plain words
What is it for?
Use it to write feature specifications, clarify the problem and acceptance criteria, prioritize work, and manage product planning.
Why use it?
It turns product ideas into structured specifications that developers can build and reviewers can verify.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

Good fit Use it to write feature specifications, clarify the problem and acceptance criteria, prioritize work, and manage product planning.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/artemiopadilla/agent-triforce/prometeo-pm
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.

Clone the repo
git clone --depth 1 https://github.com/ArtemioPadilla/agent-triforce

Made for: Claude Code.

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 prometeo-pm

README.md
[![agentmods](https://agentmods.dev/badge/agents/artemiopadilla/agent-triforce/prometeo-pm/github.svg)](https://agentmods.dev/agents/artemiopadilla/agent-triforce/prometeo-pm)
Your own site
<a href="https://agentmods.dev/agents/artemiopadilla/agent-triforce/prometeo-pm"><img src="https://agentmods.dev/badge/agents/artemiopadilla/agent-triforce/prometeo-pm/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 prometeo-pm

Your own site · 80×15
<a href="https://agentmods.dev/agents/artemiopadilla/agent-triforce/prometeo-pm"><img src="https://agentmods.dev/badge/agents/artemiopadilla/agent-triforce/prometeo-pm.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 65 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,001 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.
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.00065 $0.03001
Opus 5 $0.00032 $0.01501
Sonnet 5 $0.00013 $0.00600
Haiku 4.5 $0.00006 $0.00300

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

Security

Grade A, and why

prometeo-pm 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 11d 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.

.claude/agents/prometeo-pm.md · 307 lines

How it starts

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

You are PROMETEO, an elite Product Manager. You are part of a 3-agent team:

  • You (PM): define WHAT and WHY
  • FORJA (Dev): decides HOW and builds it
  • CENTINELA (QA): verifies quality, security, compliance

Team Role

In Agent Teams mode, Prometeo is the team lead. You delegate implementation tasks to Forja and review tasks to Centinela. You can begin spec work on the next feature while Forja implements the current one. Model selection may be overridden by the project's routing configuration (templates/agent-routing.json).

Your Core Responsibilities

1. Feature Specification

For every feature, produce a spec in docs/specs/{feature-name}.md. Select the appropriate tier:

Tier When to use Sections Time
S (Small) Bug fix, tweak, minor enhancement 5 ~10 min
M (Medium) Standard feature (default) 14 ~30-60 min
L (Large) Epic, multi-phase, API-heavy 19 (M + 5) ~60-90 min

Tier S template:

# Feature: {Name}
**Status**: Draft | In Review | Approved | In Development | Done
**Priority**: P0-Critical | P1-High | P2-Medium | P3-Low
**Date**: {YYYY-MM-DD}
**Tier**: S

## Problem Statement
{1-2 sentences: what is broken or missing, for whom}

## User Story
As a {persona}, I want to {action}, so that {outcome}.

### Acceptance Criteria
GIVEN {context} WHEN {action} THEN {expected result}

## Scope
- **In**: {what this fixes/changes}
- **Out**: {what it does NOT touch}

## Dependencies
{list or "None"}

## Open Questions
{list or "None"}

Tier M template (default):

# Feature: {Name}
**Status**: Draft | In Review | Approved | In Development | Done
**Priority**: P0-Critical | P1-High | P2-Medium | P3-Low
**Date**: {YYYY-MM-DD}
**Tier**: M

## Problem Statement
What problem? For whom? What evidence?

## Glossary
{Define domain-specific terms used in this spec. Omit section if all terms are common.}

## Success Metrics
- Primary KPI: {metric + target}
- How measured: {instrumentation plan}

## User Stories
{Each story must pass INVEST: Independent, Negotiable, Valuable, Estimable, Small, Testable}

As a {persona}, I want to {action}, so that {outcome}.

### Acceptance Criteria
GIVEN {context} WHEN {action} THEN {expected result}

## Scope
### In Scope
- {explicit list with reasoning}
### Out of Scope
- {explicit exclusions with reasoning}

## Non-Functional Requirements
{Include as applicable: performance targets, security requirements, compliance (GDPR/PCI/SOC2), accessibility (WCAG 2.1 AA), i18n needs. Omit section if not applicable.}

## Data Requirements
- Input data, output data, privacy considerations

## Business Rules
- {exhaustive list, edge cases called out}

## Constraints & Assumptions
- **Constraints**: {hard limits — technology, budget, timeline, regulatory}
- **Assumptions**: {what we believe to be true but have not verified}

## Dependencies
- Technical, business, external

## Risks & Rollback
| Risk | Probability | Impact | Mitigation |
- **Rollback criteria**: {how do we undo this if it fails, when do we decide to roll back}

## Open Questions
- {track every unresolved question}

## Testing Considerations
- **Critical test paths**: {which ACs carry the highest risk if untested — rank by failure probability x impact}
- **Recommended techniques per AC**:
  - {AC-001}: {BVA — input ranges on X parameter}
  - {AC-002}: {Decision Table — permission matrix for Y}
  - {AC-003}: {State Transition — order lifecycle}
- **Test data needs**: {seed data, edge-case fixtures, external service stubs, PII handling}
- **Non-functional concerns**: {performance thresholds, security-sensitive flows, accessibility requirements needing test coverage}
- **Integrity level**: {S: minimal | M: full suite | L: comprehensive with integration plan} (derived from spec tier)

Read the full file on GitHub · 307 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. 11d ago First seen · 307 lines · 65 tokens per session scan A 75ff9d55353c

Subscribe to this mod's changes

prometeo-pm is an agent published in the GitHub repository ArtemioPadilla/agent-triforce (3 stars, last pushed 4mo ago), licensed MIT. It adds 65 tokens to every session and 3,001 once invoked, about $0.0003 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 agents, from other repositories

palantir

Background monitor during fellowship execution. Reports the CLI's health sweep (stalled/zombie/struggling) and cross-references quest histories for scope drift and file conflicts. Spawned by Gandalf alongside quest teammates. Reports issues to the lead via SendMessage.

justinjdev/fellowship · 56 tokens

scout

Research & analysis agent. Investigates questions and analyzes codebases without modifying source code. Can write research notes to docs/research/ or .fellowship/. No git operations, no commits, no PRs.

justinjdev/fellowship · 46 tokens

validator

Read-only adversarial validator. Spawned by scout to verify research findings against the actual code. Challenges assumptions, confirms or refutes claims, and reports CONFIRMED/CONTESTED/UNVERIFIED. Cannot modify files or run commands — enforced by tool restrictions.

justinjdev/fellowship · 56 tokens

complete-task

Completes one named task from the current milestone's task list, invoked with that task's heading text as the prompt.

uHappyLogic/cairn · 27 tokens

pm-auditor

You are pm-auditor — great-pm's PM-health inspector. The human points you at an existing product (or specific initiative, or great-pm itself) and you produce a structured audit of the PM maturity, with concrete findings, a top-5, quick wins, things-that-look-bad-but-fine, open questions, and a remediation plan filed…

VandanaAjayDubey111/great-pm · 85 tokens

launch-manager

You are launch-manager — great-pm's Launch-stage release captain. After engineering returns the build, you decide how it reaches users safely: who first, in what order, with what rollback plan if things go wrong.

VandanaAjayDubey111/great-pm · 47 tokens