feat: initial open marketplace with llm-security, config-audit, ultraplan-local
This commit is contained in:
commit
f93d6abdae
380 changed files with 65935 additions and 0 deletions
2
plugins/config-audit/tests/fixtures/fixable-project/.claude/rules/readme.txt
vendored
Normal file
2
plugins/config-audit/tests/fixtures/fixable-project/.claude/rules/readme.txt
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
This rule file has the wrong extension.
|
||||
It should be .md to be loaded by Claude Code.
|
||||
8
plugins/config-audit/tests/fixtures/fixable-project/.claude/rules/typescript.md
vendored
Normal file
8
plugins/config-audit/tests/fixtures/fixable-project/.claude/rules/typescript.md
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
globs: "**/*.ts"
|
||||
---
|
||||
|
||||
# TypeScript Rules
|
||||
|
||||
- Use strict mode
|
||||
- Prefer interfaces over types
|
||||
14
plugins/config-audit/tests/fixtures/fixable-project/.claude/settings.json
vendored
Normal file
14
plugins/config-audit/tests/fixtures/fixable-project/.claude/settings.json
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"apiProvider": "anthropic",
|
||||
"permissions": {
|
||||
"allow": []
|
||||
},
|
||||
"alwaysThinkingEnabled": "true",
|
||||
"effortLevel": "turbo",
|
||||
"hooks": [
|
||||
{
|
||||
"event": "PreToolUse",
|
||||
"command": "echo ok"
|
||||
}
|
||||
]
|
||||
}
|
||||
2
plugins/config-audit/tests/fixtures/fixable-project/.config-audit-ignore
vendored
Normal file
2
plugins/config-audit/tests/fixtures/fixable-project/.config-audit-ignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
# Suppress known feature gap findings for this test fixture
|
||||
CA-GAP-*
|
||||
7
plugins/config-audit/tests/fixtures/fixable-project/CLAUDE.md
vendored
Normal file
7
plugins/config-audit/tests/fixtures/fixable-project/CLAUDE.md
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Fixable Project
|
||||
|
||||
This is a minimal CLAUDE.md for the fixable-project fixture.
|
||||
|
||||
## Rules
|
||||
|
||||
- Follow TypeScript conventions
|
||||
18
plugins/config-audit/tests/fixtures/fixable-project/hooks/hooks.json
vendored
Normal file
18
plugins/config-audit/tests/fixtures/fixable-project/hooks/hooks.json
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"hooks": {
|
||||
"PreToolUse": [
|
||||
{
|
||||
"matcher": {
|
||||
"tool": "Bash"
|
||||
},
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": "echo ok",
|
||||
"timeout": "5000"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue