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
fabe03f
feat: add agentv-plugin-review skill and eval
christso Mar 25, 2026
29d8fd0
feat: add workspace-based eval with mock plugin and planted issues
christso Mar 25, 2026
dae38d6
fix: use default target instead of invalid pi-cli
christso Mar 25, 2026
c0fd0c3
feat: add pi-cli target and use it for plugin-review eval
christso Mar 25, 2026
0c8737f
feat: add skill quality checklist from Superpowers writing-skills
christso Mar 25, 2026
446cf26
feat: create agentic-architect plugin with architecture design and pl…
christso Mar 25, 2026
48eab0c
feat: add pi-coding-agent target and fix pi-cli provider
christso Mar 25, 2026
0329368
chore: remove codex cwd and log_dir from targets.yaml
christso Mar 25, 2026
9062cf7
refactor: replace "species" terminology with industry-standard "agent…
christso Mar 25, 2026
82153ba
chore: remove name attribution from design patterns reference
christso Mar 25, 2026
45c38a6
chore: rename evals/architecture to evals/self
christso Mar 25, 2026
1b8d9a6
feat: add deterministic linting scripts for eval and plugin review
christso Mar 25, 2026
d43e333
feat: add self-consistency and cross-file consistency checks
christso Mar 25, 2026
46d44b1
chore: simplify consistency check to single line
christso Mar 25, 2026
0fd01b4
chore: remove .entire, .claude, .github/hooks, .opencode/plugins
christso Mar 25, 2026
bb61067
chore: rename evals/self/dataset.eval.yaml to eval.yaml
christso Mar 25, 2026
a4a5ef4
chore: remove execution target from self eval
christso Mar 25, 2026
ce74f15
feat: flag manual routing workarounds as weak description signal
christso Mar 25, 2026
23dc0d5
feat: add external dependencies check to plugin review
christso Mar 25, 2026
68199dc
refactor: remove external dependencies check, add agentskills.io refe…
christso Mar 25, 2026
bb6f71c
chore: add agentskills.io using-scripts reference
christso Mar 25, 2026
57a75f1
ci: add markdown link validation workflow
christso Mar 25, 2026
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
14 changes: 12 additions & 2 deletions .agentv/targets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,21 @@ targets:
system_prompt: "Answer directly based on the information provided."
grader_target: gemini-flash

- name: pi-cli
provider: pi-cli
grader_target: gemini-flash

- name: pi-coding-agent
provider: pi-coding-agent
subprovider: openrouter
model: z-ai/glm-4.7
api_key: ${{ OPENROUTER_API_KEY }}
system_prompt: "Answer directly based on the information provided."
grader_target: gemini-flash

- name: codex
provider: codex
grader_target: gemini-llm
cwd: ${{ CODEX_WORKSPACE_DIR }} # Where scratch workspaces are created
log_dir: ${{ CODEX_LOG_DIR }} # Optional: where Codex CLI stream logs are stored (defaults to ./.agentv/logs/codex)
log_format: json # Optional: 'summary' (default) or 'json' for raw event logs

- name: gemini-llm
Expand Down
5 changes: 5 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
"name": "agentv-claude-trace",
"description": "Session tracing plugin — exports Claude Code session traces via OpenTelemetry",
"source": "./plugins/agentv-claude-trace"
},
{
"name": "agentic-architect",
"description": "Design and review AI agent architectures — species selection, workflow patterns, and plugin quality review",
"source": "./plugins/agentic-architect"
}
]
}
84 changes: 0 additions & 84 deletions .claude/settings.json

This file was deleted.

4 changes: 0 additions & 4 deletions .entire/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions .entire/settings.json

This file was deleted.

61 changes: 0 additions & 61 deletions .github/hooks/entire.json

This file was deleted.

5 changes: 5 additions & 0 deletions .github/plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
"name": "agentv-claude-trace",
"description": "Session tracing plugin — exports Claude Code session traces via OpenTelemetry",
"source": "./plugins/agentv-claude-trace"
},
{
"name": "agentic-architect",
"description": "Design and review AI agent architectures — species selection, workflow patterns, and plugin quality review",
"source": "./plugins/agentic-architect"
}
]
}
23 changes: 23 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Validate

on:
push:
branches: [main]
pull_request:

jobs:
links:
name: Check Links
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Check relative markdown links
uses: lycheeverse/lychee-action@v2
with:
args: >-
--offline
--no-progress
--glob-ignore-case
--root-dir .
"**/*.md"
158 changes: 0 additions & 158 deletions .opencode/plugins/entire.ts

This file was deleted.

Loading
Loading