Skip to main content

keyfleet

Your YubiKey can't tell you which accounts it's registered to. keyfleet can.

ci PyPI Python License

keyfleet is a local-first CLI that keeps a small YAML ledger of your hardware security keys, the accounts they are registered to, and the credential type of each registration — then answers the questions the keys themselves can't:

  • Which accounts have only one key registered?
  • What breaks if I lose this key — and where do I go to de-register it?
  • Which of my keys does that vendor advisory affect?
  • How close is this key to its passkey capacity?

It stores no secrets (validation refuses anything that looks like one) and makes no network calls, ever — both enforced by tests.

keyfleet demo: check finds a lost key still registered, lost prints the ordered de-registration checklist

Why a ledger? Your key literally cannot tell you.

FIDO2 has two kinds of credentials. Discoverable credentials (passkeys) live on the key — it has a fixed number of slots, and tools can list them. But the classic security-key registration — U2F, and most "add a security key" 2FA flows — is non-discoverable: the key stores nothing per account. The service keeps a credential ID that only your key can use, and the key just answers challenges with it. No software can enumerate those registrations from the hardware — not ykman, nothing — because the list does not exist anywhere except across the services themselves.

So the only complete map of what your keys unlock is the one you maintain. Every vendor's advice is to register a backup key with every account; nothing tracks whether you actually did. keyfleet is that map, plus the checker that turns it into answers.

Quick start

Once v0.1.0 is on PyPI, no install needed:

uvx keyfleet init

(or pipx install keyfleet). From a clone, today:

uv sync --all-extras --dev
uv run keyfleet check keyfleet.example.yaml

keyfleet init drops a fictional example ledger next to you and makes sure .gitignore covers keyfleet.yaml. Copy keyfleet.example.yaml to keyfleet.yaml, make it yours, and from then on it's just keyfleet check.

keyfleet check — 4 keys (2 active, 1 spare, 1 lost) · 5 accounts

FAIL  T0 "Primary email (Google)" has 1 hardware key registered; policy requires 3
FAIL  Key yk-old is LOST but still registered on 3 accounts → run: keyfleet lost yk-old
WARN  T0 "Primary email (Google)" lists sms as a factor
INFO  T1 "Code hosting (GitHub)" has no recovery-code pointer (policy requires recovery codes for T1)

2 fail, 1 warn, 1 info · exit 1

That keyfleet lost yk-old prints the incident checklist: every affected account ordered by tier (the ones that become inaccessible first), which registration nickname to delete, and the service's security-settings URL — straight from the bundled, source-cited services table.

Commands

Command What it does
keyfleet validate [LEDGER] Schema + referential integrity + secret rejection. Exit 0/1/2.
keyfleet check [LEDGER] [--json] Policy violations and coverage gaps; exit 1 on any FAIL.
keyfleet lost KEY_ID [LEDGER] [--md] Impact analysis + ordered de-registration checklist.
keyfleet report [LEDGER] [--md|--json] Coverage matrix, per-tier summary, key utilization.
keyfleet advisories [LEDGER] Keys matching vendor advisories by firmware range.
keyfleet services [--search NAME] The bundled service table.
keyfleet init Example ledger + .gitignore entry.

The checks: minimum keys per account tier (default T0:3, T1:2, T2:1 — override per ledger), registrations still sitting on lost/retired keys, weak factors on sensitive tiers (default: sms/email on T0), spares registered nowhere, missing recovery-code pointers (never the codes), passkey-slot usage against known model capacities, and service-id typos.

The ledger

keys:
  - id: yk-blue
    label: "Blue YubiKey 5C NFC  daily carry"
    vendor: yubico
    model: "YubiKey 5C NFC"
    firmware: "5.7.1"
    status: active            # active | spare | lost | retired
accounts:
  - id: email-primary
    service: google           # keys into the bundled services.yaml
    label: "Primary email (Google)"
    tier: T0                  # T0 root of trust · T1 important · T2 nice-to-have
    registrations:
      - { key: yk-blue, type: fido2-discoverable, nickname: blue-daily }
    other_factors: [totp-app, recovery-codes]
    recovery_codes: { stored: true, where: "sealed envelope" }   # a pointer, never the codes

Full shape: keyfleet.example.yaml. Editors get completion from schema/keyfleet.schema.json (VS Code: map it to keyfleet*.yaml under yaml.schemas).

The services dataset

services.yaml ships knowledge about 32 services: where the security-key settings live, the documented maximum number of keys, and whether passkeys are supported — every fact read from the service's own page, with source_url and a verified date, and null where the vendor documents nothing (never a guess). Browse it in docs/SERVICES.md; add your service via CONTRIBUTING.md — those PRs are the easiest way to help.

Encrypted ledgers

The ledger reveals which accounts exist and which keys guard them — treat it as sensitive. Keep it as a password-manager document, in a private repo, or age-encrypted: every command transparently reads keyfleet.yaml.age (decrypted to memory only, never to disk). Set KEYFLEET_AGE_IDENTITY to an identity file for non-interactive use.

Security posture

  • No secrets, ever: validation refuses fields or values that look like recovery codes, TOTP seeds, PINs, or OTP secrets, with tests to keep it so.
  • No network calls in runtime code (a test greps the imports), no telemetry.
  • keyfleet.yaml is gitignored here and by keyfleet init.
  • See SECURITY.md for reporting.

Roadmap

  • v0.2keyfleet add key|account interactive prompts; CSV import helpers.
  • v0.3 — optional read-only ykman/fido2 integration to pull model/firmware/serial; a static, local-storage-only PWA on the same schema.

License

Apache-2.0 — see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

keyfleet-0.1.0.tar.gz (155.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

keyfleet-0.1.0-py3-none-any.whl (37.4 kB view details)

Uploaded Python 3

File details

Details for the file keyfleet-0.1.0.tar.gz.

File metadata

  • Download URL: keyfleet-0.1.0.tar.gz
  • Upload date:
  • Size: 155.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for keyfleet-0.1.0.tar.gz
Algorithm Hash digest
SHA256 7ccb5da096607fde42d35555a0d0b2cb6fd7aa16e52c3f23e48b410296adc2c4
MD5 1c7eb508777b1b4e81084b1ab4fc0ad6
BLAKE2b-256 049ed04928472f3f781b2b2cd873d00ac4beefedfb620279e79ce25239458da9

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyfleet-0.1.0.tar.gz:

Publisher: release.yml on ThePrimeLayer/keyfleet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keyfleet-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: keyfleet-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 37.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for keyfleet-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 79ae31a5b09fbdcd47641172e627681d3812a901b1fd9a47725a2aca5c9537a2
MD5 54e1792289553e1cf4729278ffdec46e
BLAKE2b-256 4cc5ce19fd8c33591bb94bd5e315bd5aa5ef926a88602499a758974e44528c2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyfleet-0.1.0-py3-none-any.whl:

Publisher: release.yml on ThePrimeLayer/keyfleet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.2.0

2 files

0.1.1

2 files

This release

0.1.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page