Loading...
Loading...
Machine identity, action receipts, and trust scoring integrated directly into your development workflow. Never leave your editor.
Browse, register, and manage machine agents from the Activity Bar with real-time trust scores.
Automatic receipt creation on file save, git commit, and terminal command execution.
Inline CodeLens badges showing trust scores and verification status for annotated agents.
Full MAIP dashboard embedded in VS Code with receipt history, delegation chains, and compliance status.
Live connection status, active agent count, and quick-action commands in the status bar.
Agent management, auto-receipts, trust badges, and a full dashboard — all without leaving VS Code.
Install ExtensionFull-featured MAIP extension with agent sidebar, auto-receipt generation, trust badges, and embedded dashboard.
$ code --install-extension truthlocks.maip-vscodeIntelliJ-platform plugin supporting all JetBrains IDEs with deep VCS integration and project-level receipt management.
$ Install via Settings > Plugins > Marketplace > Search 'MAIP'Lua-native plugin with Telescope integration, floating windows, statusline components, and async receipt generation.
-- lazy.nvim
{
"truthlocks/maip.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-telescope/telescope.nvim",
},
config = function()
require("maip").setup({
auto_receipt = true,
statusline = true,
float_dashboard = true,
})
end,
}CI/CD action for receipt generation on every commit, pull request, and release. Includes PR check annotations and badge generation.
# .github/workflows/maip.yml
name: MAIP Receipts
on: [push, pull_request]
jobs:
receipt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: truthlocks/maip-github-action@v1
with:
api-key: ${{ secrets.MAIP_API_KEY }}
auto-receipt: true
pr-check: trueEvery action receipted. Every agent verified. Every deployment accountable. Right from your editor.