Poc not customer usage
Skill warpdotdev/poc-agent-oss/.agents/skills/poc-not-customer-usage
AI-orchestrated pipeline that analyzes the health of active POC (proof of concept) pilots from HubSpot + Metabase and posts per-company summaries to Slack.
npx -y skills add warpdotdev/poc-agent-oss --skill poc-not-customer-usageAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Runs an end-to-end usage report for PoCs that still have an active enterprise service agreement but do not yet have a closed-won non-PoC enterprise deal. Use this skill when asked to summarize this still-open PoC cohort by recent primary metric consumption while still including company name, owner, deal context, and related metadata. The skill posts one compact summary message to Slack with the full ranked company list in that same post.
SKILL.md
5.4 KB, ~1.2k tokens by cl100k_base, as published. Nobody here has run it
Active Enterprise PoC 30-Day Usage Skill
See config/methodology.md for the primary metric definition, cohort logic, and display configuration for this deployment.
Metabase parameter bindings and warehouse table/column names are configured in config/data_sources.json (override the path via DATA_SOURCES_CONFIG).
Required Environment Variables
GENERAL_HUBSPOT_APP_TOKENorHUBSPOT_ACCESS_TOKEN— HubSpot private app token for company owner enrichment (prefersGENERAL_HUBSPOT_APP_TOKEN)METABASE_API_KEY— Metabase API keyPOC_BOT_SLACK_TOKEN— Slack bot OAuth token (xoxb-...)SLACK_CHANNEL— Target channel (default:#poc-bot)
Optional Environment Variables
PRIMARY_METRIC_LABEL— display label for the primary metric (default:primary metric)PRIMARY_METRIC_EMOJI— Slack emoji for the primary metric (default::bar_chart:)DATA_SOURCES_CONFIG— path to the data sources config file (default:config/data_sources.jsoninside the skill)DB_TEAMS_FACTS_TABLE/DB_SERVICE_AGREEMENTS_TABLE/DB_ENTERPRISE_DEALS_TABLE— override the warehouse table names fromconfig/data_sources.jsonDB_DEALS_TEAM_ID_COLUMN— override the column in the deals table holding the team ID (default comes fromconfig/data_sources.json)POC_PIPELINE_LABEL—pipeline_labelvalue identifying PoC deals (default:poc pipeline)INTERNAL_TEAM_NAMES— comma-separated internal demo/test team names to exclude (empty by default)HUBSPOT_ENGINEER_COUNT_PROPERTIES— comma-separated HubSpot custom company property names used to prefer better-enriched company matches (empty by default)INTERNAL_EMAIL_DOMAINS— comma-separated domains whose admin emails are flagged as internal/test (empty by default)PERSONAL_EMAIL_DOMAINS— comma-separated personal email domains flagged for review (defaults to common providers)
Workflow
Step 1: Fetch Data
Run:
python3 .agents/skills/poc-not-customer-usage/scripts/fetch_poc_not_customer_usage_data.py
This writes /tmp/poc_not_customer_usage_data.json with one object per company in the active-enterprise PoC cohort.
The cohort logic is:
- start from active enterprise service agreements (type/status filter values configured in
config/data_sources.json) - require
current_period_end >= current_date() - subtract teams with any non-PoC closed-won deal in the deals table (configured in
config/data_sources.json;DB_ENTERPRISE_DEALS_TABLEoverrides) using the same real-contract filter - exclude known internal/demo/test teams by name (via
INTERNAL_TEAM_NAMES) - enrich the remaining teams with the latest PoC deal when available, but do not exclude teams just because the PoC pipeline record is missing
Each output object includes:
company_nameproduct_team_nameteam_idservice_agreement_idservice_agreement_endadmin_email_domainteam_sizeactive_team_membersmembers_using_primary_featuredeal_namedeal_idpoc_pipeline_labelpoc_deal_stagepoc_seatscompany_email_domainowner_namehubspot_owner_idclassificationreview_flagsdate_rangeprimary_metric_30dThe primary metric is defined inconfig/methodology.md. The script intentionally does not reconstruct the broader customer-health score; it is specifically a usage view over still-open PoCs on active enterprise service agreements. It queries the configured primary metric tile on the Metabase dashboard (set viaMETABASE_DASHBOARD_ID,METABASE_PRIMARY_METRIC_DASHCARD_ID,METABASE_PRIMARY_METRIC_CARD_ID) withteam_idanddate_rangeparameter mappings only; the parameter targets are read fromconfig/data_sources.json. If that metric query fails, the script exits rather than publishing a misleading zero-usage report.
Step 2: Build Report
Run:
python3 .agents/skills/poc-not-customer-usage/scripts/build_report.py
This reads /tmp/poc_not_customer_usage_data.json and writes /tmp/poc_not_customer_usage_report.json.
The report JSON has this shape:
{
"text": "Active enterprise PoC 30-day <PRIMARY_METRIC_LABEL> usage summary",
"main_blocks": [ ...Slack Block Kit JSON... ],
"thread_replies": [],
"run_summary": {
"companies_analyzed": 0,
"primary_metric_30d": 0,
"top_company": "",
"top_company_primary_metric_30d": 0
}
}
Step 3: Post to Slack
Run:
python3 .agents/skills/poc-not-customer-usage/scripts/post_to_slack.py
This posts one top-level summary message.
Slack output expectations
The top-level summary should stay compact and scannable:
- report header with date
- quick summary of how many companies are in the cohort
- ranked list of all companies by 30-day primary metric in the same post
- each company should use the compact one-line format defined in
config/methodology.md
Keep all sections readable in Slack. Use n/a for missing fields rather than leaving blanks.