Install
$ agentstack add skill-zime-ai-zime-gtm-skills-qualify-pipeline-check ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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 No
- ✓ 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →About
Qualify Pipeline Check
Sweeps a deal/pipeline export for rows in the Qualify stage that lack the facts Qualify is supposed to establish before a deal is allowed to advance. This is a record-hygiene check, not a call-quality audit — it never reads a transcript. Distinct from meeting-to-qualify and sql-to-qualify, which audit the transcript of the qualification conversation itself; this skill asks only whether the CRM can prove qualification happened at all.
When to use this
- RevOps wants a periodic sweep of the Qualify stage for deals that drifted
forward without the underlying facts ever being captured.
- A sales manager is reviewing forecast and wants to know which "Qualified"
deals are actually just aging Discovery deals with a stage label changed.
- Before a pipeline review, to flag deals that will not survive real
scrutiny on economic buyer, budget, or next step.
Input
A .csv deal/pipeline export. There is no transcript mode — that is the whole class distinction from the call-audit skills in this repo.
Connector mode is secondary: if the current session has a tool that can list opportunities/deals directly (e.g. a CRM MCP tool), call it and treat each returned row exactly like a CSV row. Otherwise, ask for a CSV export.
claude "run qualify-pipeline-check on ./exports/pipeline.csv"
Column detection
Match headers case-insensitively, ignoring _/-/space differences. Accept these synonyms per concept (see references/rubric.md for the full list per flag):
- stage:
stage,deal_stage,dealstage,pipeline_stage - close date:
close_date,closedate,expected_close,expected_close_date - deal value:
amount,deal_value,value,arr,deal_size
If a column a check needs is absent from the export entirely, that check reports Unknown (column missing) for every row — state this once, up front, in the output, and never infer the missing value from another column.
Stage filter
Operate only on rows whose stage column fuzzy-matches "Qualify" (e.g. Qualify, Qualified, Qualification). Report at the top of the output how many rows were in scope out of the export's total row count.
Checks
Run every check in references/rubric.md against every in-scope row. Each check returns one of three states per row: Flagged / Clean / Unknown.
Evidence rule. Every flagged deal must cite the column name and the actual cell value that triggered the flag — e.g. close_date = 2026-01-14 or champion = (empty). A flag with no cited cell does not ship.
Output
One markdown table, flagged deals first, ordered by most flags first:
| Deal | Flags | Evidence | Suggested action |
Then exactly two closing lines:
N of M deals in Qualify pipeline flagged- The single most common flag across the flagged deals
Nothing else — no scores, no letter grades, no percentages invented from data that isn't there.
Sample data
assets/sample-pipeline-qualify-pipeline-check.csv is a synthetic pipeline export with 10 Qualify-stage rows — several deliberately triggering flags and at least two genuinely healthy deals that should come back Clean on every check. Run against it first.
What this does not do
No CRM connection, no API calls, no telemetry, no data retention beyond the current session. It reads the file you point it at (or the connector rows you hand it) and nothing else.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: zime-ai
- Source: zime-ai/zime-gtm-skills
- License: MIT
- Homepage: https://zime.ai
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.