From 66d0eba08ccf3700640201c2efd0f4f367b46547 Mon Sep 17 00:00:00 2001 From: Harihara04sudhan Date: Tue, 26 May 2026 17:49:55 +0530 Subject: [PATCH] Add armoriq marketplace (ArmorClaude security plugin) ArmorIQ ships intent-based security enforcement for Claude Code at github.com/armoriq/armorClaude. The marketplace is at the repo root (.claude-plugin/marketplace.json on the main branch) and currently publishes one plugin: armorclaude. cam plugin marketplace install armoriq cam plugin install armorclaude Brief: armorclaude hooks PreToolUse / PostToolUse / SessionStart / UserPromptSubmit, registers the LLM's plan via MCP before any tool fires, mints a signed intent JWT, and blocks tool calls that drift from the registered plan. Policies are managed in natural language via the policy_update MCP tool. Optional CSRG cryptographic proofs. Central audit visible at platform.armoriq.ai. The same enforcement model also ships for OpenAI Codex (armorcodex) and GitHub Copilot CLI (armorcopilot) under their own repos. Adding just the Claude marketplace here for now since this list is curated for Claude Code plugins. --- code_assistant_manager/plugin_repos.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/code_assistant_manager/plugin_repos.json b/code_assistant_manager/plugin_repos.json index 5631fec..bbe85fe 100644 --- a/code_assistant_manager/plugin_repos.json +++ b/code_assistant_manager/plugin_repos.json @@ -1,4 +1,13 @@ { + "armoriq": { + "name": "armoriq", + "description": "ArmorIQ intent-based security enforcement for Claude Code: declared intent plans, natural-language policy rules, intent-drift blocking, optional CSRG cryptographic proofs, and central audit logging. Same model also ships for OpenAI Codex and GitHub Copilot CLI under the ArmorIQ marketplace.", + "enabled": true, + "type": "marketplace", + "repoOwner": "armoriq", + "repoName": "armorClaude", + "repoBranch": "main" + }, "compounding-engineering": { "name": "compounding-engineering", "description": "A Claude Code plugin for compounding engineering practices",