linceo
A DevSecOps tool orchestrator: it runs one or more security tools against a
workspace, normalizes their output into a single Finding model, and
produces one verdict — one exit code — for the entire run, instead of one
report per tool that a pipeline has to reconcile by hand.
The full architecture and scope of the current version are recorded in
docs/adr/ADR-000-arquitectura-base-y-alcance-v0.1.md.
That document is the contract for this project; anything below is a summary
of it, not a replacement.
Status
Pre-release (0.1.0.dev0). The engine, both v0.1 reference tool
integrations (Gitleaks, Trivy), both reference context providers (local,
azure_devops), console/JSON/SARIF reporting, the doctor command, and
the reference container image are in place. See the ADR's build order for
what ships next.
Non-negotiable constraints
- Runs the same way regardless of which CI platform invokes it.
- The happy path makes no network call.
- No shared state or backend of its own: one run is one self-contained execution.
- The container image is the primary distribution unit; PyPI supports local development, bring-your-own tool binaries.
- No client-specific configuration ever lives in this repository.
Installation
Container image (primary distribution, ADR §4/R4)
The container image is the unit of compatibility between the orchestrator and the exact tool versions it invokes: it bundles pinned, checksum-verified builds of Gitleaks and Trivy, plus Trivy's vulnerability database pre-fetched at build time, so a scan runs fully offline by default.
Pull a published release — built and pushed by
.github/workflows/release.yml, no
authentication needed (see docs/RELEASING.md):
docker pull ghcr.io/jdiegoisaza/linceo:latest # or a specific version, e.g. :0.2.0
Run it against a workspace by mounting it and appending a subcommand —
exactly as you would to the linceo binary itself:
docker run --rm -v "$PWD:/workspace" ghcr.io/jdiegoisaza/linceo scan secrets
docker run --rm -v "$PWD:/workspace" ghcr.io/jdiegoisaza/linceo scan sca --fail-on high
docker run --rm ghcr.io/jdiegoisaza/linceo doctor
docker run --rm ghcr.io/jdiegoisaza/linceo alone (no subcommand) prints
--help. The image runs as a fixed non-root user (uid/gid 1000); if the
mounted workspace's files are owned by a different uid on the host, add
--user "$(id -u):$(id -g)" to the docker run invocation.
To build it yourself instead — for local development, or to reproduce a published image bit-for-bit from source — from the repository root:
docker build \
--build-arg BUILD_DATE="$(date -u +%Y-%m-%dT%H:%M:%SZ)" \
--build-arg VCS_REF="$(git rev-parse HEAD)" \
-t linceo:local .
(swap ghcr.io/jdiegoisaza/linceo for linceo:local in the docker run
examples above). Omitting LINCEO_VERSION here is expected for a local
build — it's the release workflow that passes the real one; see
docs/RELEASING.md, "Container image".
Which exact versions of Gitleaks and Trivy — and how old its vulnerability
database is — a given image carries is queryable two ways, and both
describe the same pinned reality (see Dockerfile and
src/linceo/cli/doctor.py):
- Without starting the container:
docker inspect ghcr.io/jdiegoisaza/linceo:latest(orlinceo:local, orskopeo inspectagainst any pushed image) shows the OCI labels the build embeds —dev.linceo.tool.gitleaks.version,dev.linceo.tool.trivy.version,dev.linceo.trivy-db.built-at, plus the standardorg.opencontainers.image.*set. - From inside it:
linceo doctor(see below) — the same command works identically for apip installed, bring-your-own-tool setup.
Context providers inside the container: which environment variables cross the boundary
docker run does not inherit the invoking process's environment — nothing
reaches linceo inside the container unless passed explicitly with -e VAR (or --env-file). Which variables matter depends on --platform (or
its auto detection, ADR §4 R1):
-
local(the default outside any recognized CI platform) needs nothing extra: it resolves everything from the mounted git checkout itself (git rev-parse,git remote get-url origin) — no environment variable read at all. -
azure_devopsneeds the Azure Pipelines agent's own variables forwarded explicitly — all standard, non-secret predefined variables (canonical list:src/linceo/providers/azure_devops.py,ENV_VARS, plus theauto-detection sentinel below):Variable Required? Resolves TF_BUILD— autodetection's own sentinel (linceo.providers.detection)BUILD_REPOSITORY_NAMErequired repositoryBUILD_SOURCEVERSIONrequired commitBUILD_SOURCEBRANCHoptional branch(non-PR trigger)SYSTEM_PULLREQUEST_SOURCEBRANCHoptional branch(PR trigger)SYSTEM_PULLREQUEST_PULLREQUESTIDoptional pull_request_id(Azure DevOps' own internal id)SYSTEM_PULLREQUEST_PULLREQUESTNUMBERoptional pull_request_id(GitHub-backed repository, human-facing number — preferred over the internal id when both are set)BUILD_BUILDIDoptional build_idBUILD_REPOSITORY_URIoptional source_urldocker run --rm \ -e TF_BUILD -e BUILD_REPOSITORY_NAME -e BUILD_SOURCEVERSION \ -e BUILD_SOURCEBRANCH -e SYSTEM_PULLREQUEST_SOURCEBRANCH \ -e SYSTEM_PULLREQUEST_PULLREQUESTID -e SYSTEM_PULLREQUEST_PULLREQUESTNUMBER \ -e BUILD_BUILDID -e BUILD_REPOSITORY_URI \ -v "$PWD:/workspace" ghcr.io/jdiegoisaza/linceo scan secrets
The reference
azure-pipelines/templates/linceo-scan.ymlalready does this by default (seedocs/ADOPTION.md) — nothing to configure if you use it. The snippet above only matters if you invoke the image directly, outside that template.Deliberately an explicit allowlist, never the whole environment: a real Azure Pipelines job's process environment routinely carries far more than this — feed credentials, mapped secret variables, other steps' exports — none of which
linceohas any business seeing inside the container.Diagnosing this from inside a container:
docker run --rm -e TF_BUILD -e BUILD_REPOSITORY_NAME ... ghcr.io/jdiegoisaza/linceo contextshows exactly which platform got selected, why, and the value (or absence) of every variable above — run it before a real scan ifautoseems to be picking the wrong platform.
pip install (local development, bring-your-own tool binaries)
pip install linceo
Requires Python 3.11 or later. Gitleaks and Trivy are not bundled via
PyPI — install them yourself and run linceo doctor to confirm each one
is on PATH, at a compatible version, and (for Trivy) how old its
vulnerability database is; a missing or incompatible tool gets an
actionable install/upgrade hint printed right there.
Development
uv sync
uv run linceo --version
See CONTRIBUTING.md for the full set of task commands,
and AGENTS.md for repository conventions and hard rules.
License
Release files for linceo 0.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| linceo-0.2.0.tar.gz | 307.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| linceo-0.2.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 442.0 kB
Release files / linceo-0.2.0.tar.gz
| Download URL | linceo-0.2.0.tar.gz |
|---|---|
| Size | 307.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
6438bc1c995e9e737071bc9fa67ffb74841a1a7c9aca6a5148e4a7ac0f68dc5f
|
|
BLAKE2b-256 checksum How to use checksums |
db2890eebc73a5df23e598b59f63f742c0d72044a16884c598965858c60fb798
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.
Transparency logRelease files / linceo-0.2.0-py3-none-any.whl
| Download URL | linceo-0.2.0-py3-none-any.whl |
|---|---|
| Size | 134.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
4b248718f45c08034f7b37b30bda20b482398d7fcb4c3a4ae7a594312c410c4b
|
|
BLAKE2b-256 checksum How to use checksums |
7bb5f6ff5b629ca73376ece6ea4bb4f64a8405845faff91e2e7fc2f970e3f59a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.
Transparency log