Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ jobs:
- name: verify package contents
run: |
cargo package --list --allow-dirty > /tmp/pkg.txt
if grep -qE '(^|/)(\.freebuff|\.codegraph|\.omo|target|node_modules|memory:)(/|$)' /tmp/pkg.txt; then
if grep -qE '(^|/)(\.freebuff|\.codegraph|\.omo|target|node_modules|memory:|=|scripts/benchmark/results)(/|$)' /tmp/pkg.txt; then
echo "::error::forbidden files found in package:"
grep -E '(^|/)(\.freebuff|\.codegraph|\.omo|target|node_modules|memory:)(/|$)' /tmp/pkg.txt
grep -E '(^|/)(\.freebuff|\.codegraph|\.omo|target|node_modules|memory:|=|scripts/benchmark/results)(/|$)' /tmp/pkg.txt
exit 1
fi
echo "package contents clean ($(wc -l < /tmp/pkg.txt) files)"
Expand Down
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,12 @@ memory:/
# Claude Code per-machine settings — never commit. The committed native skill
# lives at .claude/skills/<name>/SKILL.md (generated by `init --target claude`).
.claude/settings.local.json

# Agent benchmark run artifacts — machine-specific transcript JSON/logs/prompts
# (contain local absolute paths) and are reproducible, not source. Keep the
# benchmark tooling (scripts/benchmark/*.py) but never the results.
/scripts/benchmark/results/

# Stray directory some tool once created at the repo root (contained a scratch
# tmp/); not source, protect against accidental commits if it reappears.
/=
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div align="center">
<img src="docs/logo.png" width="480" alt="skillpack logo">
<p><strong>The agent-distribution layer for modern OSS tools and libraries.</strong></p>
<p>Generate, verify, and maintain agent instructions across Claude Code, Cursor, Codex, OpenCode, GitHub Copilot, Freebuff, and 18 AI coding ecosystems.</p>
<p>Generate, verify, and maintain agent instructions across Claude Code, Cursor, Codex, OpenCode, GitHub Copilot, Freebuff, and 19 AI coding ecosystems.</p>

<p>
<a href="https://github.com/nordicnode/skillpack/actions/workflows/ci.yml"><img src="https://github.com/nordicnode/skillpack/actions/workflows/ci.yml/badge.svg" alt="CI Status"></a>
Expand Down Expand Up @@ -56,7 +56,7 @@ Without an agent guidance layer, AI coding agents frequently:

## Key Features

* **Universal Multi-Ecosystem Generation**: Generates native guidance files for **18 agent formats** simultaneously (`AGENTS.md`, Claude Code (plugin + native `.claude/skills/`), Cursor `.mdc`, Codex, OpenCode, Copilot, `CLAUDE.md`, `GEMINI.md`, Windsurf, Aider, Cline, Roo Code, Kilo Code, Goose, Qoder, Continue, Augment, and Amazon Q). Freebuff and other AGENTS.md-native agents read the generated `AGENTS.md`.
* **Universal Multi-Ecosystem Generation**: Generates native guidance files for **19 agent formats** simultaneously (`AGENTS.md`, Claude Code (plugin + native `.claude/skills/`), Cursor `.mdc`, Codex, OpenCode, Copilot, `CLAUDE.md`, `GEMINI.md`, Windsurf, Aider, Cline, Roo Code, Kilo Code, Goose, Qoder, Continue, Augment, Amazon Q, and Trae). Freebuff and other AGENTS.md-native agents read the generated `AGENTS.md`.
* **Zero-Drift Verification**: Simulates agent invocations against your live CLI to verify that every documented flag and subcommand actually exists.
* **Pre-Commit Safe**: `skillpack init` validates the complete surface before writing a single file to disk.
* **Non-Destructive Updates**: `skillpack update` refreshes flags and versions while preserving your hand-written descriptions and notes.
Expand Down
100 changes: 0 additions & 100 deletions scripts/benchmark/results/a-plain-r1.json

This file was deleted.

Empty file.
9 changes: 0 additions & 9 deletions scripts/benchmark/results/a-plain-r1.prompt

This file was deleted.

1 change: 0 additions & 1 deletion scripts/benchmark/results/a-plain-r1.wall

This file was deleted.

95 changes: 0 additions & 95 deletions scripts/benchmark/results/a-plain-r2.json

This file was deleted.

Empty file.
9 changes: 0 additions & 9 deletions scripts/benchmark/results/a-plain-r2.prompt

This file was deleted.

1 change: 0 additions & 1 deletion scripts/benchmark/results/a-plain-r2.wall

This file was deleted.

Loading
Loading