Agentic Praxis Grimoire
What is Agentic Praxis Grimoire?
Agentic Praxis Grimoire (APGR) is a provider-neutral toolkit and skill corpus for bounded agent engineering. It provides coding-agent platforms, LLM harnesses, and agentic workflows with deterministic primitives for selecting task-scoped guidance, collecting immutable evidence, capturing curated environments, inspecting repository structures, and measuring context footprints without dictating an orchestration workflow.
APGR includes:
- 39 canonical agent skills across 14 stable and 25 provisional leaves;
- Context-footprint accounting for measuring, comparing, and projecting context budgets across descriptions, bodies, and support material;
- Reusable Go packages for schemas, canonical reports, skill bundles, strict environment snapshots, structural hotspot analysis, and footprint accounting;
- The
apgrcommand-line interface for direct terminal and script use; - Thin Python and npm distribution adapters providing binary-backed compatibility without rewriting portable logic; and
- Deterministic verification tooling ensuring reproducible outputs and uncompromising safety boundaries.
Who is APGR for?
- AI Agent System Engineers: Embed deterministic skills and context accounting directly into agent runtimes and harnesses.
- Coding Agent Platform Teams: Supply bounded, task-specific instructions to coding models rather than dumping exhaustive, token-heavy global prompts.
- Tool and Harness Authors: Leverage strict, allowlisted environment snapshots and structural hotspot analysis to prepare clean agent workspaces.
- Auditors and Evaluators: Verify exact, canonical operational records, evidence bundles, and cryptographic hashes.
What APGR is not
APGR is an engineering toolkit, not an autonomous agent or orchestrator. It does not:
- Select models, prompt templates, or inference providers;
- Make autonomous decisions about retries, task loops, or self-healing;
- Act as a background daemon or cloud service; or
- Execute arbitrary code or mutate system configuration outside caller-specified targets.
Orchestrators such as Joint Agentic Command Aegis (JACA) or custom agent frameworks invoke APGR as an in-process library or CLI subprocess.
Core capabilities
- Task-scoped skill selection: Resolve only the guidance relevant to the immediate task rather than injecting global instruction sets into every session.
- Context-footprint accounting: Measure exact byte and UTF-8 character sizes
of prompts, skill bodies, and support documents with versioned
apg.context-footprint/v1schemas; compare compatible records; and create source-bound projections with explicit fidelity and omission disclosure. - Deterministic evidence: Produce canonical Show, Diff, and Operational records with stable domain-separated cryptographic digests.
- Strict environment snapshots: Capture allowlisted, non-secret environment variables and resolve isolated or overlay execution environments with recorded provenance.
- Structural hotspot analysis: Rank complex or structurally critical files before bounded refactoring while clearly separating deep metrics, structural metrics, and unavailable capabilities.
- Portable Go core: Portable logic is authored in standalone, dependency-free Go packages; Python and npm packages serve as thin, verified distribution front doors.
Skill corpus and maturity
APG has 39 canonical leaves: 14 stable and 25 provisional. Canonical Markdown
under skills/ is the maintained body authority; embedded metadata and package
resources are verified projections of it:
- Corpus topology: 39 canonical / 39 catalog / 39 projections / 39 discoverable
- Maturity: 14 stable / 25 provisional
Quick start
This documentation covers 0.9.0. The previous published release baseline is v0.8.1 on Git, GitHub Releases, PyPI, npm, and the Go module proxy. Once this version is published, packages are available from standard registries; prior to publication, capabilities can be exercised directly from an APGR Git source checkout.
Source checkout first
Run these commands from the root of your APGR source checkout:
go run ./cmd/apgr --version
go run ./cmd/apgr skills list
Supported platforms and developer qualification gate
Prebuilt distribution runtime targets include:
- macOS Apple Silicon:
darwin/arm64 - Linux x86_64:
linux/amd64(linux/x64) - Linux ARM64:
linux/arm64
Developer qualification gate status: Darwin arm64 is fully qualified (APG114 / Exit 00159).
The Linux developer qualification gate is currently pending: the policy suite is
pending runner qualification, and unit, integration, and combined (unit-integration)
suites are blocked by whole-inventory preflight binding Darwin arm64 Nix store digests.
Prerequisites and dispatch boundaries
- Core runtime commands:
cmd/apgrand the thin distribution wrappers execute the portable Go command families (skills,footprint,env,analyze hotspots,report,response). - Repository test runner: Running
apgr test(including--summary-fileand thepolicymechanical role) is a repository maintenance workflow requiring an APGR Git source checkout and the developer toolchain (Python 3.11+, pytest, coverage, pytest-cov, pytest-xdist, Git 2.40+, Go 1.25+). - Bare packages: Prebuilt native binaries (
cmd/apgr) and bare wheels / npm packages do not carry the test runner or test suites.
First use
The examples below use a small source-checkout runner. Set APGR_BIN to an
installed native Go/npm executable when one is available; otherwise the helper
builds and runs the checkout's Go command. Each input file is absolute and
owner-only (0600) because the CLI treats the records as caller-owned data.
set -eu
apgr() {
if [ -n "${APGR_BIN:-}" ]; then
"$APGR_BIN" "$@"
else
go run ./cmd/apgr "$@"
fi
}
apgr skills list
set -eu
apgr() {
if [ -n "${APGR_BIN:-}" ]; then
"$APGR_BIN" "$@"
else
go run ./cmd/apgr "$@"
fi
}
apgr --repository "$PWD" analyze hotspots --include-path cmd/apgr
The Python frontend uses a different global root option for this command:
apgr --project-root "$PWD" analyze hotspots --include-path cmd/apgr.
The skills and footprint commands below use the same arguments on both frontends.
set -eu
apgr() {
if [ -n "${APGR_BIN:-}" ]; then
"$APGR_BIN" "$@"
else
go run ./cmd/apgr "$@"
fi
}
tmp_root="${TMPDIR:-/tmp}"
tmp_root="${tmp_root%/}"
workdir="$(mktemp -d "$tmp_root/apgr-readme.XXXXXX")"
workdir="$(cd "$workdir" && pwd -P)"
trap 'rm -rf "$workdir"' EXIT
request="$workdir/request.json"
treatment_request="$workdir/treatment-request.json"
control="$workdir/control.json"
treatment="$workdir/treatment.json"
comparison="$workdir/comparison.json"
projection="$workdir/projection.json"
python3 - "$request" "$treatment_request" <<'PY'
import json
import pathlib
import sys
base = {
"schema_version": "apg.context-footprint/v1",
"observation": {
"harness": "cli",
"method": "direct",
"provider": "local",
"quality": "verified",
"repetitions": 1,
"study_design": "single_run",
"tokenizer": "none",
"variant": "first-use",
"workload": "skill-body",
"availability": "available",
"basis": "direct_measurement",
},
"components": [{
"kind": "selected_body",
"name": "implementing-with-test-discipline",
"unit": "bytes",
"text": "Write a failing test before writing production code.\n",
}],
"sensitivity": "public",
"retention": "ephemeral",
}
treatment = json.loads(json.dumps(base))
treatment["components"][0]["text"] += "Keep the test focused.\n"
for path, value in zip(sys.argv[1:], (base, treatment)):
pathlib.Path(path).write_text(json.dumps(value) + "\n", encoding="utf-8")
PY
chmod 600 "$request" "$treatment_request"
apgr footprint measure --input "$request" > "$control"
apgr footprint measure --input "$treatment_request" > "$treatment"
chmod 600 "$control" "$treatment"
apgr footprint compare --control "$control" --treatment "$treatment" > "$comparison"
apgr footprint project --source "$treatment" --fidelity exact > "$projection"
chmod 600 "$comparison" "$projection"
python3 - "$control" "$comparison" "$projection" <<'PY'
import json
import pathlib
import sys
control, comparison, projection = (json.loads(pathlib.Path(p).read_text()) for p in sys.argv[1:])
assert control["schema_version"] == "apg.context-footprint/v1"
assert comparison["schema_version"] == "apg.context-comparison/v1"
assert comparison["delta"] > 0
assert projection["schema_version"] == "apg.context-projection/v1"
assert projection["fidelity"] == "exact"
assert projection["omitted_fields"] == []
print("footprint measure, compare, and project examples passed")
PY
Context-footprint walkthrough
The footprint subsystem enables principled, reproducible accounting of agent
context budgets. It treats context as a scarce, measurable resource with distinct
components and explicitly tracks unavailable metrics rather than reporting
misleading zeroes.
Key principles of context accounting:
- Source-bound observations, not capacity forecasts: Footprints record explicit measurements and source-bound projections, not predictive capacity models or exhaustion guarantees.
- Unavailable is not zero (
unavailable != 0): Bytes and UTF-8 characters are measured locally. Provider-specific token estimates remain explicitly marked as unavailable with stated reasons and nil values unless an observed value is supplied by the caller. An available zero is a measured fact; an unavailable metric is an unmeasured boundary. - Component separation (overlap is not additive): Selected descriptions, selected bodies, support material, repository references, and provider prompt overhead are measured as distinct components. Because prompt templates and harnesses overlap in structure, component metrics cannot be naïvely summed across boundaries without accounting.
1. Measure (apgr footprint measure)
Measure converts a strict measurement request into a validated apg.context-footprint/v1
canonical record with exact byte and character metrics. It accepts --stdin or --input FILE
(requiring an absolute, clean, owner-only 0600 file):
The marked first-use fence above is the executable owner for this walkthrough. It creates complete disposable fixtures, runs all three footprint actions, and asserts the schema, positive comparison delta, exact projection fidelity, and empty omission disclosure.
2. Compare (apgr footprint compare)
Compare computes treatment-minus-control deltas between two context footprint
records using the apg.context-comparison/v1 schema. Both records must be
clean, owner-only 0600 files with matching observation dimensions:
The same executable fence runs footprint compare with absolute 0600
records and checks the canonical comparison output.
Comparison outputs highlight:
- Net byte and character changes per component;
- Added or removed components; and
- Deterministic comparison digests (
cmp-sha256:...).
3. Project (apgr footprint project)
Project creates a bounded, source-bound canonical projection retaining source
identity, fidelity level, and explicit omission disclosure using the
apg.context-projection/v1 schema:
The same executable fence runs footprint project with an exact fidelity
request and checks the source-bound projection fields. A projection records
fidelity and omitted fields; it is not a capacity estimate or an exhaustion
control.
Projection discloses structural fidelity and omitted fields; it creates a deterministic, source-bound representation rather than a capacity estimate.
Go library integration
APGR is designed to be imported directly into Go applications and orchestration adapters.
package main
import (
"context"
"fmt"
"log"
"github.com/Knowledge-Forge-AI/agentic-praxis-grimoire/footprint"
"github.com/Knowledge-Forge-AI/agentic-praxis-grimoire/skills"
)
func main() {
ctx := context.Background()
// Deterministically resolve a curated skill bundle
req := skills.BundleRequest{
SchemaVersion: skills.BundleRequestSchemaV1,
ExplicitSkillIDs: []string{"implementing-with-test-discipline"},
Consumer: skills.Consumer{
Kind: skills.ConsumerGo,
MaterializationForm: skills.MaterializationInMemory,
ProviderConstraints: []string{"in_process_library"},
},
}
result, err := skills.Resolve(ctx, req)
if err != nil {
log.Fatalf("failed to resolve skills: %v", err)
}
// Calculate its deterministic context footprint record
record, err := skills.Footprint(req, result)
if err != nil {
log.Fatalf("failed to calculate footprint: %v", err)
}
fmt.Printf("Resolved %d skills; footprint components: %d\n",
len(result.SelectedSkillIDs), len(record.Components))
// Create a source-bound projection with fidelity and omission disclosure
proj, err := footprint.Project(ctx, footprint.ProjectRequest{
Source: record,
Fidelity: footprint.FidelityLosslessStructural,
})
if err != nil {
log.Fatalf("failed to project footprint: %v", err)
}
fmt.Printf("Projected fidelity: %s; canonical digest: %s\n",
proj.Fidelity, proj.CanonicalSourceDigest)
}
See the Go library reference for full package documentation.
JACA XO compatibility pattern
Downstream Go consumers (such as the Joint Agentic Command Aegis Executive Orchestrator,
JACA XO) consume skills, footprint, and supporting schema behind a caller-owned
internal adapter, as modeled in testing/fixtures/xo_consumer/:
- Caller DTO containment: External callers define their own data transfer objects
(
CallerSkillEvidence,CallerFootprintEvidence,CallerComponentEvidence,CallerSourceReference,CallerComparisonDelta,CallerProjectionEvidence). The internal adapter translates between APGR domain types and caller DTOs, ensuring zero APGR types leak into caller method signatures or public struct fields. - Pure in-memory execution: Execution requires no subprocess invocation (
os/exec) or network calls. - Context propagation & error sentinels: Cancelled contexts return
ctx.Err()or wrapfootprint.ErrContextCancelled, while domain errors retain documented sentinels (footprint.ErrUnitMismatch,footprint.ErrConsequenceBearingOmissionRefused,skills.ErrBudgetExceeded). - Dual-lane verification: Qualified across Lane A (published v0.8.1 baseline via Go proxy) and Lane B (exact development candidate via local replace).
[!IMPORTANT] Separation of Authority:
- APGR-local conformance != JACA registration: APGR-local qualification is completed on Darwin arm64 under APG114, but runner registration in JACA CI (
tools/ci/evidence.go) is consumer-owned and pending.- XO fixture != production adapter or security proof: The caller-owned adapter fixture in
testing/fixtures/xo_consumer/qualifies APGR Go package compatibility, but is not JACA's production adapter (which belongs inxo/src/main/go), and passive DTOs are not a workflow security proof.
v0.9 CI qualification summary interface
For CI pipelines qualifying APGR from a Git source checkout with the developer toolchain,
apgr test <suite> --summary-file <path> emits strict 6-field machine-readable JSON:
{
"version": 1,
"subproject": "apg",
"suite": "policy",
"test_status": "pass",
"gate_status": "pass",
"source_commit": "1111111111111111111111111111111111111111"
}
Suites include policy (mechanical repository and corpus checks), unit, integration,
and unit-integration (combined). Note that apgr test requires an APGR Git checkout
and developer toolchain; bare wheel/npm native packages do not carry the full runner.
combined is the receipt suite name, and apg-dev-gate is a JACA role alias;
pass unit-integration to the CLI. The synthetic commit above illustrates the
shape: real receipts bind entry HEAD, with a separate inventory needed for
uncommitted tested bytes. See the CI handoff
for pinned test, Node, and TypeScript prerequisites. An installed Python frontend
can dispatch through that checkout; the native/npm binary cannot run test.
Upgrade guidance and release status
Upgrading from v0.8.1 to 0.9.0
This documentation covers 0.9.0. The v0.9 series introduces the CI-first qualification interface (--summary-file, policy role)
and qualified Go library consumption patterns for XO adapters.
- Production Consumers: Once this version is published, upgrade to 0.9.0 across supported package registries. Prior to publication, production consumers remain on the published, frozen v0.8.1 release.
- Go Consumers: All public Go APIs in
schema,report,skills,envsnap,hotspot, andfootprintare fully backward-compatible with v0.8.1. Once this version is published, requiregithub.com/Knowledge-Forge-AI/agentic-praxis-grimoire v0.9.0. Prior to publication, candidate features can be evaluated using a localreplacedirective pointing to an APGR source checkout. - CLI / Python / npm Users: Once this version is published, install or upgrade via
pip install agentic-praxis-grimoire==0.9.0ornpm install -g @knowledge-forge-ai/apgr@0.9.0. Prior to publication, use published v0.8.1 packages (pip install agentic-praxis-grimoire==0.8.1,npm install -g @knowledge-forge-ai/apgr@0.8.1) or run from a Git source checkout.
Preserved predecessor: v0.8.1
The v0.8.1 release is the frozen predecessor across Git, GitHub Releases, PyPI, npm, and the Go module proxy:
- Public Git commit:
565f924aa8fda9551da8732cceb5708db069e127 - Public Git tree:
1ec7a01ca252a63cc869caf4e5bbe152fb6d2868 - Annotated tag:
b6b3e996536ac89e1a58912caf3b3cb9c251dbd7
Historical v0.8.0 is preserved as immutable predecessor state. For technical details,
see the v0.8.1 release notes and
v0.9.0 release notes.
Security and trust boundaries
APGR is engineered with strict operational boundaries:
- No Shell Execution: Subprocess adapters execute binaries directly using
exact argument vectors (
execve), never passing strings through a shell. - Secret-Rejecting Environment Snapshots: Environment profiles enforce strict allowlists. Secret-like variables (containing tokens, keys, passwords, or credentials) are rejected fail-closed.
- Filesystem Isolation: Materialized skill bundles and scratch operations are confined to caller-owned, disposable directories. APGR never mutates user-global skill roots or configuration without explicit flags.
- Zero Telemetry / Offline Operation: All local commands operate completely offline with no telemetry, tracking, or unexpected network requests.
- Reproducible Builds: All distribution archives, Go binaries, and package manifests are bit-for-bit reproducible under fixed release epochs.
Documentation index
- Task-Oriented Documentation Index
- CLI Reference
- Go Library Reference
- Skill Context Bundles Guide
- Environment Snapshots Guide
- Hotspot Analysis Guide
- Distribution and Packaging
- APG–JACA Integration Architecture
- JACA CI Integration Handoff
- JACA XO Compatibility Handoff
- Context Footprint & Skill Inventory
- v0.9 Roadmap
- Project Model & Governance
- Provenance Policy
- Status and Exit Records
- Release Notes (v0.9.0)
- Release Notes (v0.8.1)
Contributing and licensing
Read CONTRIBUTING.md before submitting contributions. Contributions require adherence to the project contribution terms in CLA.md.
Agentic Praxis Grimoire is free software licensed under the GNU Affero General Public License v3.0 or later (AGPL-3.0-or-later). Commercial licensing options and enterprise support are available from the Project Steward at Knowledge Forge AI.
Third-party copyright notices and attributions are recorded in NOTICE.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agentic_praxis_grimoire-0.9.0.tar.gz.
File metadata
- Download URL: agentic_praxis_grimoire-0.9.0.tar.gz
- Upload date:
- Size: 414.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17aaa3974df2142d322409d717635549395b74203c3d39d0ac852ecbe66f4a57
|
|
| MD5 |
6b91bb9a8cb2734b3d0038aca249c2f0
|
|
| BLAKE2b-256 |
1e9a8ab03892dc65bff6f6563dd6f677ebd616cf80025579668724693ede4362
|
Provenance
The following attestation bundles were made for agentic_praxis_grimoire-0.9.0.tar.gz:
Publisher:
release.yml on Knowledge-Forge-AI/agentic-praxis-grimoire
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agentic_praxis_grimoire-0.9.0.tar.gz -
Subject digest:
17aaa3974df2142d322409d717635549395b74203c3d39d0ac852ecbe66f4a57 - Sigstore transparency entry: 2761636623
- Sigstore integration time:
-
Permalink:
Knowledge-Forge-AI/agentic-praxis-grimoire@139127f29a03f676bb69169b4efc448f54e48396 -
Branch / Tag:
refs/tags/v0.9.0 - Owner: https://github.com/Knowledge-Forge-AI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@139127f29a03f676bb69169b4efc448f54e48396 -
Trigger Event:
release
-
Statement type:
File details
Details for the file agentic_praxis_grimoire-0.9.0-py3-none-manylinux_2_17_x86_64.whl.
File metadata
- Download URL: agentic_praxis_grimoire-0.9.0-py3-none-manylinux_2_17_x86_64.whl
- Upload date:
- Size: 3.7 MB
- Tags: Python 3, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b724eed107b1a3642cd263b3ab2fa678055060f90681d3a54349f1dc014a6b68
|
|
| MD5 |
23c60167c565a8acdf44c3993d8d1950
|
|
| BLAKE2b-256 |
0da83d6965bca26a8112374fc8710bb2a676a7ddf2ad458f1d5b8368868c31b5
|
Provenance
The following attestation bundles were made for agentic_praxis_grimoire-0.9.0-py3-none-manylinux_2_17_x86_64.whl:
Publisher:
release.yml on Knowledge-Forge-AI/agentic-praxis-grimoire
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agentic_praxis_grimoire-0.9.0-py3-none-manylinux_2_17_x86_64.whl -
Subject digest:
b724eed107b1a3642cd263b3ab2fa678055060f90681d3a54349f1dc014a6b68 - Sigstore transparency entry: 2761636659
- Sigstore integration time:
-
Permalink:
Knowledge-Forge-AI/agentic-praxis-grimoire@139127f29a03f676bb69169b4efc448f54e48396 -
Branch / Tag:
refs/tags/v0.9.0 - Owner: https://github.com/Knowledge-Forge-AI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@139127f29a03f676bb69169b4efc448f54e48396 -
Trigger Event:
release
-
Statement type:
File details
Details for the file agentic_praxis_grimoire-0.9.0-py3-none-manylinux_2_17_aarch64.whl.
File metadata
- Download URL: agentic_praxis_grimoire-0.9.0-py3-none-manylinux_2_17_aarch64.whl
- Upload date:
- Size: 3.5 MB
- Tags: Python 3, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
495945004f3823ae6673f13b23a8cbe06b48a26f6e1f5c6f774272eef78dae96
|
|
| MD5 |
d893268baa92e4483bf473d0b60eb3d6
|
|
| BLAKE2b-256 |
f54a18a772b69ac25fbfe007c4ca55d99ed8f82d7a95f39f393172d586ab520c
|
Provenance
The following attestation bundles were made for agentic_praxis_grimoire-0.9.0-py3-none-manylinux_2_17_aarch64.whl:
Publisher:
release.yml on Knowledge-Forge-AI/agentic-praxis-grimoire
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agentic_praxis_grimoire-0.9.0-py3-none-manylinux_2_17_aarch64.whl -
Subject digest:
495945004f3823ae6673f13b23a8cbe06b48a26f6e1f5c6f774272eef78dae96 - Sigstore transparency entry: 2761636713
- Sigstore integration time:
-
Permalink:
Knowledge-Forge-AI/agentic-praxis-grimoire@139127f29a03f676bb69169b4efc448f54e48396 -
Branch / Tag:
refs/tags/v0.9.0 - Owner: https://github.com/Knowledge-Forge-AI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@139127f29a03f676bb69169b4efc448f54e48396 -
Trigger Event:
release
-
Statement type:
File details
Details for the file agentic_praxis_grimoire-0.9.0-py3-none-macosx_11_0_arm64.whl.
File metadata
- Download URL: agentic_praxis_grimoire-0.9.0-py3-none-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.6 MB
- Tags: Python 3, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1051a03183d0bb7a366d7f1534c8bedb4eed042b1419e53a036b88761f9180f9
|
|
| MD5 |
c1c295b5126efa3ceb6512ab318e27ac
|
|
| BLAKE2b-256 |
d3a7094d8af4a1647b011a6aa04cd2ee90b3804e0f51f9eb1b2b2c9778b68a3a
|
Provenance
The following attestation bundles were made for agentic_praxis_grimoire-0.9.0-py3-none-macosx_11_0_arm64.whl:
Publisher:
release.yml on Knowledge-Forge-AI/agentic-praxis-grimoire
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agentic_praxis_grimoire-0.9.0-py3-none-macosx_11_0_arm64.whl -
Subject digest:
1051a03183d0bb7a366d7f1534c8bedb4eed042b1419e53a036b88761f9180f9 - Sigstore transparency entry: 2761636696
- Sigstore integration time:
-
Permalink:
Knowledge-Forge-AI/agentic-praxis-grimoire@139127f29a03f676bb69169b4efc448f54e48396 -
Branch / Tag:
refs/tags/v0.9.0 - Owner: https://github.com/Knowledge-Forge-AI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@139127f29a03f676bb69169b4efc448f54e48396 -
Trigger Event:
release
-
Statement type: