Skip to main content

HorusTrace

CI License Python

Static effective-authority and attack-path analysis for AI agents.

HorusTrace reconstructs what agents can actually reach and do from source, configuration, MCP, identity, policy, and IaC evidence, then evaluates five connected security layers:

  1. Agent configuration — tools, approvals, guardrails, MCP, code execution and framework-specific controls.
  2. Capability analysis — effective authority, capability budgets, prohibited actions and dangerous combinations.
  3. Identity & permissions — cloud/IAM roles, wildcard permissions, OAuth scopes and credential source.
  4. Data & network reachability — sensitive resources, resource scope, outbound destinations and allowlist violations.
  5. Attack-path analysis — potential risk combinations such as untrusted content → delegated agent → shell, or confidential data → agent → external write.

Status: v0.6.0. Findings, effective-authority relationships and Authority Contract assessments are deterministic within supported constructs. HorusTrace does not prove runtime exploitability or complete live cloud authority.

Release notes: docs/releases/v0.6.0.md
Frozen-90 validation baseline: docs/research/frozen-90-v0.6.0-baseline.md

Security model

What is configured?
        ↓
What can the agent do directly or through delegation?
        ↓
What authority does its identity have?
        ↓
What data/resources/destinations are reachable?
        ↓
Which end-to-end attack paths exist?

The scanner is static-first and local-first. It does not import target Python modules and does not launch MCP servers or agents.

Authority policy and pull-request enforcement

v0.6 adds a repository-local Authority Contract under policy.authority. A contract can constrain capabilities, identities, IAM roles/permissions, OAuth scopes, resources, destinations, MCP servers and per-server MCP tool scope, and can require approval for selected capabilities.

Contract evaluation produces three explicit outcomes:

  • compliant — supported static evidence satisfies the contract;
  • violation — supported static evidence conflicts with the contract;
  • unresolved — available evidence is insufficient to prove either outcome.

Unknown evidence is never silently treated as compliant.

horustrace diff compares both effective authority and Authority Contract posture. The optional policy gate fails on newly introduced violations or on contract weakening, including removed deny rules, widened allowlists, removed approval requirements and widened MCP tool scope:

horustrace diff BASE..HEAD --repo . --fail-on-policy-violation

The first-party GitHub Action exposes the same opt-in fail-on-policy-violation behavior. Policy results include precise manifest clause provenance and a structured explanation chain back to the effective-authority and source evidence that informed the assessment.

Current framework/input coverage

  • Google Agent Development Kit (ADK) Python 2.x — first-class adapter.
  • Google ADK Agent Config YAML (root_agent.yaml and related agent configs).
  • OpenAI Agents SDK Python constructs, including v0.4 handoff normalization.
  • Pydantic AI / Pydantic AI Harness — first-class static adapter for agents, tools, toolsets, approvals, MCP and security-relevant capabilities.
  • FastAgent — first-class static Python adapter for decorator-defined agents, workflows, explicit function tools, shell authority and delegation.
  • LangGraph StateGraph / MessageGraph normalization, including hardened real-world graph discovery.
  • Common MCP JSON configuration (mcp.json, .mcp.json).
  • Framework-neutral horustrace.manifest.yaml for business/security intent.
  • Terraform (.tf) for an initial GCP/Azure/AWS IAM view.
  • ADK .env credential-source checks without exposing secret values in findings.

Google ADK coverage

The v0.3 release (published as HorusTrace) performs repository-aware analysis of security-relevant ADK composition rather than only matching individual Agent(...) declarations.

Agents and orchestration

  • Agent / LlmAgent.
  • SequentialAgent, ParallelAgent, LoopAgent.
  • sub_agents and transitive delegated authority.
  • AgentTool delegation and include_plugins isolation.
  • RemoteA2aAgent consumption and to_a2a(...) exposure.
  • transfer restrictions and workflow metadata.
  • cross-file Python/config delegation aliases.

Tools and execution

  • plain Python functions used as ADK tools.
  • FunctionTool, LongRunningFunctionTool, AuthenticatedFunctionTool.
  • require_confirmation.
  • ExecuteBashTool and BashToolPolicy.
  • EnvironmentToolset / LocalEnvironment.
  • UnsafeLocalCodeExecutor, BuiltInCodeExecutor, AgentEngineSandboxCodeExecutor, GkeCodeExecutor.
  • ComputerUseToolset.
  • BigQuery/Bigtable/Data Agent toolsets.
  • Google API/Gmail/Calendar/Docs/Sheets/Slides/YouTube toolsets.
  • search/retrieval tools and inferred untrusted external content.
  • OpenAPI/API Hub/Application Integration/REST-style tool surfaces.
  • memory/artifact/MCP-resource tools represented as data capabilities.

MCP

  • McpToolset / MCPToolset.
  • stdio, SSE and Streamable HTTP connection parameters.
  • URL/transport analysis.
  • auth scheme/credential/header-provider detection.
  • recognized authorization headers.
  • tool filters.
  • confirmation requirements.

Safety controls

  • before_agent_callback, after_agent_callback.
  • before_model_callback, after_model_callback.
  • before_tool_callback, after_tool_callback.
  • model/tool error callbacks.
  • security/safety/policy-style plugins attached through App/Runner.
  • tool-level confirmation.

Google identity context

  • google.auth.default(scopes=...).
  • service-account-file use.
  • ADK credentials config objects.
  • Google API toolset additional_scopes.
  • client-secret literals (reported without secret material).
  • .env API-key/service-account-file indicators.
  • Terraform GCP IAM bindings feeding Layer 3.

See docs/google-adk.md for the exact supported surface and limitations. See docs/fast-agent.md for FastAgent coverage and limitations.

Quick start

python -m venv .venv
source .venv/bin/activate
pip install horustrace
horustrace scan .

List the built-in rule catalogue without scanning a project:

horustrace rules
horustrace rules --format json --output rules.json

Inspect the built-in framework-adapter contract:

horustrace adapters
horustrace adapters --format json

Adapter contract v1 keeps framework-specific parsing behind a stable static interface that emits HorusTrace's normalized graph model. Built-in adapters do not import or execute target applications, and HorusTrace does not auto-load arbitrary installed third-party plugins.

Summarize effective detector coverage against the OWASP Top 10 for Agentic Applications 2026:

horustrace owasp .
horustrace owasp . --format json --output owasp-agentic.json

The OWASP report preserves detector-level status while adding a runtime-first view:

  • FINDING — one or more mapped findings are classified as runtime application source.
  • NO RUNTIME FINDINGS — mapped findings exist, but only outside runtime or with unknown source context.
  • NO MAPPED FINDINGS — enabled mapped detectors exist, but none fired in this scan.
  • NOT ASSESSED — HorusTrace currently has no enabled mapped detector for that category.

Each category includes total and runtime finding counts, a source-context breakdown (runtime, test, example, tutorial, notebook, CLI/support, template-generated and unknown), triggered rules, and affected agents. Unknown source context is reported separately rather than treated as non-runtime.

This is detector-level coverage, not a claim that an OWASP category is fully mitigated or absent at runtime. Normal JSON and SARIF scan output also includes the enriched owasp_agentic summary, and console findings show their mapped ASI identifiers.

Export the versioned Agent Security Graph (ASG), which co-locates the framework-neutral dependency topology with effective-authority relationships, static data-flow evidence, attack paths, and coverage/resolution state:

horustrace security-graph .
horustrace security-graph . --output agent-security-graph.json

ASG v1 is additive: the existing horustrace graph command continues to emit the Agent Dependency Graph (ADG) schema. ASG paths are repository-relative and its canonical digest is stable across checkout locations, so the document can become a portable input to future authority-delta, attestation, and runtime-correlation features. ASG remains static evidence; it does not claim runtime effectiveness.

Inspect effective agent authority reconstructed from static evidence:

horustrace authority .
horustrace authority . --format json --output effective-authority.json

The authority report reconstructs normalized agent-to-tool and agent-to-MCP relationships, including capabilities, identity and credential evidence, approval, tool filters, resources, destinations, mutation/network semantics, and the ADG INVOKES evidence that supports the relationship. Every relationship reports runtime_effectiveness: not_verified.

Each security dimension is explicitly marked as resolved, partially_resolved, or unknown. Missing identity, approval, resource, destination, or MCP tool-catalogue evidence remains in the relationship's unresolved list rather than being inferred. The existing mcp_authority block in normal JSON scan output remains available for backward compatibility; the generic relationship model is exposed separately as effective_authority.

FastAgent agents that declare static servers=[...] references are reconciled to repository-discovered MCP server definitions. HorusTrace parses local fast-agent.yaml / fast-agent.yml mcp.servers definitions, including static target URL or stdio command shorthand and header-based authentication evidence. When the same server name exists in multiple configurations, the nearest enclosing FastAgent configuration to the agent source file is preferred; otherwise binding requires repository-wide uniqueness. Per-agent FastAgent tools={server: [...]} filters are projected onto the bound relationship. Ambiguous server names remain unresolved and are not promoted into effective authority.

Coverage resolution also exposes reason breakdowns for unbound MCP servers and unknown flow reachability so research runs can distinguish missing evidence from ambiguous evidence without guessing.

Authority-aware findings link supported rule results back to the stable relationship that informed them through authority_relationship_id. The first consumers are AGT040, AGT032, NET002, and CAP005. When relationship evidence is unavailable or incomplete, HorusTrace preserves the existing conservative rule fallback rather than inferring a missing identity, approval, resource, tool catalogue, or destination.

Declared IAM authority from a Terraform repository

When application identities and IAM bindings live in separate repositories, check out both repositories and point HorusTrace at the Terraform repository explicitly:

horustrace scan ./agent-app \
  --authority-source ../platform-infra \
  --fail-on high

--authority-source is an offline, filesystem-only enrichment input. HorusTrace does not clone the repository, authenticate to GitHub, or call Google Cloud. The caller is responsible for checking out the authority repository, including any authentication needed for a private repository.

The first implementation correlates literal GCP service-account principals already discovered in the application graph with supported Terraform IAM member/binding resources. Matching roles and resource scopes are recorded as declared authority with Terraform file/line provenance. Unmatched principals in the infrastructure repository are not added to the application graph.

This evidence describes repository-declared IAM intent, not live/effective Google Cloud state. Dynamic HCL principals, group expansion, IAM conditions, role-to-permission expansion, inheritance, and out-of-band cloud changes are not claimed as resolved.

The same option is available on horustrace graph and horustrace aibom. It is intentionally scan-only in the GitHub Action and is not applied to horustrace diff, because a single current infrastructure checkout cannot safely represent two historical application revisions.

ADK demo

horustrace scan examples/google-adk-vulnerable --fail-on none
horustrace scan examples/google-adk-secure --fail-on none

The vulnerable ADK fixture intentionally exercises all five layers. The secure fixture should return zero findings under the current rule catalogue.

Generate SARIF:

horustrace scan . --format sarif --output horustrace.sarif --fail-on none

Fail CI on high/critical findings:

horustrace scan . --fail-on high

Malformed, unreadable, or structurally invalid policy manifests stop the scan with exit code 1 and an error on stderr. This also applies with --fail-on none; that option only disables failure for security findings. No report is written for a failed scan.

Coverage and strict CI

horustrace scan . --strict --format json --output report.json

All report formats include file counts and coverage diagnostics. JSON exposes a coverage object; SARIF exposes coverage in run properties and diagnostics as tool execution notifications. Console output separates coverage from findings by layer. --strict returns exit code 1 for detected incomplete analysis, regardless of --fail-on. Unlike a fatal manifest error, incomplete analysis still writes the report so CI can retain the diagnostics. Security threshold failures return exit code 2; incomplete analysis takes precedence in strict mode.

Diagnostics use stable ARG-COV-* identifiers and currently cover read/parse failures, unresolved Python tool/MCP references, unresolved delegation, dynamic agent configuration sequences or expanded keyword arguments, unresolved external helper semantics, dynamic MCP endpoints/tool filters, unknown MCP authentication state, and scans with no supported security targets. Files in default ignored directories, and subtrees containing an .horustrace-ignore marker, are excluded from file counts. Other unsupported file types are counted as skipped. A scanned file was read and parsed; that count does not mean its entire application behavior was understood.

No detected coverage gaps is not proof of complete analysis. Runtime-generated behavior, arbitrary function semantics, cloud authorization, and control effectiveness remain outside these diagnostics. A clean report means no supported rules triggered.

Fingerprints, baselines and suppressions

Every finding has an arg-v1: fingerprint based on its rule, agent, repository-relative path, and evidence. Line numbers and checkout roots are excluded, so fingerprints survive routine source movement and different CI workspaces. A material evidence or scope change produces a new fingerprint.

Create an initial baseline of current findings:

horustrace baseline . \
  --output .horustrace.suppressions.yaml \
  --reason "Initial adoption backlog SEC-42" \
  --expires 2026-12-31

Baseline creation scans without applying existing suppressions. It requires a reason and a non-past expiry and refuses to replace an existing file unless --force is passed. It also refuses to write when coverage diagnostics show incomplete analysis. Review the generated entries before committing them; a baseline records temporary risk acceptance rather than making the findings safe.

Suppression files use this schema:

version: 1
suppressions:
  - id: accepted-shell-migration
    reason: Temporary migration path owned by SEC-42
    expires: 2026-12-31
    fingerprint: arg-v1:0123456789abcdef01234567
    rule_id: AGT020

A fingerprint is the narrowest scope. A rule suppression without a fingerprint must also specify agent or a repository-relative path glob. IDs, reasons, and expiry dates are mandatory; unknown fields and duplicate IDs or YAML keys fail closed. IDs use letters, digits, dots, underscores, and dashes; reasons are single-line; path scopes cannot be absolute or escape the scan root. Expired entries never hide findings. Stale, matched, and expired entries remain in console, JSON, and SARIF audit output. --strict also fails when an exception has expired. Use --suppressions path/to/file.yaml to select a non-default file.

Reviewed benchmark

horustrace benchmark benchmarks/cases.yaml

The reviewed corpus declares the exact RULE@agent findings expected for each case. Unexpected findings are measured as false positives and missing findings as false negatives. The v0.3 corpus contains 26 reviewed scenarios across secure, execution, delegation, MCP, identity, data/network, attack-path and dynamic/unresolved analysis. One case intentionally expects incomplete analysis and an exact coverage diagnostic; all other cases fail on incomplete coverage. The command exits nonzero on any drift and supports --format json for CI artifacts. See benchmarks/README.md.

Evidence and control semantics

Findings retain their rule IDs and severity thresholds and now include:

  • assessment: static_configuration, policy_violation, heuristic_risk, or potential_risk.
  • provenance: facts with a subject, origin, and source location. observed means a supported static configuration was discovered; declared means a manifest assertion; inferred means a heuristic or derived relationship.
  • limitations: uncertainty about runtime authority, controls, and exploitability.

Configuration findings include local evidence; aggregate capability/data/path findings include agent context, which is not a formal data-flow trace. A manifest policy violation may involve declared or inferred capabilities; it does not establish runtime authority. Function capabilities are heuristic, while recognized built-in capabilities follow the scanner's supported static semantics.

control_observations in JSON and SARIF distinguish approval configuration, callback hooks, plugin-name inference, sandbox configuration, and possible network destinations. For supported ADK and MCP configuration, they also record static evidence of sandbox timeout/network/filesystem limits, Bash allowlist plus blocklist policies, MCP tool allowlists, and whether every discovered egress destination fits a declared allowlist. Their runtime effectiveness is always not_verified. Callback or plugin presence can satisfy a missing-hook rule, but does not prove that arbitrary callback/plugin code authorizes actions safely. Approval callbacks alone do not establish an approval requirement. Mixed hosted-MCP approval policies are treated as unknown rather than blanket approval.

Attack paths are labeled potential risks with basis: capability_cooccurrence and exploitability: not_verified. Their severity reflects potential impact, not proven exploitability. A literal URL inside a function establishes a possible destination, not an egress allowlist; such functions now trigger the missing-restriction rule. No runtime enforcement is inferred from those literals.

Manifest schema

Manifests support schema version 1. Omitting version retains the legacy v1 behavior. Unknown fields, unsupported versions, duplicate YAML keys, invalid nested types, cyclic YAML aliases, and negative capability limits are rejected. Approval, guardrail, authentication, and restriction fields require actual booleans; capability/scope fields accept strings or lists of strings. Policy errors identify the field and source line/column without printing its value. Existing documented field aliases remain supported. The schema definitions live in manifest_schema.py.

ADK-specific rule highlights

  • ADK001 — privileged ADK agent lacks a detected tool-control callback/plugin/confirmation boundary.
  • ADK002 — unsafe local code executor.
  • ADK003 — LocalEnvironment exposes local shell/file I/O.
  • ADK004 — bash execution without a detected restrictive BashToolPolicy.
  • ADK012 — sandboxed code execution lacks an explicit timeout, network, or filesystem limit.
  • ADK005 — computer-use capability lacks an explicit action boundary.
  • ADK006 — BigQuery write capability is not statically blocked.
  • ADK007 — broad generated/API toolset without a tool filter.
  • ADK008 — delegated AgentTool disables inherited plugins.
  • ADK009 — remote A2A agent card uses plaintext HTTP.
  • ADK010 — remote A2A agent has no detected authentication.
  • ADK011 — privileged agent is exposed over A2A without a detected safety control.

These run in addition to the framework-neutral AGT/CAP/IDN/DATA/NET/PATH rules.

Framework-neutral security manifest

The manifest declares business intent and runtime context that static source parsing cannot prove:

version: 1
agents:
  - name: invoice-agent

    inputs:
      - name: supplier-portal
        kind: web
        trust: untrusted

    data:
      - name: invoices
        classification: confidential
        selector: /finance/invoices/**

    identities:
      - name: invoice-agent-sa
        provider: gcp
        roles: [roles/storage.objectViewer]
        resource_scope: projects/acme/buckets/invoices
        credential_source: workload_identity

    network:
      - target: https://erp.example.com/**
        restricted: true

    policy:
      required: [data.read, external.write, network.external]
      denied_capabilities: [process.execute, destructive.write]
      allowed_resources: [/finance/invoices/**]
      allowed_destinations: [https://erp.example.com/**]
      require_approval_for: [external.write]
      max_privileged_capabilities: 1

This enables least-privilege comparison between required and effective capabilities and lets Layers 4–5 reason about data and network paths.

Change-aware Git analysis

Compare two committed Git revisions without checking out or executing target code:

horustrace diff origin/main..HEAD

The diff reports:

  • newly introduced and resolved findings using stable arg-v1 fingerprints;
  • existing findings whose security semantics changed, including severity escalations;
  • added, removed and semantically changed Agent Dependency Graph nodes;
  • added and removed authority edges such as invocation, delegation, identity, data and network relationships;
  • semantic effective-authority expansions, including added capabilities, IAM roles or permissions, OAuth scopes, identities, resources or destinations, weakened approval controls, and widened MCP tool scope;
  • Authority Contract deltas: base/head violation counts, newly introduced or resolved policy violations, and newly introduced unresolved contract assessments.

Use it as a PR gate:

horustrace diff origin/main..HEAD --strict --fail-on high

To gate specifically on new Authority Contract violations without requiring historical policy debt to be cleared first:

horustrace diff origin/main..HEAD \
  --fail-on none \
  --fail-on-policy-violation

The policy gate compares stable relationship + clause + reason identities between the base and head revisions. Historical unchanged violations do not fail the gate. Resolved violations are reported, and unresolved-only assessments remain visible but non-failing.

For a GitHub-friendly security summary, render Markdown:

horustrace diff origin/main..HEAD \
  --format markdown \
  --fail-on high \
  --output horustrace-diff.md
cat horustrace-diff.md >> "$GITHUB_STEP_SUMMARY"

Change analysis classifies both findings and authority changes by source context: runtime, cli, application-support, test, example, tutorial, notebook, template-generated, or unknown. Markdown output presents runtime/unknown changes separately from non-runtime test, example, tutorial, CLI and support changes so a PR does not make test harness authority look like deployed agent authority.

Exit code 2 is returned for a newly introduced finding at or above the configured severity threshold, an existing finding that worsened to that threshold, or—when --fail-on-policy-violation is enabled—a newly introduced Authority Contract violation. Historical unchanged findings and historical unchanged policy violations do not fail the diff gate. Unresolved contract assessments do not become violations. Source-context grouping does not weaken either gate. Exit code 1 is reserved for analysis/configuration errors and, with --strict, incomplete analysis on either revision.

Diff analysis resolves each revision to an immutable commit and materializes regular files from git archive into isolated temporary directories. It does not import target modules or launch agents/MCP servers. Non-regular archive entries are skipped and make strict analysis incomplete. Default suppression files are intentionally not applied during diff analysis so existing risk acceptances cannot conceal a newly introduced security delta. Repository scanner configuration is evaluated independently for each revision.

In shallow CI checkouts, fetch the comparison revision before running the command, for example git fetch origin main.

GitHub Action

Full repository scan

The default Action mode remains a normal scan:

- uses: psandhir/horustrace@v0.5.0
  with:
    path: .
    fail-on: high
    strict: "true"
    suppressions: .horustrace.suppressions.yaml

Pull-request security delta

Use mode: diff to gate only security changes introduced by a pull request:

name: HorusTrace PR Security

on:
  pull_request:

permissions:
  contents: read

jobs:
  horustrace:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
      - uses: psandhir/horustrace@v0.5.0
        with:
          mode: diff
          fail-on: high
          strict: "true"

Diff mode reads the immutable pull_request.base.sha and pull_request.head.sha values from the GitHub event payload. A shallow checkout is sufficient: HorusTrace checks whether those commits are already present and fetches only the missing immutable revisions. Fork pull requests have a narrow refs/pull/<number>/head fallback.

The Action does not compare against GitHub's synthetic pull-request merge commit and does not require a moving base-branch name. It writes the context-aware Markdown security delta to the job log and, by default, to the GitHub Step Summary. The same --fail-on and --strict exit semantics used by horustrace diff determine the Action result.

In v0.6+, diff mode also supports an opt-in Authority Contract gate:

- uses: psandhir/horustrace@v0.6.0
  with:
    mode: diff
    fail-on: none
    fail-on-policy-violation: "true"
    strict: "true"

The workflow must check out the target repository before invoking HorusTrace. The Action installs HorusTrace from its own Action revision and statically materializes the target commits; it does not import target modules or launch target agents/MCP servers.

For non-pull_request events, provide both immutable revisions explicitly:

- uses: psandhir/horustrace@v0.5.0
  with:
    mode: diff
    base-sha: 0123456789abcdef0123456789abcdef01234567
    head-sha: 89abcdef0123456789abcdef0123456789abcdef
    fail-on: high

Branch names and tags are deliberately not accepted by these Action override inputs. The Action exposes base-sha, head-sha, and report-path outputs for downstream steps. Set github-summary: "false" if a workflow does not want the Markdown summary. Explicit suppression files are scan-only; diff mode fails rather than pretending a suppression file affects change analysis.

Design principles

  1. Do not execute the target. Static analysis must be safe on untrusted repositories.
  2. Separate observation from policy. Adapters discover facts; policy adds business/security intent.
  3. Analyse effective authority. Direct and delegated tool combinations matter more than isolated calls.
  4. Connect identity, data and egress. Agent risk is an end-to-end property.
  5. Explain the path. Findings include nodes forming the attack chain.
  6. Prefer deterministic CI findings. Semantic/LLM analysis can be additive later.

Scope boundary

The Google ADK adapter is intended to be comprehensive for security-relevant static constructs in current Python ADK 2.x and native Agent Config YAML. It is not a claim that arbitrary third-party tool implementations, dynamically generated Python, runtime cloud authorization, or separate Java/Go/JavaScript/Kotlin ADK SDK syntax is fully analysed. Those require dedicated adapters or runtime/cloud-control-plane enrichment.

HorusTrace is not a runtime firewall, formal taint verifier, malware scanner or proof that a prompt injection is exploitable. It does not execute the application or call cloud control planes during a normal scan.

Project roadmap

See ROADMAP.md for planned live GCP authority resolution, change-aware analysis, reachability enrichment, and framework expansion.

Support

See SUPPORT.md.

Security

See SECURITY.md.

Contributing

See CONTRIBUTING.md.

License

Apache-2.0. See LICENSE.

Repository scanner configuration

Use .horustrace.yaml to tune scanner policy separately from the security intent manifest and temporary suppressions:

version: 1
scanner:
  strict: true
rules:
  ADK007: {severity: high}
  AGT022: {enabled: false}

Use horustrace scan . --config path/to/config.yaml to select a file explicitly. Disabled rules are reported separately from suppressions; severity overrides affect reporting and failure thresholds but not rule metadata or finding fingerprints.

v0.3 release notes

v0.3 (released as HorusTrace) moved the project from primarily file-level ADK parsing toward repository-level security reachability analysis. It adds cross-file tool and helper resolution, conservative factory and collection resolution, static MCP constant resolution, improved ADK execution/control semantics, stronger identity and OAuth linkage, and lower-noise network and capability inference. Coverage gaps remain explicit rather than being treated as safe. See docs/releases/v0.3.0.md for the release summary.

Release files for horustrace 0.6.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for horustrace 0.6.0
File Size Uploaded
horustrace-0.6.0.tar.gz 269.8 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for horustrace 0.6.0
File Interpreter ABI Platform
horustrace-0.6.0-py3-none-any.whl Python 3 none any Details

Total release size: 480.9 kB

Release files / horustrace-0.6.0.tar.gz

Download URL horustrace-0.6.0.tar.gz
Size 269.8 kB
Tags Source
SHA-256 checksum
How to use checksums
9e32b12b72edcfe24d1df1a479e3dd9c4f7847947636a6759f39e39dc46337f5
BLAKE2b-256 checksum
How to use checksums
0b696d5c7852a71804a08320c272fe24412d85008729a49b2f3b57634e07b7d2
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 24, 2026.

Transparency log

Release files / horustrace-0.6.0-py3-none-any.whl

Download URL horustrace-0.6.0-py3-none-any.whl
Size 211.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
50cce8c60368cbca1b088205e42e764fb4aed444c9bcdcf92181429b2bc30eef
BLAKE2b-256 checksum
How to use checksums
535eca08703531c175721c8606c75f5196280ca33bd3c1f80756cfd114e31de6
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 24, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.6.0 This release

2 release files

0.5.0

2 release files

0.4.1

2 release files

0.4.0

2 release 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