FC alphalens-api
Use this skill whenever the user wants to find companies, discover products, or research competitors using AlphaLens. Triggers on: any explicit mention of 'AlphaLens'; requests like 'find companies like X', 'similar companies to', 'who funds these companies', 'investor network analysis', 'company screening using AlphaLens', 'AlphaLens sourcing', 'enrich with AlphaLens', 'AlphaLens enrichment pipeline', 'add to AlphaLens pipeline', 'peer benchmark', 'compare companies by headcount or funding', 'competitive landscape using AlphaLens', 'market map with AlphaLens', 'white space analysis', 'blue ocean analysis'; or bottom-up deep dives on a specific company. Do NOT fire on generic mentions of 'market map', 'competitive landscape', 'screening', 'sourcing', 'pipeline', or 'enrich' without an AlphaLens context marker.
As a process C 56/100 · Has gaps — weak spots: result and completion, inputs and preconditions, running it twice
What is at stake
Medium-severity findings: the skill is probably honest, but read what alarmed the scanner.
Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.
The instructions or scripts send data out: environment variables, keys, file contents, chat history. You may never notice, because the agent performs the upload as "part of the task".
If the upload is not needed for the task, remove it: catalogs flag such skills and delist them. If it is needed, name the destination explicitly, say what leaves the machine, and give the user a switch.
How to improve
- Your own cases (evals/evals.json, 4–6 real requests with expected answers): the full check would then run those instead of a model-drafted suite.
- A spec.yaml with trigger phrases and assertions — a behaviour contract for CI; `skilltest init` writes a template.
Guard findings · 41
✓ No critical or high findings
Medium and low: 41
-
medium Exfiltration
net-credential-useSKILL.md:40Credential used in a network call (verify the destination is the intended service)All curl commands in this skill and its workflows reference `$KEY` and `$API`. The aliasing above is **required as the first bash command of any session that uses this skill** — skipping it will cause
-
medium Exfiltration
net-credential-useSKILL.md:81Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/entities/organizations/by-domain/ramp.com"
-
medium Exfiltration
net-credential-useSKILL.md:84Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/organizations/{id}/similar?limit=50&is_headquarters=true" -
medium Exfiltration
net-credential-useSKILL.md:91Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/search?description=AI%20pr…ent&is_headquarters=true"
-
medium Exfiltration
net-credential-useSKILL.md:94Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/{product_id}/similar?limit=50&is_headquarters=true" -
medium Exfiltration
net-credential-useworkflows/investor-network.md:16Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/entities/organizations/{org_id1}/funding" > $WORKDIR/fn1.json & -
medium Exfiltration
net-credential-useworkflows/investor-network.md:17Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/entities/organizations/{org_id2}/funding" > $WORKDIR/fn2.json & -
medium Exfiltration
net-credential-useworkflows/market-map-org.md:25Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/organizations/{anchor_id}/similar?limit=50&is_headquarters=true" > $WORKDIR/r_anchor.json & -
medium Exfiltration
net-credential-useworkflows/market-map-org.md:26Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/entities/organizations/by-domain/comp…com" > $WORKDIR/r_c1.json &
-
medium Exfiltration
net-credential-useworkflows/market-map-org.md:27Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/entities/organizations/by-domain/comp…com" > $WORKDIR/r_c2.json &
-
medium Exfiltration
net-credential-useworkflows/market-map-product.md:61Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/entities/organizations/by-domain/{domain}" -
medium Exfiltration
net-credential-useworkflows/market-map-product.md:65Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/entities/organizations/{organization_id}/products?limit=20" -
medium Exfiltration
net-credential-useworkflows/market-map-product.md:86Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/{pid1}/similar?limit=50&is_headquarters=true" > $WORKDIR/prod1.json & -
medium Exfiltration
net-credential-useworkflows/market-map-product.md:87Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/{pid2}/similar?limit=50&is_headquarters=true" > $WORKDIR/prod2.json & -
medium Exfiltration
net-credential-useworkflows/market-map-product.md:88Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/{pid3}/similar?limit=50&is_headquarters=true" > $WORKDIR/prod3.json & -
medium Exfiltration
net-credential-useworkflows/peer-benchmark.md:17Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/organizations/{anchor_id}/similar?limit=30&is_headquarters=true" -
medium Exfiltration
net-credential-useworkflows/peer-benchmark.md:27Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/entities/organizations/{id}/growth-metrics" | jq '{hc:.headcount_metrics.headcount, ts_count:(.headcount_metrics.time_series|length), first:.headcount_metrics.t -
medium Exfiltration
net-credential-useworkflows/peer-benchmark.md:43Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/entities/organizations/{anchor_id}/growth-metrics" > $WORKDIR/gm_anchor.json & -
medium Exfiltration
net-credential-useworkflows/peer-benchmark.md:44Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/entities/organizations/{peer1_id}/growth-metrics" > $WORKDIR/gm_peer1.json & -
medium Exfiltration
net-credential-useworkflows/peer-benchmark.md:48Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/entities/organizations/{anchor_id}/funding" > $WORKDIR/fn_anchor.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase1.md:18Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/{pid1}/similar?limit=50&offset=0&is_headquarters=true" > $WORKDIR/p1_prod0.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase1.md:19Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/{pid1}/similar?limit=50&offset=50&is_headquarters=true" > $WORKDIR/p1_prod50.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase1.md:20Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/{pid2}/similar?limit=50&offset=0&is_headquarters=true" > $WORKDIR/p2_prod0.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase1.md:21Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/{pid2}/similar?limit=50&offset=50&is_headquarters=true" > $WORKDIR/p2_prod50.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase1.md:22Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/{pid3}/similar?limit=50&offset=0&is_headquarters=true" > $WORKDIR/p3_prod0.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase2.md:33Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/search-customers?description=companies%20that%20need%20{upst…w_1}&limit=50&is_headquarters=true" > $WORKDIR/p1_upstream1.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase2.md:34Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/search-customers?description=companies%20that%20need%20{upst…w_2}&limit=50&is_headquarters=true" > $WORKDIR/p1_upstream2.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase2.md:37Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/search-customers?description=companies%20that%20use%20{down…w_1}&limit=50&is_headquarters=true" > $WORKDIR/p1_downstream1.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase2.md:38Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/search-customers?description=companies%20that%20use%20{down…w_2}&limit=50&is_headquarters=true" > $WORKDIR/p1_downstream2.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase3.md:31Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/search?description={feature_A}%20{feature_B}%20{feature_C}&limit=50&is_headquarters=true" > $WORKDIR/p1_abc.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase3.md:34Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/search?description={feature_B}%20{feature_C}&limit=50&is_headquarters=true" > $WORKDIR/p1_bc.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase3.md:37Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/search?description={feature_A}%20{feature_C}&limit=50&is_headquarters=true" > $WORKDIR/p1_ac.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase3.md:40Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/search?description={feature_A}%20{feature_B}&limit=50&is_headquarters=true" > $WORKDIR/p1_ab.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase3.md:43Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/search?description={feature_A}%20{feature_B}%20{feature_D}&limit=50&is_headquarters=true" > $WORKDIR/p1_abd.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase4.md:34Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/search?description={mechanic}%20for%20{icp1}&limit=50&is_headquarters=true" > $WORKDIR/p1_icp1.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase4.md:35Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/search?description={mechanic}%20for%20{icp2}&limit=50&is_headquarters=true" > $WORKDIR/p1_icp2.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase4.md:38Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/search/products/search?description={mechanic}%20for%20{anchor_icp}&limit=50&is_headquarters=true" > $WORKDIR/p1_icp_anchor.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase4.md:51Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/entities/organizations/{org_id1}/funding" > $WORKDIR/funding_org1.json & -
medium Exfiltration
net-credential-useworkflows/white-space-phase4.md:52Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/entities/organizations/{org_id2}/funding" > $WORKDIR/funding_org2.json & -
medium Exfiltration
net-credential-useworkflows/white-space.md:68Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/entities/organizations/by-domain/{domain}" -
medium Exfiltration
net-credential-useworkflows/white-space.md:75Credential used in a network call (verify the destination is the intended service)curl -s -H "API-Key: $KEY" "$API/api/v1/entities/organizations/{organization_id}/products?limit=20"
Files scanned: 19. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
✓ No remarks against the Agent Skills spec
Process rating: all ten parameters 56/100
- 0Result and completion. Does not say what the result is
- 0Inputs and preconditions. Does not say what the process needs to start
- 0Progress reporting. Says nothing while it works
- 30Running it twice. 2 mutating operations with no state check
- 60Tools and files. Uses tools (bash, web) that frontmatter does not declare
- 70When it triggers. States when to use, but not when not to
- 70Failures and branches. 4 branches
- 100Steps. 17 steps
- 100Consistency. Name and required fields are in place
- 100Execution cost. Instruction body is 1351 tokens
- medium Safety rules and hard prohibitions inside a skill: they belong in the system prompt, here they protect nothing
Everything here is measured from the skill text rather than judged by a model, so the numbers are checkable. A parameter weighs more when it is a more common reason for the process to stall.
Quality signals
- +5Description has no quoted example phrases that should trigger the skill
- +4Description does not say when NOT to use the skill (false activations)
- +3Description length 821: 120–800 characters recommended
- +3Output format is not stated: the model decides each time
- +2Single-language instructions
- +4Structure: 11 headings
- +3Step-by-step instructions: 17 items
- +4Has examples (4 code blocks)
- +4Reference files are cited in the instructions (2 of 2)
- +1License stated
Quality base 70; lint remarks subtract, signals add up to 100. Result: 86.