AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Operator Pass

skill-jmc-go-to-market-claude-operator-pass-operator-pass · by JMC-Go-to-market

>

No reviews yet
0 installs
29 views
0.0% view→install

Install

$ agentstack add skill-jmc-go-to-market-claude-operator-pass-operator-pass

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-jmc-go-to-market-claude-operator-pass-operator-pass)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Operator Pass? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Operator Pass — API Skill

Wraps the JMC tools API for use inside any Claude Code agent — or any MCP-aware runtime. Each tool is a server-side, schema-validated, real-result endpoint (not a prompt). Use them in your Claude / Cursor / Codex / Gemini flows the same way you'd use a built-in tool.

Bring your own key

This skill calls the JMC API. You need an active Operator Pass subscription and an API key, exposed via env var:

export OPERATOR_PASS_API_KEY="op_live_..."

The skill detects a missing or invalid key and tells the user how to subscribe:

> → Get an API key at https://jaymountconsulting.com/operator-pass

No key, no calls. The skill won't call the API anonymously.

Quick reference

| Slash | What it does | |---|---| | /operator-pass | Interactive — detect intent, route to a tool | | /operator-pass list | List all available tools + their input schemas | | /operator-pass call | Call a specific tool with JSON inputs | | /operator-pass status | Check API key validity + remaining quota |

Available tools (current catalog)

The JMC tools API exposes 22+ multi-input modelers, generators, and auditors. Each one is server-side, schema-validated, and returns structured JSON (not LLM-narrated prose).

Outbound + cold email

| Tool slug | What it does | |---|---| | cold-email-linter | Per-email score + line-level rewrite recommendations | | linkedin-post-critic | Critique + 3 register-varied rewrites | | linkedin-hook-grader | First-line hook scoring across 5 archetypes | | nurture-sequence-planner | 5-email nurture stream with route-to-sales triggers |

Foundation + targeting

| Tool slug | What it does | |---|---| | evp-generator | Schwartz-awareness EVP variants by tier | | evp-brief-generator | Structured 3-tier EVP brief | | persona-from-crm | CSV → AI clusters → PSPs per cluster | | offer-lever-scorer | 5-lever offer score + rewrite | | buyer-journey-mapper | ICP+pains → 5-stage Schwartz template |

Demand + content

| Tool slug | What it does | |---|---| | geo-visibility | URL → 5-dim AI-visibility score + ranked fixes | | competitive-teardown | URL → 6-bullet positioning teardown | | paid-media-teardown | 5-lever ad creative teardown | | ad-creative-scorer | Score against the JMC creative framework | | pricing-page-lab | Tiers + decoy → rendered mock + rationale |

Revenue + math

| Tool slug | What it does | |---|---| | cohort-economics-modeler | LTV/payback/cohort contribution + verdict | | channel-matrix-scorer | Volume × ACV × Accessibility ranker | | blended-gtm-dashboard | 11-slider dashboard, marquee modeler | | gtm-architecture-diagrammer | Canvas + AI coherence audit |

(Full catalog + per-tool input schema at runtime via /operator-pass list.)

Workflow

1. Validate the API key

On first call, validate:

curl -s https://api.jaymountconsulting.com/v1/me \
  -H "Authorization: Bearer $OPERATOR_PASS_API_KEY"

If 401 or 403, surface:

> Your Operator Pass API key is missing / expired / invalid. > Get or renew at https://jaymountconsulting.com/operator-pass.

2. Route to the right tool

Detect intent from the user's request:

| User says | Route to | |---|---| | "Lint this cold email" | cold-email-linter | | "Critique this LinkedIn post" | linkedin-post-critic | | "Generate an EVP" | evp-generator | | "Build an EVP brief" | evp-brief-generator | | "GEO audit on " | geo-visibility | | "Competitive teardown of " | competitive-teardown | | "Run the pipeline math" | blended-gtm-dashboard | | "Score this ad creative" | ad-creative-scorer |

If intent is ambiguous, ask one clarifying question. Don't list tools unless the user asks.

3. Gather the inputs per tool schema

Each tool publishes its input schema at:

GET https://api.jaymountconsulting.com/v1/tools//schema

Fetch the schema, validate the user's inputs against it, and ask for any missing required fields.

4. Call the tool

curl -s -X POST "https://api.jaymountconsulting.com/v1/tools/" \
  -H "Authorization: Bearer $OPERATOR_PASS_API_KEY" \
  -H "Content-Type: application/json" \
  -d ''

5. Surface the result

Each tool returns structured JSON. Pretty-print the result, then offer "the next step" — usually:

  • For audit tools (geo-visibility, cold-email-linter,

competitive-teardown): "Want me to draft the fix for the top issue?"

  • For generator tools (evp-generator, nurture-sequence-planner):

"Want me to A/B test these variants against your existing copy?"

  • For modeler tools (blended-gtm-dashboard,

cohort-economics-modeler): "Want me to run a sensitivity analysis on the top 2 levers?"

Sub-skills

  • [skills/operator-pass-call](../skills/operator-pass-call) — invoke a specific tool by slug
  • [skills/operator-pass-list](../skills/operator-pass-list) — list available tools + schemas

Rate limits + costs

Each tool's API cost is included in your Operator Pass subscription ($2,400/yr Founder rate, through July 16 2026; standard pricing after). Per-tool rate limits and any per-call cost are documented at:

→ https://jaymountconsulting.com/operator-pass/api

The skill respects rate-limit headers and tells the user when they're throttled.

Plugs into

Pairs especially well with:

  • claude-cold-emailcold-email-linter validates drafts; linkedin-hook-grader scores hooks
  • claude-psppersona-from-crm clusters real prospect data into PSPs
  • claude-evpevp-generator produces variants; evp-brief-generator produces full briefs

The free framework skills give you the methodology. The API gives you the deterministic execution layer.

Operator Pass

Operator Pass is the all-access subscription to:

  • The full Compounding Engine course catalog (27 courses, 4 modules)
  • The 22-tool API (this skill wraps it)
  • Weekly office hours with Jay
  • Founder pricing locked at $2,400/yr through July 16 2026 (only 100

Founder seats available)

jaymountconsulting.com/operator-pass

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.