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

No install needed:

uvx keyfleet init ~/keyfleet-ledger

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

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

keyfleet init [DIRECTORY] drops a fictional example ledger into DIRECTORY (default: the current directory; created if missing) and makes sure .gitignore covers keyfleet.yaml there. Naming a directory means it works from anywhere — including terminals that open somewhere unwritable like C:\Windows\System32. 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 [DIRECTORY] Example ledger + .gitignore entry in DIRECTORY (default: here).

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.2.0.tar.gz (157.3 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.2.0-py3-none-any.whl (38.1 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for keyfleet-0.2.0.tar.gz
Algorithm Hash digest
SHA256 26c960197c3a513c9f303b09ee4738bed90c17b38a64c40ea9a79e27c4b95dfb
MD5 53e849ecd2194afad6f3aa6cf0829ca0
BLAKE2b-256 25d0422863ef773e3aaab00af2e6a7442c965ffd630bb768801531d6623d82e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyfleet-0.2.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.2.0-py3-none-any.whl.

File metadata

  • Download URL: keyfleet-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 38.1 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.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c4bb672cca62265811bf7a8523a8334b967d4994a31f306a84c67cf75bf01e82
MD5 2b3143756495991833ca6cbce458bcaa
BLAKE2b-256 73e1f402ed11c6be61c3e793c820800c0e5528413c63c3e5bda804047b02a819

See more details on using hashes here.

Provenance

The following attestation bundles were made for keyfleet-0.2.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

This release

0.2.0 This release

2 files

0.1.1

2 files

0.1.0

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