Skip to content

Getting Started

Fabrizio Degni edited this page Aug 25, 2026 · 2 revisions

Getting Started

Use the live website

The fastest route is the PALO Stakeholder Onboarding. It starts from your role and objective, recommends a practical next action, identifies the expected artifact, and links to the relevant PALO modules.

Experienced users can browse the Platform Map or open any module directly from paloframework.org.

Run the static website locally

git clone https://github.com/sev7enITA/PALOframework.git
cd PALOframework
python3 -m http.server 8000

Open http://localhost:8000 in a modern browser.

Validate the publication build

The repository uses an allowlisted, deterministic build process.

npm ci
npm run build
npm run validate:dist
npm run build:check

The complete P0 sequence also installs the checksum-verified OPA binary, validates the agentic contracts and reference runtime, builds the allowlisted distribution, checks its exact inventory, and runs browser smoke tests:

npm run p0

Evaluate the PALO-AI developer preview

The current repository requires Node.js 22 or newer and OPA. Use the reference runtime only with synthetic data and non-consequential tools.

npm ci
npm run opa:install
export PALO_OPA_URL=http://127.0.0.1:8181
export PALO_HMAC_KEYS_JSON='{"key-support-2026":"replace-with-a-secret-from-your-secret-manager"}'
npm run palo:mcp

Do not connect the preview to production agents, sensitive data, privileged credentials, or consequential systems. Review the production-readiness route before designing any deployment.

PALO-AI v2.7 includes an executable data-assurance reference path for Action Claim 1.4. It binds current Data Fitness and signed Disclosure Contract digests to the claim, emits disclosure receipts, and invalidates prior allows after relevant assurance signals. These mechanisms remain prototypes and do not make the bundled SQLite/in-process runtime production-ready.

Suggested learning path

  1. Read Governance Routes.
  2. Complete the stakeholder onboarding.
  3. Use the Assessment Path to create a local evidence bundle.
  4. Review the Documentation Library, Platform Map, and release verification record.
  5. For delegated actions, continue to PALO-AI and Agentic Assurance.