Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
775b2d1
docs: add PATT_STANDARD.md — integration standard for future sessions
Stickman230 Mar 13, 2026
ad9a43e
feat: add patt-fetcher Haiku agent for on-demand PATT payload lookup
Stickman230 Mar 13, 2026
75f1458
feat: add P0 injection payload files (SQL, XSS, CMDi, SSTI, XXE, SSRF…
Stickman230 Mar 13, 2026
8461fd3
feat: add P0 system and web payload files (AD, privesc, shells, hash …
Stickman230 Mar 13, 2026
8724f0d
feat: complete PATT integration chunks 4-5 (enrichment, stubs, SKILL.md)
Stickman230 Mar 13, 2026
6b645ca
feat: fill P1 stubs — NoSQL Redis and Cassandra payloads
Stickman230 Mar 14, 2026
d4e79f0
feat: fill P1 stub — SAML Injection payloads
Stickman230 Mar 14, 2026
3c46008
feat: fill P1 stub — CORS Misconfiguration payloads
Stickman230 Mar 14, 2026
8793725
feat: fill P1 stub — Race Condition payloads
Stickman230 Mar 14, 2026
223723f
feat: fill P1 stubs — Deserialization Java and PHP payloads
Stickman230 Mar 14, 2026
793862f
feat: fill P1 stub — Type Juggling payloads
Stickman230 Mar 14, 2026
95d5525
docs: P1 enrichment — add missing PATT techniques to existing cheat s…
Stickman230 Mar 14, 2026
d10799e
feat: fill P1 stub — Prototype Pollution payloads + cheat sheet enric…
Stickman230 Mar 14, 2026
76981ae
feat: fill P2 stubs — AWS, Azure, DNS, Hash Cracking rules, GraphQL i…
Stickman230 Mar 14, 2026
35ed0f9
refactor: optimize P2 payload files for token efficiency
Stickman230 Mar 14, 2026
d5be063
refactor(p0-payloads): token audit — remove post-exploit and placehol…
Stickman230 Mar 14, 2026
55c2f7f
docs(readme): reflect PATT payload integration
Stickman230 Mar 14, 2026
c4634ca
feat(structure): restructure repo into multi-plugin marketplace layout
Stickman230 Mar 14, 2026
633fce6
fix(techstack-identification): wire hooks properly for plugin format
Stickman230 Mar 14, 2026
139714f
docs(readme): rewrite to reflect multi-plugin marketplace structure
Stickman230 Mar 14, 2026
5c40340
Merge pull request #1 from Stickman230/feature/claude-plugin-marketpl…
Stickman230 Mar 14, 2026
701f962
fix(gitignore): track plugin manifests excluded by *.json rule
Stickman230 Mar 14, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
31 changes: 31 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "Transilience Community Security Tools",
"description": "Claude Code plugins for authorized security testing, bug bounty hunting, AI threat testing, and recon",
"plugins": [
{
"name": "pentest",
"path": "plugins/pentest",
"description": "Full penetration testing framework — 100+ attack categories covering OWASP, injection, authentication, cloud, and more"
},
{
"name": "hackerone",
"path": "plugins/hackerone",
"description": "HackerOne bug bounty integration — report generation, CSV parsing, and platform-ready submissions"
},
{
"name": "ai-threat-testing",
"path": "plugins/ai-threat-testing",
"description": "AI security testing — OWASP LLM Top 10 with dedicated agents for prompt injection, model extraction, and more"
},
{
"name": "techstack-identification",
"path": "plugins/techstack-identification",
"description": "Tech stack reconnaissance — 26 skills and 5 agents for DNS, cloud detection, subdomain enumeration, and more"
},
{
"name": "skiller",
"path": "plugins/skiller",
"description": "Skill creation meta-tool — automates skill generation, validation, and PR submission for Claude Code plugins"
}
]
}
11 changes: 11 additions & 0 deletions .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "communitytools",
"version": "1.0.0",
"description": "Claude Code skills and agents for authorized security testing, bug bounty hunting, and pentesting workflows",
"author": {
"name": "Transilience AI",
"url": "https://github.com/transilienceai"
},
"repository": "https://github.com/transilienceai/communitytools",
"license": "MIT"
}
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,15 @@ evidence/

# Raw data and results
raw/
*.json
*.csv
*.txt

# JSON data files (but NOT plugin manifests)
*.json
!.claude-plugin/plugin.json
!.claude-plugin/marketplace.json
!plugins/**/.claude-plugin/plugin.json

# Credentials and secrets
credentials.json
config.json
Expand Down
Loading