← Back to adopters
Adopter quickstart

Rasa proof path

Private-beta path for adopting Imladri with Rasa: initialize the adapter, wrap one risky capability, run the scanner or proof command from the repo, and review the same evidence in Profile.

Certification status

Certified

Certified

Alias-aware wrapper-contract and executable Rasa custom-action surface checks passed for the Python adapter.

2/2 Rasa lanes passed; shared batch proof covers metadata.name, action_aliases, strict preflight, and zero blocked-path body calls.

Runtimepython
Access modePrivate beta
Approved beta starter
cli
imladri init --framework rasa --ci-provider github
Reference dependencies
dependencies
npm install @imladri/sdk
pip install rasa
Minimal wrapper
python
from imladri.adapters import wrap_rasa_tools

guarded_actions = wrap_rasa_tools(
    agent,
    actions,
    strict_tools=["customer.account.update"],
    action_aliases={
        "update_customer_account": "customer.account.update",
        "export_credentials": "credential.export",
    },
)
Terminal proof evidence
terminal evidence
imladri sdk certify --real --target rasa
imladri scan --path . --fail-on new
imladri proof export --format json --output rasa-proof.json