← All plugins
codeguard-security
v1.4.0Security code review skill based on Project CodeGuard's comprehensive security rules. Helps AI coding agents write secure code and prevent common vulnerabilities.
CodexClaude Code1 skill
by Project CodeGuardCC-BY-4.0302updated 2 days ago
Source
git clone https://github.com/cosai-oasis/project-codeguardClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
codeguard-security/
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json└── skills/codeguard/SKILL.md
Skills1
codeguardskills/codeguard/SKILL.md
A CodeGuard security skill that helps AI coding agents write secure code and prevent common vulnerabilities. Use this skill when writing, reviewing, or modifying code to ensure secure-by-default practices are followed.
Manifests2
.codex-plugin/plugin.json
{
"name": "codeguard-security",
"description": "Security code review skill based on Project CodeGuard's comprehensive security rules. Helps AI coding agents write secure code and prevent common vulnerabilities.",
"version": "1.4.0",
"skills": "./skills/",
"author": {
"name": "Project CodeGuard",
"url": "https://project-codeguard.org"
},
"homepage": "https://github.com/cosai-oasis/project-codeguard",
"repository": "https://github.com/cosai-oasis/project-codeguard.git",
"license": "CC-BY-4.0",
"keywords": [
"security",
"secure-coding",
"vulnerability-prevention",
"code-review",
"appsec"
],
"interface": {
"displayName": "CodeGuard Security",
"shortDescription": "Secure-by-default guidance for AI coding agents",
"developerName": "Project CodeGuard",
"websiteURL": "https://project-codeguard.org"
}
}.claude-plugin/plugin.json
{
"name": "codeguard-security",
"description": "Security code review skill based on Project CodeGuard's comprehensive security rules. Helps AI coding agents write secure code and prevent common vulnerabilities.",
"version": "1.4.0",
"skills": [
"./skills/",
"./sources/skills/"
],
"author": {
"name": "Project CodeGuard",
"url": "https://project-codeguard.org"
},
"homepage": "https://github.com/cosai-oasis/project-codeguard",
"repository": "https://github.com/cosai-oasis/project-codeguard.git",
"keywords": [
"security",
"secure-coding",
"vulnerability-prevention",
"code-review",
"appsec"
]
}