pp-gisis
Authoritative IMO ship particulars on the command line Trigger phrases: `look up IMO`, `GISIS particulars`, `ship particulars by IMO`, `vessel registry lookup`, `flag-hop history for vessel`, `use gisis`, `run gisis`.
What this skill does
<!-- GENERATED FILE — DO NOT EDIT.
This file is a verbatim mirror of library/other/gisis/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/". -->
# GISIS — Printing Press CLI
## Prerequisites: Install the CLI
This skill drives the `gisis-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 gisis --cli-only
```
2. Verify: `gisis-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/gisis/cmd/gisis-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
Use this CLI when you need authoritative IMO ship particulars — name, flag, type, gross tonnage, registered owner, operator, classification society. The local cache makes it a personal vessel index that compounds over time, and 'ship history' surfaces flag/owner changes that matter for sanctions and due diligence. Pair with GFW (vessel events) and AIS Stream (real-time position) via the Vessel MCP orchestrator for a full DD picture.
## Anti-triggers
Do not use this CLI for:
- Do not use this CLI for real-time vessel position — use AIS Stream instead.
- Do not use this CLI for fishing-activity or port-visit events — use Global Fishing Watch (GFW).
- Do not use this CLI for OFAC sanctions screening — use the OpenSanctions or OFAC SDN adapter in the Vessel MCP orchestrator.
- Do not use this CLI for ship name search in v1 — defer to v0.2; in the meantime, look up the IMO another way.
## Unique Capabilities
These capabilities aren't available in any other tool for this API.
### Local state that compounds
- **`ship batch`** — Resolve a list of IMOs in one invocation, honoring the 1 req/2-3s throttle and persisting each to the local cache.
_When an agent needs particulars for many vessels, this is the polite + persistent path. Single IMO? Use 'ship get'._
```bash
gisis-pp-cli ship batch --imos 9966233,9123456 --json
```
- **`ship list`** — Browse vessels you have already fetched, with filters on flag/owner/type and full-text search on name/owner.
_When you want to find a vessel you saw before, this beats re-fetching from GISIS._
```bash
gisis-pp-cli ship list --owner "ACME" --type Tanker --json
```
- **`ship pin`** — Pin vessels for an active deal or story, then refresh only the pinned ones at a chosen cadence.
_Use this to keep a working set of vessels current without re-fetching the whole cache._
```bash
gisis-pp-cli ship pin 9966233 --label deal-2026-Q2 && gisis-pp-cli ship refresh --pinned --older-than 30d
```
- **`ship stale`** — List cached vessels whose particulars haven't been refreshed in N days.
_Compliance recency: when you need to know which dossier vessels need re-checking._
```bash
gisis-pp-cli ship stale --older-than 30d --pinned --json
```
### Maritime due-diligence signals
- **`ship history`** — Show how a vessel's particulars have changed across snapshots — flag, name, owner, operator, classification society, status.
_Flag-hopping and ownership changes are the textbook sanctions-bypass tells in maritime DD. Use this when you need temporal context, not a snapshot._
```bash
gisis-pp-cli ship history 9966233 --json
```
- **`owner fleet`** — List every cached vessel for a given owner string (the Companies module isn't in v1).
_Counterparty exposure and related-vessel discovery without hitting the deferred Companies module._
```bash
gisis-pp-cli owner fleet "ACME SHIPPING LTD" --like --json
```
### Reachability mitigation
- **`auth ping`** — Single fast GET to /Public/SHIPS/Default.aspx; exits 0 if session is live, non-zero if re-login needed.
_Long batch jobs and unattended cron tasks need a cheap way to know if the session is still alive._
```bash
gisis-pp-cli auth ping
```
## HTTP Transport
This CLI uses Chrome-compatible HTTP transport for browser-facing endpoints. It does not require a resident browser process for normal API calls.
## Command Reference
**ship** — Ship particulars — authoritative IMO vessel registry data (name, flag, type, gross tonnage, ownership, classification society).
- `gisis-pp-cli ship <IMONumber>` — Get ship particulars by IMO number from the IMO Ship and Company Particulars module.
### Finding the right command
When you know what you want to do but not which command does it, ask the CLI directly:
```bash
gisis-pp-cli which "<capability in your own words>"
```
`which` resolves a natural-language capability query to the best matching command from this CLI's curated feature index. Exit code `0` means at least one match; exit code `2` means no confident match — fall back to `--help` or use a narrower query.
## Recipes
### Look up an IMO with structured output
```bash
gisis-pp-cli ship get 9966233 --json --select name,flag,type,gross_tonnage,registered_owner
```
Returns the four high-gravity fields needed for a KYC entry.
### Run a nightly batch over a watchlist
```bash
gisis-pp-cli ship batch --file ~/watchlist.txt --json | jq -c '.'
```
Resolves every IMO in the file under the throttle and streams JSON-lines.
### Spot a flag change on a pinned vessel
```bash
gisis-pp-cli ship refresh --pinned --older-than 7d && gisis-pp-cli ship history 9966233 --json
```
Refresh stale pinned ships, then check the diff on one of them.
### Find all cached ships under one owner
```bash
gisis-pp-cli owner fleet "COSCO SHIPPING" --like --json
```
Synthesizes counterparty exposure from accumulated lookups.
### Keep the session alive from cron
```bash
*/20 * * * * /usr/local/bin/gisis-pp-cli auth ping >/dev/null 2>&1
```
ASP.NET sessions time out at ~30 min idle; ping every 20 to stay warm.
## Auth Setup
GISIS requires a free IMO Web Accounts login (https://webaccounts.imo.org/Register.aspx?App=GISISPublic) with a Cloudflare Turnstile challenge. Programmatic login is blocked, so this CLI uses the press-auth companion: install it once, run 'press-auth login gisis.imo.org', a controlled Chrome window opens for you to sign in, and your cookies are captured into the macOS keychain. The CLI then reads cookies on demand. Sessions die after ~30 min of inactivity; run 'gisis-pp-cli auth ping' from cron to keep them warm, or re-run 'press-auth login' when the session expires.
Run `gisis-pp-cli doctor` to verify setup.
## Agent Mode
Add `--agent` to any command. Expands to: `--json --compact --no-input --no-color --yes`.
- **Pipeable** — JSON on stdout, errors on stderr
- **Filterable** — `--select` keeps a subset of fields. Dotted paths descend into nested structures; arrays traverse element-wise. Critical for keeping context small on verbose APIs:
```bash
gisis-pp-cli ship mock-value --agent --select id,name,status
```
- **Previewable** — `--dry-run` shows the request without sending
- **Offline-friendly** — sync/search commands can use the local SQLite store when available
- **Non-interactive** — never prompts, every input is a flag
- **Read-only** — do not use this CLI for create, update, delete, publish, comment, upvote, invite, order, send, or other mutating requests
### Response envelope
Commands that read from the local store or the 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.