pp-1password
Printing Press CLI for 1Password. Agent-safe command layer over the official 1Password CLI and SDK service-account workflows.
What this skill does
<!-- GENERATED FILE — DO NOT EDIT.
This file is a verbatim mirror of library/auth/1password/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/". -->
# 1Password — Printing Press CLI
## Prerequisites: Install the CLI
This skill drives the `1password-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 1password --cli-only
```
2. Verify: `1password-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.4 or newer). This installs into `$GOPATH/bin` (default `$HOME/go/bin`), so add that directory to `$PATH` instead:
```bash
go install github.com/mvanhorn/printing-press-library/library/auth/1password/cmd/1password-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.
Use 1Password from agents without turning every task into a secret reveal. The CLI resolves fuzzy requests to exact op:// references, audits metadata, checks policy, and only calls op read, op inject, or op run after an explicit plan.
## 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 is intended for secret-reference planning, metadata audits, policy checks, and tightly gated local `op read` / `op inject` workflows.
## Unique Capabilities
These capabilities aren't available in any other tool for this API.
### Secrets
- **`secrets resolve`** — Resolve fuzzy agent requests to exact op:// vault/item/field references without printing values.
_Prevents accidental broad reads and gives later commands an exact reference to use._
```bash
1password-pp-cli secrets resolve --query "token" --json
```
- **`secrets read`** — Read only an exact op:// reference, with policy checks and an explicit --reveal gate before values are printed.
_Turns value access into a narrow, auditable action instead of a fuzzy search._
```bash
1password-pp-cli secrets read op://Engineering/GitHub/token --dry-run --json
```
- **`secrets explain`** — Explain why a particular item and field was selected for a task without revealing the field value.
```bash
1password-pp-cli secrets explain --query "token" --json
```
- **`secrets preflight`** — Check whether a planned task or command appears to require secret values, documents, cards, or write permissions.
```bash
1password-pp-cli secrets preflight --task "deploy using op run --env-file .env" --json
```
### Environment
- **`env plan`** — Parse .env, config, or shell files for missing variables and map them to safe op:// references.
```bash
1password-pp-cli env plan API_TOKEN= --json
```
- **`env inject`** — Wrap op inject with a redacted plan first and require --write before producing an output file.
```bash
1password-pp-cli env inject --in-file README.md --out-file injected.env --json
```
### Items
- **`items classify`** — Find secure notes that look like API credentials, logins, SSH keys, cards, or documents.
```bash
1password-pp-cli items classify --json
```
- **`items duplicates`** — Detect duplicate titles, URLs, usernames, and likely copied credentials across vaults without printing secret values.
```bash
1password-pp-cli items duplicates --json
```
- **`items ownership`** — Flag shared or service credentials missing owner, purpose, rotation, or environment tags.
```bash
1password-pp-cli items ownership --json
```
### Cards
- **`cards audit`** — Find cards stored as notes or logins, missing owner/purpose tags, or CVV-like fields without printing card values.
```bash
1password-pp-cli cards audit --json
```
- **`cards resolve`** — Return card item and field references without printing card numbers, expiry values, or CVVs.
```bash
1password-pp-cli cards resolve --query "card" --json
```
### Documents
- **`documents inventory`** — List document metadata and exact references without downloading document contents.
```bash
1password-pp-cli documents inventory --json
```
- **`documents audit`** — Flag sensitive filenames, oversized docs, private-key/cert-like documents, and documents in shared vaults.
```bash
1password-pp-cli documents audit --json
```
### Sharing
- **`share preflight`** — Before sharing an item, show recipient, item category, included fields, expiry, and risk.
```bash
1password-pp-cli share preflight --ref op://Engineering/GitHub/token --recipient recipient --expires-in 1d --json
```
- **`share audit`** — Report whether existing/shareable item link inspection is supported by op or the SDK and document unsupported status clearly.
```bash
1password-pp-cli share audit --json
```
### Policy
- **`policy check`** — Enforce rules such as never reading credit-card values, exact refs for production, and required owner tags.
```bash
1password-pp-cli policy check --ref op://Production/API/token --require-exact --json
```
### Access
- **`access scope`** — Summarize what the current service account or op session can access by vault, category, and count without values.
```bash
1password-pp-cli access scope --json
```
- **`rate-limit status`** — Wrap op service-account ratelimit so agents can avoid burning quota.
```bash
1password-pp-cli rate-limit status --json
```
### Agent
- **`agent grant-plan`** — Suggest the minimum service-account vault permissions needed for a task.
```bash
1password-pp-cli agent grant-plan --task "read staging deploy token" --json
```
### Runtime
- **`run plan`** — Inspect an op run command or env files and show which secret references will resolve before executing.
```bash
1password-pp-cli run plan --command "npm test" --json
```
### Audit
- **`audit stale`** — Flag items that appear old, untagged, duplicated, or probably unused from metadata.
```bash
1password-pp-cli audit stale --days 180 --json
```
- **`audit misplaced`** — Find API keys, cards, documents, or SSH material saved in the wrong 1Password category.
```bash
1password-pp-cli audit misplaced --json
```
## Recipes
### Resolve a secret request without revealing the value
```bash
1password-pp-cli secrets resolve --query "token" --json
```
Returns exact op:// references and candidate metadata with values redacted so a later step can require an exact reference.
### Plan environment injection before writing output
```bash
1password-pp-cli env inject --in-file README.md --out-file injected.env --json
```
Shows the references op inject would resolve and keeps will_write false unless --write is explicitly supplied.
## Command Reference
**op** — Inspect the local 1Password CLI authentication surface
- `1password-pp-cli op` — Show whether op is installed and authenticated without reading secret values
### Finding the right command
When you know what you want to do but not which command does it, ask the CLI directly:
```bash
1password-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 `Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.