mirror of
https://github.com/wshobson/agents.git
synced 2026-09-14 18:04:20 +08:00
1533e7787b
* feat(pi): register the Pi harness in capabilities, model aliases, and tool maps * feat(pi): add the Pi adapter (skills, prompt templates, subagent-extension agents) * feat(pi): generate the .pi tree via make generate HARNESS=pi * feat(pi): validate the generated .pi tree * feat(pi): gardener reports stale .pi artifacts * feat(pi): make install-pi symlinks the .pi tree into the Pi config dir * test(pi): real-CLI smoke tests via token-free slash expansion; install pi in CI * test(pi): override every Anthropic credential variable in the smoke env * docs: add the Pi harness everywhere the harness list appears * fix(pi): close the final-review findings (CI type-check, base URL override, validator gap, docs) * docs(pi): align harness-count wording and the no-billing explanation Claude-Session: https://claude.ai/code/session_01DZazzWVyb8MxPCuLC1w5Qo * fix(pi): scope clean and prune to the adapter-owned .pi subtrees; tighten filename checks Claude-Session: https://claude.ai/code/session_01DZazzWVyb8MxPCuLC1w5Qo
69 lines
1.8 KiB
Plaintext
69 lines
1.8 KiB
Plaintext
# Folder view configuration files
|
|
.DS_Store
|
|
Desktop.ini
|
|
|
|
# Thumbnail cache files
|
|
._*
|
|
Thumbs.db
|
|
|
|
# Files that might appear on external disks
|
|
.Spotlight-V100
|
|
.Trashes
|
|
|
|
# Compiled Python files
|
|
*.pyc
|
|
__pycache__/
|
|
|
|
# Compiled C++ files
|
|
*.out
|
|
|
|
# Application specific files
|
|
venv
|
|
.venv
|
|
node_modules
|
|
.sass-cache
|
|
.claude
|
|
.worktrees/
|
|
|
|
# Generated harness artifacts.
|
|
#
|
|
# MOST generated output is gitignored — source-of-truth lives only under plugins/.
|
|
# Regenerate with `make generate-all`; never hand-edit generated files.
|
|
#
|
|
# EXCEPTION — small registries committed so Codex + Cursor install natively from a clone
|
|
# (no build step). They point at the source plugins/ dirs; no skill/agent trees are
|
|
# duplicated. NOT gitignored:
|
|
# .cursor-plugin/ Cursor marketplace + per-plugin manifests
|
|
# .cursor/ curated Cursor rules
|
|
# .agents/plugins/marketplace.json Codex marketplace registry
|
|
# plugins/*/.codex-plugin/plugin.json per-plugin Codex manifest (tracked under plugins/)
|
|
# OpenCode, Antigravity, and Pi install via clone + `make` (their transformed trees below stay ignored).
|
|
|
|
# Codex CLI — transformed skills/agents (local generation; the marketplace reads source)
|
|
.codex/
|
|
|
|
# OpenCode — transformed trees (install via `make install-opencode`)
|
|
.opencode/
|
|
opencode.json
|
|
|
|
# OpenCode session continuation artifacts
|
|
.omo/
|
|
|
|
# Copilot
|
|
.copilot/
|
|
|
|
# Local agent caches (but NOT the committed Codex marketplace under .agents/plugins/)
|
|
.agent/
|
|
.agents/*
|
|
!.agents/plugins/
|
|
|
|
# Antigravity CLI — transformed plugins (local generation; install via clone + `make generate HARNESS=antigravity`)
|
|
.antigravity/
|
|
|
|
# Pi — transformed skills/prompts/agents (local generation; `make generate HARNESS=pi`)
|
|
.pi/
|
|
|
|
|
|
# Superpowers plugin artifacts (specs/plans are session-local, never committed)
|
|
docs/superpowers/
|