Skip to content

feat(tealtiger): add TealTiger governance memory integration#2770

Closed
nagasatish007 wants to merge 1 commit into
vectorize-io:mainfrom
nagasatish007:feat/tealtiger-governance-memory
Closed

feat(tealtiger): add TealTiger governance memory integration#2770
nagasatish007 wants to merge 1 commit into
vectorize-io:mainfrom
nagasatish007:feat/tealtiger-governance-memory

Conversation

@nagasatish007

Copy link
Copy Markdown

Summary

Adds a TealTiger integration that stores AI agent governance decisions in Hindsight with importance-weighted retention. Critical security events (DENY: PII detected, secrets blocked) persist for compliance; routine approvals naturally decay.

Closes #2284

What it does

  • Stores governance decisions via retain() with importance scores:
    • DENY → 0.90 (months retention)
    • MONITOR → 0.70 (weeks retention)
    • ALLOW → 0.55 (natural decay)
  • Recalls contextually relevant past decisions for the same agent/tool
  • Reflects on governance patterns (denial trends, anomalies)

Design principle

Storage = evidence, NOT authority. A stored ALLOW cannot authorize a future action. The policy engine is deterministic; memory provides context only.

Files

hindsight-integrations/tealtiger/
├── hindsight_tealtiger/
│   ├── __init__.py
│   └── memory.py
├── tests/
│   ├── __init__.py
│   └── test_memory.py
├── README.md
├── pyproject.toml
└── .gitignore

Testing

cd hindsight-integrations/tealtiger
pip install -e ".[dev]"
pytest tests/ -v

15 tests covering store, recall, reflect, importance mapping, tagging, and content formatting.

Related

Importance-weighted storage and contextual recall of AI agent governance
decisions via Hindsight. Critical DENYs persist for compliance; routine
ALLOWs decay naturally.

Closes vectorize-io#2284
@nicoloboschi

Copy link
Copy Markdown
Collaborator

please provide a community integration on your own repo and add open up a pr here to being listed in https://hindsight.vectorize.io/integrations

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Importance-weighted governance decision storage for AI agent compliance

2 participants