Add armoriq marketplace (ArmorClaude — security plugin)#66
Open
Harihara04sudhan wants to merge 1 commit into
Open
Add armoriq marketplace (ArmorClaude — security plugin)#66Harihara04sudhan wants to merge 1 commit into
Harihara04sudhan wants to merge 1 commit into
Conversation
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds the armoriq marketplace to `plugin_repos.json`. This is the official ArmorIQ marketplace for Claude Code security plugins, with one plugin published today (`armorclaude`).
Install command
```
cam plugin marketplace install armoriq
cam plugin install armorclaude
```
What armorclaude does
Intent-based security enforcement for Claude Code:
Plugin source: https://github.com/armoriq/armorClaude (main branch).
Schema diff
One entry added to `plugin_repos.json`:
```json
"armoriq": {
"name": "armoriq",
"description": "ArmorIQ intent-based security enforcement for Claude Code...",
"enabled": true,
"type": "marketplace",
"repoOwner": "armoriq",
"repoName": "armorClaude",
"repoBranch": "main"
}
```
Verified the marketplace.json at the source: https://github.com/armoriq/armorClaude/blob/main/.claude-plugin/marketplace.json
Note
The same enforcement model also ships for OpenAI Codex (armorcodex) and GitHub Copilot CLI (armorcopilot) under their own repos. Adding only the Claude marketplace here since this list is curated for Claude Code plugins.