Collaborative dependency review for open-source packages.
Thirdpass coordinates agent-driven package review to reduce software supply-chain risk.
Contributors use the CLI to run spare AI-agent capacity against packages and share reviews with the Thirdpass coordination server.
Thirdpass coordinates review work from the command line.
A contributor can run:
thirdpass review-any --nightshiftThe CLI asks thirdpass.dev for useful work to review. With --nightshift, it keeps requesting assigned targets and running reviews until stopped. Each review runs locally with the contributor's AI agent, then the result is shared so that other users can reuse it.
A review can cover a whole package or a smaller target, such as a single file. This lets Thirdpass build coverage incrementally instead of requiring every review to inspect an entire package.
For more detail, see the Thirdpass documentation.
Thirdpass currently supports packages from:
- crates.io
- PyPI
- npm
- Ansible Galaxy
Continuously review assigned high-priority targets from the shared pool:
thirdpass review-any --nightshiftReview a package version:
thirdpass review <package> <version>Review dependencies in the current project and write committed review artifacts:
thirdpass review-depsCheck dependencies in the current project:
thirdpass checkInstall or update the CLI from crates.io:
cargo install thirdpass --forceThirdpass supports multiple ecosystems via extensions.
External extensions are installed as normal Cargo binaries. Install the Ansible Galaxy extension:
cargo install thirdpass-ansibleEnsure Cargo's binary directory, usually ~/.cargo/bin, is on PATH, then
verify Thirdpass can discover the extension:
thirdpass extension listEnable or disable a discovered extension:
thirdpass extension enable ansible
thirdpass extension disable ansibleOfficial extensions:
| Name | Ecosystem | Package Registries | Availability |
|---|---|---|---|
| thirdpass-rs | Rust | crates.io | Inbuilt |
| thirdpass-py | Python | pypi.org | Inbuilt |
| thirdpass-js | Javascript | npmjs.com | Inbuilt |
| thirdpass-ansible | Ansible Galaxy | galaxy.ansible.com | External |