feat: add OpenCode/Codex outputs and update changelog (#104)
* Add OpenCode converter coverage and specs * Add Codex target support and spec docs * Generate Codex command skills and refresh spec docs * Add global Codex install path * fix: harden plugin path loading and codex descriptions * feat: ensure codex agents block on convert/install * docs: clarify target branch usage for review * chore: prep npm package metadata and release notes * docs: mention opencode and codex in changelog * docs: update CLI usage and remove stale todos * feat: install from GitHub with global outputs
This commit is contained in:
8
tests/fixtures/custom-paths/.claude-plugin/plugin.json
vendored
Normal file
8
tests/fixtures/custom-paths/.claude-plugin/plugin.json
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "custom-paths",
|
||||
"version": "1.0.0",
|
||||
"agents": "./custom-agents",
|
||||
"commands": ["./custom-commands"],
|
||||
"skills": "./custom-skills",
|
||||
"hooks": "./custom-hooks/hooks.json"
|
||||
}
|
||||
5
tests/fixtures/custom-paths/agents/default-agent.md
vendored
Normal file
5
tests/fixtures/custom-paths/agents/default-agent.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
name: default-agent
|
||||
---
|
||||
|
||||
Default agent
|
||||
5
tests/fixtures/custom-paths/commands/default-command.md
vendored
Normal file
5
tests/fixtures/custom-paths/commands/default-command.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
name: default-command
|
||||
---
|
||||
|
||||
Default command
|
||||
5
tests/fixtures/custom-paths/custom-agents/custom-agent.md
vendored
Normal file
5
tests/fixtures/custom-paths/custom-agents/custom-agent.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
name: custom-agent
|
||||
---
|
||||
|
||||
Custom agent
|
||||
5
tests/fixtures/custom-paths/custom-commands/custom-command.md
vendored
Normal file
5
tests/fixtures/custom-paths/custom-commands/custom-command.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
name: custom-command
|
||||
---
|
||||
|
||||
Custom command
|
||||
7
tests/fixtures/custom-paths/custom-hooks/hooks.json
vendored
Normal file
7
tests/fixtures/custom-paths/custom-hooks/hooks.json
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"hooks": {
|
||||
"PostToolUse": [
|
||||
{ "matcher": "Write", "hooks": [{ "type": "command", "command": "echo custom" }] }
|
||||
]
|
||||
}
|
||||
}
|
||||
5
tests/fixtures/custom-paths/custom-skills/custom-skill/SKILL.md
vendored
Normal file
5
tests/fixtures/custom-paths/custom-skills/custom-skill/SKILL.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
name: custom-skill
|
||||
---
|
||||
|
||||
Custom skill
|
||||
7
tests/fixtures/custom-paths/hooks/hooks.json
vendored
Normal file
7
tests/fixtures/custom-paths/hooks/hooks.json
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"hooks": {
|
||||
"PreToolUse": [
|
||||
{ "matcher": "Read", "hooks": [{ "type": "command", "command": "echo default" }] }
|
||||
]
|
||||
}
|
||||
}
|
||||
5
tests/fixtures/custom-paths/skills/default-skill/SKILL.md
vendored
Normal file
5
tests/fixtures/custom-paths/skills/default-skill/SKILL.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
name: default-skill
|
||||
---
|
||||
|
||||
Default skill
|
||||
Reference in New Issue
Block a user