pp-american-reindustrialization
Browse, slice, and analyze the curated American Reindustrialization directory — with diffs, geo clusters, sector... Trigger phrases: `look up american reindustrialization companies`, `find reindustrialization jobs`, `browse american manufacturing directory`, `sector heatmap of reindustrialization companies`, `use american-reindustrialization`, `run american-reindustrialization`.
What this skill does
<!-- GENERATED FILE — DO NOT EDIT.
This file is a verbatim mirror of library/other/american-reindustrialization/SKILL.md,
regenerated post-merge by tools/generate-skills/. Hand-edits here are
silently overwritten on the next regen. Edit the library/ source instead.
See the repository agent guide, section "Generated artifacts: registry.json, cli-skills/". -->
# American Reindustrialization — Printing Press CLI
## Prerequisites: Install the CLI
This skill drives the `american-reindustrialization-pp-cli` binary. **You must verify the CLI is installed before invoking any command from this skill.** If it is missing, install it first:
1. Install via the Printing Press installer. It defaults binaries to `$HOME/.local/bin` on macOS/Linux and `%LOCALAPPDATA%\Programs\PrintingPress\bin` on Windows:
```bash
npx -y @mvanhorn/printing-press-library install american-reindustrialization --cli-only
```
2. Verify: `american-reindustrialization-pp-cli --version`
3. Ensure the reported install directory is on `$PATH` for the agent/runtime that will invoke this skill.
If the `npx` install fails (no Node, offline, etc.), fall back to a direct Go install (requires Go 1.26.3 or newer):
```bash
go install github.com/mvanhorn/printing-press-library/library/other/american-reindustrialization/cmd/american-reindustrialization-pp-cli@latest
```
If `--version` reports "command not found" after install, the runtime cannot see the binary directory on `$PATH`. Do not proceed with skill commands until verification succeeds.
## When to Use This CLI
Reach for this CLI when an agent or analyst needs to slice, join, or analyze the americanreindustrialization.com company directory and jobs board beyond what the website's filter UI exposes. The local SQLite store enables composed cross-resource filters (jobs at companies with property X), aggregate analytics (sector × state heatmaps, funding × sector crosstabs, salary distributions), and diff over time (whats-new since a prior sync). Pair `--select` with `--json` whenever an agent only needs a subset of the ~30 fields per company.
## When Not to Use This CLI
Do not activate this CLI for requests that require creating, updating, deleting, publishing, commenting, upvoting, inviting, ordering, sending messages, booking, purchasing, or changing remote state. This printed CLI exposes read-only commands for inspection, export, sync, and analysis.
## Unique Capabilities
These capabilities aren't available in any other tool for this API.
### Local state that compounds
- **`whats-new`** — Show companies and jobs added or updated since a date you provide, so a weekly sweep takes one command instead of an eyeball-the-list session.
_Reach for this when an analyst or agent needs week-over-week deltas across the directory; the site offers no such view._
```bash
american-reindustrialization-pp-cli whats-new --since 2026-05-12 --json
```
### Cross-entity local queries
- **`openings find`** — Filter the jobs board by work_mode, experience_level, salary floor, state, company size, sector, and posted-since in a single query — combinations the website's UI cannot express.
_Use this when a user wants the shortlist instead of 25 paginated pages; cross-resource filters are this CLI's reason to exist._
```bash
american-reindustrialization-pp-cli openings find --work-mode remote --experience senior --salary-min 150000 --state TX --json
```
- **`companies top-hiring`** — Rank companies by jobs_count descending, with optional filters by sector, state, or funding_stage — the site has no ranking view.
_Reach for this when a job seeker or recruiter wants 'who has the most openings in sector X right now'._
```bash
american-reindustrialization-pp-cli companies top-hiring --sector robotics --limit 10 --json
```
- **`companies profile`** — Single-shot rich profile for one company: full fields plus that company's open jobs plus similar companies (same primary_sector and employee_range bucket).
_Use this when a single named company needs full context plus peers — research, due diligence, competitor scans._
```bash
american-reindustrialization-pp-cli companies profile harmony-ai --json
```
### Ecosystem analytics
- **`analytics sector-heatmap`** — Crosstab of primary_sector × HQ state with company counts (optionally weighted by jobs_count or filtered by funding_stage), revealing the geographic shape of each sector.
_Pull this when answering 'where is sector X clustering' or 'which states are bidding loudest on hiring in sector Y'._
```bash
american-reindustrialization-pp-cli analytics sector-heatmap --funding-stage seed --weight jobs --json
```
- **`analytics funding-by-sector`** — Crosstab of funding_stage × primary_sector with company counts and median employee_range, exposing where capital is concentrating.
_Use this when an investor needs the capital map across the reindustrialization directory._
```bash
american-reindustrialization-pp-cli analytics funding-by-sector --json
```
- **`analytics geo-clusters`** — Grid-bucket companies by lat/lon (default 50km cells) and emit cluster centroid, member count, member companies, and the dominant sector per cluster.
_Pull this for 'which metro is the densest cluster in sector X' style questions; the site has no map view._
```bash
american-reindustrialization-pp-cli analytics geo-clusters --state TX --radius-km 50 --json
```
- **`openings salary-stats`** — p25 / p50 / p75 of midpoint salary across filtered jobs, with null-salary count reported separately so missing data is honest.
_Use this when a job seeker or comp analyst wants band ranges, not individual postings._
```bash
american-reindustrialization-pp-cli openings salary-stats --sector robotics --experience senior --json
```
- **`companies cohorts`** — Bucket companies by founded_year (default 5-year buckets) with company counts and the top-3 sectors per cohort.
_Reach for this when writing about 'companies founded since 2020 in the reindustrialization wave' or tracking ecosystem age over time._
```bash
american-reindustrialization-pp-cli companies cohorts --bucket 5 --json
```
## Command Reference
**categories** — Top-level sectors (hierarchical via parent_id)
- `american-reindustrialization-pp-cli categories counts` — Map of category_id -> company count
- `american-reindustrialization-pp-cli categories get` — Get one category by slug
- `american-reindustrialization-pp-cli categories list` — List every category (bare array)
- `american-reindustrialization-pp-cli categories search` — Search categories by query string
**companies** — US-based companies driving reindustrialization (manufacturing, robotics, advanced materials, supply chains)
- `american-reindustrialization-pp-cli companies get` — Get one company by slug (returns the full object directly, not wrapped)
- `american-reindustrialization-pp-cli companies list` — List companies with pagination and optional server-side filters
- `american-reindustrialization-pp-cli companies search` — Full-text search across company names and descriptions; returns a bare array
**news** — News feed (currently empty upstream; reserved for future API population)
- `american-reindustrialization-pp-cli news` — List news items (returns a bare array; empty at capture)
**openings** — Open job listings aggregated from companies in the directory
- `american-reindustrialization-pp-cli openings categories` — Autocomplete list of categories that have at least one opening
- `american-reindustrialization-pp-cli openings companies` — Autocomplete list of {id, name} for companies that currently have open openings
- `american-reindustrialization-pp-cli openings get` — Get one job opening by slug
- `american-reindustrialization-pp-cli openings list` — List job openings with pagination and optional server-side filters (work_mode and experience_level are honored;...
- `american-reindustrialization-pp-cli openings Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.