Skip to content

Releases: repoforge-dev/authority-layer

v0.1.5 - npm page fix

05 Mar 00:29

Choose a tag to compare

What's changed

  • Fixed npm package page not displaying README (README.md was missing from the package directory)
    • Automated README sync: root README.md is now copied into the package automatically on every publish via prepublishOnly

v0.1.4 - improved package description

05 Mar 00:10

Choose a tag to compare

What's changed

  • Updated npm package description to use high-intent search phrases
    • New description: "Runtime guardrails for AI agents that enforce token budgets, loop limits, and tool rate limits locally."
    • Added examples/openai-agent.ts - full OpenAI SDK integration example with budget cap, loop guard, and throttle
      Full Changelog: v0.1.3...v0.1.4

v0.1.3 - optimized npm keywords

05 Mar 00:07

Choose a tag to compare

What's changed

  • Replaced generic npm keywords with compound search phrases targeting real developer queries
    • New keywords: ai-agents, agent-runtime, runtime-guardrails, llm-guardrails, token-cost-control, execution-limits, agentic-ai, ai-infrastructure, runtime-safety
      Full Changelog: v0.1.2...v0.1.3

v0.1.2 - simulate CLI command + docs restructure

04 Mar 22:41

Choose a tag to compare

What's changed

New feature: npx authority-layer simulate

  • Runs a canned agent loop that intentionally exceeds the budget cap
    • Prints the structured EnforcementHalt object and full tamper-evident event chain
    • Event chain integrity: VERIFIED confirmation on every run
    • CLI dispatcher routes doctor, simulate, and unknown commands with a help message

Documentation restructure

  • README shortened to a clean developer landing page (~110 lines)
    • Full reference docs moved to docs/ folder:
    • docs/concepts.md - philosophy and local-first enforcement model
    • docs/enforcement.md - all three primitives with full detail
    • docs/api.md - complete method-by-method API reference
    • docs/integrity.md - hash-linked chain mechanics and security guarantees
    • New animated terminal demo SVG showing the npm install -> doctor -> enforcement halt flow

Other improvements

  • Problem hook added to README ("Autonomous agents can silently burn thousands of dollars...")
    • Checkmark-style guarantee bullets
    • Credibility signal before License section
      Full Changelog: v0.1.1...v0.1.2

v0.1.1 - Documentation & badge improvements

04 Mar 22:38

Choose a tag to compare

What's changed

  • Comprehensive README rewrite - full API reference, enforcement primitives, audit chain docs
    • Fixed CI workflow - corrected workspace name (authority-layer not @authority-layer/core)
    • Consistent blue badge color scheme (npm version, MIT license)
    • Removed broken downloads badge (too new for shields.io indexing)
    • Fixed repository.url field in package.json (now uses correct git+https:// prefix)
      Full Changelog: v0.1.0...v0.1.1

AuthorityLayer v0.1.0 — Initial SDK Release

04 Mar 02:01

Choose a tag to compare

Initial release of AuthorityLayer.

Hard execution and budget limits for autonomous agents enforced locally.

Features
• Budget guard
• Loop guard
• Tool throttle
• Hash-linked event integrity chain
• authority-layer doctor CLI
• Zero runtime dependencies