Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
"name": "opentaint",
"description": "OpenTaint application-security skills for AI coding agents",
"owner": {
"name": "Seqra",
"url": "https://opentaint.org/"
},
"plugins": [
{
"name": "opentaint",
"source": "./",
"description": "Taint-analysis based application-security skills: build a project model, scan it, author rules and approximations, triage findings, and reproduce true positives",
"version": "0.3.0",
"author": {
"name": "Seqra"
},
"license": "Apache-2.0",
"category": "security",
"homepage": "https://opentaint.org/",
"repository": "https://github.com/seqra/opentaint"
}
]
}
20 changes: 20 additions & 0 deletions .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
"name": "opentaint",
"displayName": "OpenTaint",
"version": "0.3.0",
"description": "Taint-analysis based application-security workflow skills",
"author": {
"name": "Seqra"
},
"homepage": "https://opentaint.org/",
"repository": "https://github.com/seqra/opentaint",
"license": "Apache-2.0",
"keywords": [
"security",
"sast",
"taint-analysis",
"vulnerability-scanning"
],
"skills": "./skills/"
}
38 changes: 38 additions & 0 deletions .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"name": "opentaint",
"version": "0.3.0",
"description": "Taint-analysis based application-security workflow skills",
"author": {
"name": "Seqra"
},
"homepage": "https://opentaint.org/",
"repository": "https://github.com/seqra/opentaint",
"license": "Apache-2.0",
"keywords": [
"security",
"sast",
"taint-analysis",
"vulnerability-scanning"
],
"skills": "./skills/",
"interface": {
"displayName": "OpenTaint",
"shortDescription": "Taint-analysis based application-security workflow skills",
"longDescription": "Taint-analysis based application-security skills: build a project model, scan it, author rules and approximations, triage findings, and reproduce true positives",
"developerName": "Seqra",
"category": "Security",
"capabilities": [
"Read",
"Write"
],
"defaultPrompt": [
"Use the appsec-agent skill to run a deep scan with static triage",
"Use the appsec-agent skill to run a normal scan with static triage",
"Use the appsec-agent skill to run a lite scan with dynamic confirmation"
],
"brandColor": "#CA2121",
"logo": "./logos/opentaint-logo-light.svg",
"logoDark": "./logos/opentaint-logo-dark.svg",
"websiteURL": "https://opentaint.org/"
}
}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ core/**/bin/
# Optional: Allow the .gitignore file itself to be tracked
!.gitignore
!.github

# Agent plugin manifests
!.claude-plugin
!.codex-plugin
Loading