mirror of
https://github.com/obra/superpowers.git
synced 2026-07-11 20:49:04 +08:00
Compare commits
20 Commits
codex/pack
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
096e15aa73 | ||
|
|
c809093a2a | ||
|
|
97506cefd7 | ||
|
|
4ecbbcd0b4 | ||
|
|
53106e6536 | ||
|
|
89338e5113 | ||
|
|
c842f8871a | ||
|
|
6752471ad9 | ||
|
|
371a26cf99 | ||
|
|
3bb0a3faa3 | ||
|
|
2d05b63edc | ||
|
|
f268f7c953 | ||
|
|
e1753f6e77 | ||
|
|
777cc2fae4 | ||
|
|
e7ddc25e51 | ||
|
|
711d895ce7 | ||
|
|
640ce6c0e9 | ||
|
|
879ae59c33 | ||
|
|
d376057029 | ||
|
|
add6a283b1 |
@@ -9,7 +9,7 @@
|
|||||||
{
|
{
|
||||||
"name": "superpowers",
|
"name": "superpowers",
|
||||||
"description": "Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques",
|
"description": "Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques",
|
||||||
"version": "6.1.0",
|
"version": "6.1.1",
|
||||||
"source": "./",
|
"source": "./",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Jesse Vincent",
|
"name": "Jesse Vincent",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "superpowers",
|
"name": "superpowers",
|
||||||
"description": "Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques",
|
"description": "Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques",
|
||||||
"version": "6.1.0",
|
"version": "6.1.1",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Jesse Vincent",
|
"name": "Jesse Vincent",
|
||||||
"email": "jesse@fsck.com"
|
"email": "jesse@fsck.com"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "superpowers",
|
"name": "superpowers",
|
||||||
"version": "6.1.0",
|
"version": "6.1.1",
|
||||||
"description": "An agentic skills framework & software development methodology that works: planning, TDD, debugging, and collaboration workflows.",
|
"description": "An agentic skills framework & software development methodology that works: planning, TDD, debugging, and collaboration workflows.",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Jesse Vincent",
|
"name": "Jesse Vincent",
|
||||||
@@ -21,12 +21,13 @@
|
|||||||
"workflow"
|
"workflow"
|
||||||
],
|
],
|
||||||
"skills": "./skills/",
|
"skills": "./skills/",
|
||||||
|
"hooks": {},
|
||||||
"interface": {
|
"interface": {
|
||||||
"displayName": "Superpowers",
|
"displayName": "Superpowers",
|
||||||
"shortDescription": "Planning, TDD, debugging, and delivery workflows for coding agents",
|
"shortDescription": "Planning, TDD, debugging, and delivery workflows for coding agents",
|
||||||
"longDescription": "Use Superpowers to guide agent work through brainstorming, implementation planning, test-driven development, systematic debugging, parallel execution, code review, and finish-the-branch workflows.",
|
"longDescription": "Use Superpowers to guide agent work through brainstorming, implementation planning, test-driven development, systematic debugging, parallel execution, code review, and finish-the-branch workflows.",
|
||||||
"developerName": "Jesse Vincent",
|
"developerName": "Jesse Vincent",
|
||||||
"category": "Coding",
|
"category": "Developer Tools",
|
||||||
"capabilities": [
|
"capabilities": [
|
||||||
"Interactive",
|
"Interactive",
|
||||||
"Read",
|
"Read",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"name": "superpowers",
|
"name": "superpowers",
|
||||||
"displayName": "Superpowers",
|
"displayName": "Superpowers",
|
||||||
"description": "Core skills library: TDD, debugging, collaboration patterns, and proven techniques",
|
"description": "Core skills library: TDD, debugging, collaboration patterns, and proven techniques",
|
||||||
"version": "6.1.0",
|
"version": "6.1.1",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Jesse Vincent",
|
"name": "Jesse Vincent",
|
||||||
"email": "jesse@fsck.com"
|
"email": "jesse@fsck.com"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "superpowers",
|
"name": "superpowers",
|
||||||
"version": "6.1.0",
|
"version": "6.1.1",
|
||||||
"description": "An agentic skills framework and software development methodology.",
|
"description": "An agentic skills framework and software development methodology.",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Jesse Vincent",
|
"name": "Jesse Vincent",
|
||||||
|
|||||||
@@ -101,7 +101,7 @@ Skills are not prose — they are code that shapes agent behavior. If you modify
|
|||||||
|
|
||||||
## Eval harness
|
## Eval harness
|
||||||
|
|
||||||
Skill-behavior evals live in [superpowers-evals](https://github.com/prime-radiant-inc/superpowers-evals/), cloned into `evals/` — see `evals/README.md` for setup. The harness drives real tmux sessions of Claude Code / Codex and judges skill compliance with an LLM verifier. Plugin-infrastructure tests still live at `tests/`.
|
Skill-behavior evals live in [superpowers-evals](https://github.com/prime-radiant-inc/superpowers-evals/), cloned into `evals/` — see `evals/README.md` for setup. Drill (the harness) drives real tmux sessions of Claude Code / Codex / Gemini CLI and judges skill compliance with an LLM verifier. Plugin-infrastructure tests still live at `tests/`.
|
||||||
|
|
||||||
## Understand the Project Before Contributing
|
## Understand the Project Before Contributing
|
||||||
|
|
||||||
|
|||||||
16
README.md
16
README.md
@@ -11,7 +11,7 @@ If this sounds like someone you know, definitely send them our way.
|
|||||||
|
|
||||||
## Quickstart
|
## Quickstart
|
||||||
|
|
||||||
Give your agent Superpowers: [Claude Code](#claude-code), [Antigravity](#antigravity), [Codex App](#codex-app), [Codex CLI](#codex-cli), [Cursor](#cursor), [Factory Droid](#factory-droid), [GitHub Copilot CLI](#github-copilot-cli), [Kimi Code](#kimi-code), [OpenCode](#opencode), [Pi](#pi).
|
Give your agent Superpowers: [Claude Code](#claude-code), [Antigravity](#antigravity), [Codex App](#codex-app), [Codex CLI](#codex-cli), [Cursor](#cursor), [Factory Droid](#factory-droid), [Gemini CLI](#gemini-cli), [GitHub Copilot CLI](#github-copilot-cli), [Kimi Code](#kimi-code), [OpenCode](#opencode), [Pi](#pi).
|
||||||
|
|
||||||
## How it works
|
## How it works
|
||||||
|
|
||||||
@@ -122,6 +122,20 @@ Superpowers is available via the [official Codex plugin marketplace](https://git
|
|||||||
droid plugin install superpowers@superpowers
|
droid plugin install superpowers@superpowers
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Gemini CLI
|
||||||
|
|
||||||
|
- Install the extension:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
gemini extensions install https://github.com/obra/superpowers
|
||||||
|
```
|
||||||
|
|
||||||
|
- Update later:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
gemini extensions update superpowers
|
||||||
|
```
|
||||||
|
|
||||||
### GitHub Copilot CLI
|
### GitHub Copilot CLI
|
||||||
|
|
||||||
- Register the marketplace:
|
- Register the marketplace:
|
||||||
|
|||||||
@@ -1,5 +1,16 @@
|
|||||||
# Superpowers Release Notes
|
# Superpowers Release Notes
|
||||||
|
|
||||||
|
## v6.1.1 (2026-07-02)
|
||||||
|
|
||||||
|
### Codex
|
||||||
|
|
||||||
|
- **Codex no longer re-registers the Claude SessionStart hook.** v6.1.0 removed the Codex hook config and its manifest `hooks` pointer, meaning to stop Codex from installing a SessionStart hook — but with no `hooks` field, Codex fell back to auto-discovering `hooks/hooks.json`, the Claude Code SessionStart hook that the marketplace ships from the repo root, and re-registered it along with its install-time trust prompt. The Codex manifest now declares an explicit empty hooks object (`hooks: {}`), which Codex reads as "no hooks" instead of reaching the auto-discovery fallback. An absent field, `[]`, and an empty inline list all collapse back to the fallback, so the value has to be exactly `{}`.
|
||||||
|
- **Removed orphaned Codex session-start dead code.** `hooks/session-start-codex` had no caller once the Codex hook config was deleted, so it and its redundant test cases are gone. The worked shell-hook example in `docs/porting-to-a-new-harness.md` moves from Codex — now native skill discovery with no session-start hook — to Cursor, a live shell-hook harness, and the stale `hooks-codex.json` pointer in `docs/windows/polyglot-hooks.md` is corrected. The Codex plugin category is also fixed to "Developer Tools".
|
||||||
|
|
||||||
|
### Packaging
|
||||||
|
|
||||||
|
- **New `package-codex-plugin.sh` for building the Codex portal package.** A maintainer script produces a deterministic Codex "portal" archive — `.zip` by default, `tar.gz` on request — that normalizes entry timestamps, preserves executable modes, verifies every packaged skill ships its OpenAI metadata, includes the app and composer icons, and refuses to run against a dirty worktree. The packaged manifest keeps the source `hooks: {}` object so a portal-installed plugin avoids the same SessionStart auto-discovery, and the script can rebuild a byte-identical archive from a saved metadata source. Covered by a new test suite.
|
||||||
|
|
||||||
## v6.1.0 (2026-06-30)
|
## v6.1.0 (2026-06-30)
|
||||||
|
|
||||||
### Lower Per-Session Token Cost
|
### Lower Per-Session Token Cost
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ every session, with no per-session opt-in by your human partner.** This is the
|
|||||||
one non-negotiable capability. It can take any form:
|
one non-negotiable capability. It can take any form:
|
||||||
|
|
||||||
- a **hook/event system** that runs a shell command at session start and reads
|
- a **hook/event system** that runs a shell command at session start and reads
|
||||||
its stdout (Claude Code, Codex, Cursor, Copilot CLI), or
|
its stdout (Claude Code, Cursor, Copilot CLI), or
|
||||||
- an **in-process plugin/extension** with a session-start or message lifecycle
|
- an **in-process plugin/extension** with a session-start or message lifecycle
|
||||||
callback that can mutate the message array (OpenCode, pi), or
|
callback that can mutate the message array (OpenCode, pi), or
|
||||||
- an **instructions-file** convention where the harness loads a context file that
|
- an **instructions-file** convention where the harness loads a context file that
|
||||||
@@ -227,18 +227,20 @@ you may **not** do is bridge a gap by editing the user's global config.
|
|||||||
The harness has a hook system that runs a shell command at session start and
|
The harness has a hook system that runs a shell command at session start and
|
||||||
reads JSON from its stdout. The configured command runs `run-hook.cmd`, a
|
reads JSON from its stdout. The configured command runs `run-hook.cmd`, a
|
||||||
polyglot wrapper that just locates bash and dispatches the named script; the
|
polyglot wrapper that just locates bash and dispatches the named script; the
|
||||||
script (`hooks/session-start`, or a harness-specific variant like
|
script (`hooks/session-start`, or a harness-specific variant) is what reads
|
||||||
`hooks/session-start-codex`) is what reads `using-superpowers/SKILL.md` and
|
`using-superpowers/SKILL.md` and prints a JSON object whose **field name and
|
||||||
prints a JSON object whose **field name and nesting differ per harness**.
|
nesting differ per harness**.
|
||||||
|
|
||||||
- Reference: `hooks/session-start` (and `hooks/session-start-codex`),
|
- Reference: `hooks/session-start`, `hooks/run-hook.cmd`, and the per-harness
|
||||||
`hooks/run-hook.cmd`, and the per-harness hook config `hooks/hooks.json`
|
hook config `hooks/hooks.json` (Claude Code) and `hooks/hooks-cursor.json`
|
||||||
(Claude Code), `hooks/hooks-codex.json` (Codex), `hooks/hooks-cursor.json`
|
|
||||||
(Cursor).
|
(Cursor).
|
||||||
- Manifests: `.codex-plugin/plugin.json`, `.cursor-plugin/plugin.json` point the
|
- Manifests: `.cursor-plugin/plugin.json` is the Shape A manifest example that
|
||||||
harness at `./skills/` and the right `hooks-*.json`. (Claude Code's
|
points the harness at `./skills/` and the right `hooks-*.json`. Claude Code's
|
||||||
`.claude-plugin/plugin.json` sets neither field — it auto-discovers `skills/`
|
`.claude-plugin/plugin.json` sets neither field — it auto-discovers `skills/`
|
||||||
and `hooks/hooks.json` by convention.)
|
and `hooks/hooks.json` by convention. Do **not** copy Codex's
|
||||||
|
`.codex-plugin/plugin.json` for Shape A: it declares an empty `hooks` object
|
||||||
|
specifically to suppress Codex's `hooks/hooks.json` auto-discovery, because
|
||||||
|
Codex surfaces skills natively and runs no session-start hook.
|
||||||
|
|
||||||
> **A hook *system* is not a session-start *event*.** A harness can have a
|
> **A hook *system* is not a session-start *event*.** A harness can have a
|
||||||
> `hooks.json` mechanism — and even contain the literal string `SessionStart` in
|
> `hooks.json` mechanism — and even contain the literal string `SessionStart` in
|
||||||
@@ -287,7 +289,7 @@ part of the installed extension** — never substitute "edit the user's global
|
|||||||
|
|
||||||
| If the harness… | Use shape | Copy from |
|
| If the harness… | Use shape | Copy from |
|
||||||
|---|---|---|
|
|---|---|---|
|
||||||
| runs a shell command at session start and reads its stdout | A (shell-hook) | Codex (`hooks/session-start-codex` + `hooks/hooks-codex.json` + `.codex-plugin/`) |
|
| runs a shell command at session start and reads its stdout | A (shell-hook) | Cursor (`hooks/session-start` + `hooks/hooks-cursor.json` + `.cursor-plugin/`) |
|
||||||
| is a JS/TS plugin host with session/message lifecycle callbacks | B (in-process) | OpenCode (`.opencode/`) — or pi (`.pi/`) if it has no native skill tool |
|
| is a JS/TS plugin host with session/message lifecycle callbacks | B (in-process) | OpenCode (`.opencode/`) — or pi (`.pi/`) if it has no native skill tool |
|
||||||
| ships an extension-declared context file it always loads | C (instructions-file) | Gemini (`gemini-extension.json` + `GEMINI.md` + `references/gemini-tools.md`) |
|
| ships an extension-declared context file it always loads | C (instructions-file) | Gemini (`gemini-extension.json` + `GEMINI.md` + `references/gemini-tools.md`) |
|
||||||
| has a plugin install command and a manifest `contextFileName` (or equivalent) the installer keeps | C via the plugin installer | Antigravity (`.antigravity-plugin/` — `agy plugin install` ships a generated context file; verify the installer preserves it — Part 6) |
|
| has a plugin install command and a manifest `contextFileName` (or equivalent) the installer keeps | C via the plugin installer | Antigravity (`.antigravity-plugin/` — `agy plugin install` ships a generated context file; verify the installer preserves it — Part 6) |
|
||||||
@@ -309,7 +311,7 @@ patterns below are summaries; the code is the spec.
|
|||||||
Create whatever the harness uses to recognize the plugin. Match the existing
|
Create whatever the harness uses to recognize the plugin. Match the existing
|
||||||
ones in spirit:
|
ones in spirit:
|
||||||
|
|
||||||
- **Shape A:** a `*-plugin/plugin.json` (see `.codex-plugin/plugin.json`) with
|
- **Shape A:** a `*-plugin/plugin.json` (see `.cursor-plugin/plugin.json`) with
|
||||||
`name`, `version`, `description`, author/license/keywords, `"skills":
|
`name`, `version`, `description`, author/license/keywords, `"skills":
|
||||||
"./skills/"`, and `"hooks": "./hooks/hooks-<harness>.json"`. Plus the
|
"./skills/"`, and `"hooks": "./hooks/hooks-<harness>.json"`. Plus the
|
||||||
`hooks-<harness>.json` itself, registering a session-start hook whose command
|
`hooks-<harness>.json` itself, registering a session-start hook whose command
|
||||||
@@ -375,25 +377,24 @@ both double-injects). Find the
|
|||||||
exact field, nesting, and event-matcher values your harness expects. Then
|
exact field, nesting, and event-matcher values your harness expects. Then
|
||||||
decide: add a fourth branch to `hooks/session-start`, or — if the harness needs
|
decide: add a fourth branch to `hooks/session-start`, or — if the harness needs
|
||||||
a different bootstrap message or env contract — add a dedicated
|
a different bootstrap message or env contract — add a dedicated
|
||||||
`hooks/session-start-<harness>` script, the way Codex did. If you add a branch
|
`hooks/session-start-<harness>` script. If you add a branch
|
||||||
and your harness *also* sets an env var an earlier branch keys on (some harnesses
|
and your harness *also* sets an env var an earlier branch keys on (some harnesses
|
||||||
set `CLAUDE_PLUGIN_ROOT` too), order your branch before the one that would
|
set `CLAUDE_PLUGIN_ROOT` too), order your branch before the one that would
|
||||||
otherwise shadow it. Match the harness's
|
otherwise shadow it. Match the harness's
|
||||||
own event-matcher strings (Claude Code uses `startup|clear|compact`, Codex
|
own event-matcher strings (Claude Code uses `startup|clear|compact`, Cursor
|
||||||
`startup|resume|clear`, Cursor `sessionStart`); wrong matchers mean the hook
|
`sessionStart`); wrong matchers mean the hook silently never fires.
|
||||||
silently never fires.
|
|
||||||
|
|
||||||
The **hook-config schema itself varies per harness** — don't assume the
|
The **hook-config schema itself varies per harness** — don't assume the
|
||||||
Claude/Codex shape is universal. Compare `hooks/hooks.json`,
|
Claude Code shape is universal. Compare `hooks/hooks.json` and
|
||||||
`hooks/hooks-codex.json`, and `hooks/hooks-cursor.json`: Cursor's uses
|
`hooks/hooks-cursor.json`: Cursor's uses
|
||||||
`"version": 1`, a lowercase `sessionStart` key, a relative
|
`"version": 1`, a lowercase `sessionStart` key, a relative
|
||||||
`./hooks/run-hook.cmd` command, and omits the `matcher`/`type`/`async` fields the
|
`./hooks/run-hook.cmd` command, and omits the `matcher`/`type`/`async` fields
|
||||||
others use. Match your `hooks-<harness>.json` to whichever existing file is
|
Claude Code uses. Match your `hooks-<harness>.json` to whichever existing file is
|
||||||
closest, not to a single canonical template.
|
closest, not to a single canonical template.
|
||||||
|
|
||||||
The hook **command string references a harness-provided plugin-root variable**,
|
The hook **command string references a harness-provided plugin-root variable**,
|
||||||
and its name differs per harness: `hooks.json` uses `${CLAUDE_PLUGIN_ROOT}`,
|
and its name differs per harness: `hooks.json` uses `${CLAUDE_PLUGIN_ROOT}`,
|
||||||
`hooks-codex.json` uses `${PLUGIN_ROOT}`, Cursor uses a relative path. Use
|
`hooks-cursor.json` uses a relative path. Use
|
||||||
whatever your harness exports. (The `session-start` script re-derives the root
|
whatever your harness exports. (The `session-start` script re-derives the root
|
||||||
itself via `dirname`, so the script body doesn't depend on this — but the
|
itself via `dirname`, so the script body doesn't depend on this — but the
|
||||||
command in the manifest does.)
|
command in the manifest does.)
|
||||||
@@ -784,7 +785,7 @@ Use this as the live index; when in doubt, read the files, not this table.
|
|||||||
| Harness | Entry point | Bootstrap mechanism | Tool mapping | Tests | Distribution |
|
| Harness | Entry point | Bootstrap mechanism | Tool mapping | Tests | Distribution |
|
||||||
|---|---|---|---|---|---|
|
|---|---|---|---|---|---|
|
||||||
| Claude Code | `.claude-plugin/plugin.json` + `hooks/hooks.json` | shell hook → `hooks/session-start` (`hookSpecificOutput.additionalContext`) | native `Skill` tool; `references/claude-code-tools.md` | `tests/hooks/` | marketplace |
|
| Claude Code | `.claude-plugin/plugin.json` + `hooks/hooks.json` | shell hook → `hooks/session-start` (`hookSpecificOutput.additionalContext`) | native `Skill` tool; `references/claude-code-tools.md` | `tests/hooks/` | marketplace |
|
||||||
| Codex | `.codex-plugin/plugin.json` + `hooks/hooks-codex.json` | shell hook → `hooks/session-start-codex` | `references/codex-tools.md` | `tests/codex-plugin-sync/`, `tests/hooks/` | fork sync (`scripts/sync-to-codex-plugin.sh`) |
|
| Codex | `.codex-plugin/plugin.json` (declares empty `hooks`) | native skill discovery (no session-start hook) | `references/codex-tools.md` | `tests/codex/`, `tests/codex-plugin-sync/` | fork sync (`scripts/sync-to-codex-plugin.sh`) |
|
||||||
| Cursor | `.cursor-plugin/plugin.json` + `hooks/hooks-cursor.json` | shell hook → `hooks/session-start` (`additional_context`) | `references/claude-code-tools.md` | `tests/hooks/` | hand-authored |
|
| Cursor | `.cursor-plugin/plugin.json` + `hooks/hooks-cursor.json` | shell hook → `hooks/session-start` (`additional_context`) | `references/claude-code-tools.md` | `tests/hooks/` | hand-authored |
|
||||||
| Copilot CLI | (shares Claude Code hook path; `COPILOT_CLI` env) | shell hook → `hooks/session-start` (`additionalContext`) | `references/copilot-tools.md` | `tests/hooks/` | — |
|
| Copilot CLI | (shares Claude Code hook path; `COPILOT_CLI` env) | shell hook → `hooks/session-start` (`additionalContext`) | `references/copilot-tools.md` | `tests/hooks/` | — |
|
||||||
| Gemini CLI | `gemini-extension.json` + `GEMINI.md` | instructions file `@`-includes bootstrap + mapping | `references/gemini-tools.md` | — | `gemini extensions install` |
|
| Gemini CLI | `gemini-extension.json` + `GEMINI.md` | instructions file `@`-includes bootstrap + mapping | `references/gemini-tools.md` | — | `gemini extensions install` |
|
||||||
@@ -799,10 +800,10 @@ Use this as the live index; when in doubt, read the files, not this table.
|
|||||||
- **Wrong JSON field → silent failure or double injection.** Shape A only.
|
- **Wrong JSON field → silent failure or double injection.** Shape A only.
|
||||||
Confirm the exact field/nesting; Claude Code reads two fields without dedup.
|
Confirm the exact field/nesting; Claude Code reads two fields without dedup.
|
||||||
- **Hook-config schema varies per harness.** Shape A. Cursor's `hooks-cursor.json`
|
- **Hook-config schema varies per harness.** Shape A. Cursor's `hooks-cursor.json`
|
||||||
looks nothing like the Claude/Codex one (`version`, lowercase `sessionStart`,
|
looks nothing like the Claude Code one (`version`, lowercase `sessionStart`,
|
||||||
relative command, no `matcher`/`type`/`async`). Match the closest existing file.
|
relative command, no `matcher`/`type`/`async`). Match the closest existing file.
|
||||||
- **Plugin-root env var differs per harness.** Shape A. The hook command uses
|
- **Plugin-root env var differs per harness.** Shape A. The hook command uses
|
||||||
`${CLAUDE_PLUGIN_ROOT}` (Claude), `${PLUGIN_ROOT}` (Codex), or a relative path
|
`${CLAUDE_PLUGIN_ROOT}` (Claude) or a relative path
|
||||||
(Cursor). Use what your harness exports; the script re-derives the root itself.
|
(Cursor). Use what your harness exports; the script re-derives the root itself.
|
||||||
- **System-message injection.** Shape B injects a *user* message on purpose
|
- **System-message injection.** Shape B injects a *user* message on purpose
|
||||||
(#750, #894). Don't "fix" it to a system message.
|
(#750, #894). Don't "fix" it to a system message.
|
||||||
|
|||||||
@@ -140,7 +140,7 @@ Check that the script filename is **extensionless** in `hooks.json`. A command l
|
|||||||
|
|
||||||
### Hook doesn't fire at all
|
### Hook doesn't fire at all
|
||||||
|
|
||||||
Verify the `matcher` in `hooks.json` matches the event type your harness emits. Claude Code uses `startup|clear|compact`; Codex uses `startup|resume|clear`. Check `hooks-codex.json` for the Codex variant.
|
Verify the `matcher` in `hooks.json` matches the event type your harness emits. Claude Code uses `startup|clear|compact`; Cursor uses `sessionStart`. Check `hooks-cursor.json` for the Cursor variant.
|
||||||
|
|
||||||
## Related Issues
|
## Related Issues
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "superpowers",
|
"name": "superpowers",
|
||||||
"description": "Core skills library: TDD, debugging, collaboration patterns, and proven techniques",
|
"description": "Core skills library: TDD, debugging, collaboration patterns, and proven techniques",
|
||||||
"version": "6.1.0",
|
"version": "6.1.1",
|
||||||
"contextFileName": "GEMINI.md"
|
"contextFileName": "GEMINI.md"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
# Codex SessionStart hook for superpowers plugin
|
|
||||||
|
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
||||||
PLUGIN_ROOT="$(cd "${SCRIPT_DIR}/.." && pwd)"
|
|
||||||
|
|
||||||
using_superpowers_content=$(cat "${PLUGIN_ROOT}/skills/using-superpowers/SKILL.md" 2>&1 || echo "Error reading using-superpowers skill")
|
|
||||||
|
|
||||||
escape_for_json() {
|
|
||||||
local s="$1"
|
|
||||||
s="${s//\\/\\\\}"
|
|
||||||
s="${s//\"/\\\"}"
|
|
||||||
s="${s//$'\n'/\\n}"
|
|
||||||
s="${s//$'\r'/\\r}"
|
|
||||||
s="${s//$'\t'/\\t}"
|
|
||||||
printf '%s' "$s"
|
|
||||||
}
|
|
||||||
|
|
||||||
using_superpowers_escaped=$(escape_for_json "$using_superpowers_content")
|
|
||||||
session_context="<EXTREMELY_IMPORTANT>\nYou have superpowers.\n\n**Below is the full content of your 'superpowers:using-superpowers' skill - your introduction to using skills. For all other skills, follow the Codex skill-loading instructions in that skill:**\n\n${using_superpowers_escaped}\n</EXTREMELY_IMPORTANT>"
|
|
||||||
|
|
||||||
printf '{\n "hookSpecificOutput": {\n "hookEventName": "SessionStart",\n "additionalContext": "%s"\n }\n}\n' "$session_context" | cat
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "superpowers",
|
"name": "superpowers",
|
||||||
"version": "6.1.0",
|
"version": "6.1.1",
|
||||||
"description": "Superpowers skills and runtime bootstrap for coding agents",
|
"description": "Superpowers skills and runtime bootstrap for coding agents",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": ".opencode/plugins/superpowers.js",
|
"main": ".opencode/plugins/superpowers.js",
|
||||||
|
|||||||
@@ -242,10 +242,6 @@ git -C "$REPO_ROOT" archive --format=tar "$REF" -- \
|
|||||||
VERSION="$(jq -r '.version // empty' "$STAGE/.codex-plugin/plugin.json")"
|
VERSION="$(jq -r '.version // empty' "$STAGE/.codex-plugin/plugin.json")"
|
||||||
[[ -n "$VERSION" ]] || die "could not read version from .codex-plugin/plugin.json"
|
[[ -n "$VERSION" ]] || die "could not read version from .codex-plugin/plugin.json"
|
||||||
|
|
||||||
if jq -e 'has("hooks")' "$STAGE/.codex-plugin/plugin.json" >/dev/null; then
|
|
||||||
die "Codex manifest must not declare hooks for the portal package"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -z "$OUTPUT" ]]; then
|
if [[ -z "$OUTPUT" ]]; then
|
||||||
case "$FORMAT" in
|
case "$FORMAT" in
|
||||||
zip)
|
zip)
|
||||||
|
|||||||
@@ -74,6 +74,13 @@ On Windows, the script auto-detects and switches to foreground mode (which block
|
|||||||
scripts/start-server.sh --project-dir /path/to/project --open
|
scripts/start-server.sh --project-dir /path/to/project --open
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**Gemini CLI:**
|
||||||
|
```bash
|
||||||
|
# Use --foreground and set is_background: true on your shell tool call
|
||||||
|
# so the process survives across turns
|
||||||
|
scripts/start-server.sh --project-dir /path/to/project --open --foreground
|
||||||
|
```
|
||||||
|
|
||||||
**Copilot CLI:**
|
**Copilot CLI:**
|
||||||
```bash
|
```bash
|
||||||
# Use --foreground and start the server via the bash tool with mode: "async"
|
# Use --foreground and start the server via the bash tool with mode: "async"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Load plan, review critically, execute all tasks, report when complete.
|
|||||||
|
|
||||||
**Announce at start:** "I'm using the executing-plans skill to implement this plan."
|
**Announce at start:** "I'm using the executing-plans skill to implement this plan."
|
||||||
|
|
||||||
**Note:** Tell your human partner that Superpowers works much better with access to subagents. The quality of its work will be significantly higher if run on a platform with subagent support (Claude Code, Codex CLI, Codex App, and Copilot CLI all qualify; see the per-platform tool refs in `../using-superpowers/references/`). If subagents are available, use superpowers:subagent-driven-development instead of this skill.
|
**Note:** Tell your human partner that Superpowers works much better with access to subagents. The quality of its work will be significantly higher if run on a platform with subagent support (Claude Code, Codex CLI, Codex App, Copilot CLI, and Gemini CLI all qualify; see the per-platform tool refs in `../using-superpowers/references/`). If subagents are available, use superpowers:subagent-driven-development instead of this skill.
|
||||||
|
|
||||||
## The Process
|
## The Process
|
||||||
|
|
||||||
|
|||||||
63
skills/using-superpowers/references/gemini-tools.md
Normal file
63
skills/using-superpowers/references/gemini-tools.md
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
# Gemini CLI Tool Mapping
|
||||||
|
|
||||||
|
Skills speak in actions ("dispatch a subagent", "create a todo", "read a file"). On Gemini CLI these resolve to the tools below.
|
||||||
|
|
||||||
|
| Action skills request | Gemini CLI equivalent |
|
||||||
|
|----------------------|----------------------|
|
||||||
|
| Read a file | `read_file` |
|
||||||
|
| Read multiple files at once | `read_many_files` |
|
||||||
|
| Create a new file | `write_file` |
|
||||||
|
| Edit a file | `replace` |
|
||||||
|
| Run a shell command | `run_shell_command` |
|
||||||
|
| Search file contents | `grep_search` |
|
||||||
|
| Find files by name | `glob` |
|
||||||
|
| List files and subdirectories | `list_directory` |
|
||||||
|
| Fetch a URL | `web_fetch` |
|
||||||
|
| Search the web | `google_web_search` |
|
||||||
|
| Invoke a skill | `activate_skill` |
|
||||||
|
| Dispatch a subagent (`Subagent (general-purpose):` template) | `invoke_agent` with `agent_name: "generalist"` (invocable via `@generalist` chat syntax — see [Subagent support](#subagent-support)) |
|
||||||
|
| Multiple parallel dispatches | Multiple `invoke_agent` calls in the same response |
|
||||||
|
| Task tracking ("create a todo", "mark complete") | `write_todos` (statuses: pending, in_progress, completed, cancelled, blocked) |
|
||||||
|
|
||||||
|
## Instructions file
|
||||||
|
|
||||||
|
When a skill mentions "your instructions file", on Gemini CLI this is **`GEMINI.md`**. Gemini CLI loads `GEMINI.md` hierarchically: global at `~/.gemini/GEMINI.md`, project-level files in workspace directories and their ancestors, and sub-directory `GEMINI.md` files when a tool accesses files in those directories.
|
||||||
|
|
||||||
|
## Personal skills directory
|
||||||
|
|
||||||
|
User-level skills live at **`~/.gemini/skills/`**, with **`~/.agents/skills/`** as a cross-runtime alias (shared with Codex and Copilot CLI). When both directories exist at the same scope, `.agents/skills/` takes precedence. Each skill is a subdirectory containing a `SKILL.md` (with `name` and `description` frontmatter).
|
||||||
|
|
||||||
|
## Subagent support
|
||||||
|
|
||||||
|
Gemini CLI dispatches subagents through the `invoke_agent` tool, which takes `agent_name` and `prompt` parameters. The same dispatch is also surfaced as a chat-syntax shortcut: typing `@generalist <prompt>` is equivalent to calling `invoke_agent` with `agent_name: "generalist"`. Built-in agent names include `generalist`, `cli_help`, `codebase_investigator`, and (with browser tooling enabled) `browser_agent`.
|
||||||
|
|
||||||
|
Skills dispatch with `Subagent (general-purpose):` and either reference a prompt-template file (e.g., `superpowers:subagent-driven-development`'s `./implementer-prompt.md`) or supply an inline prompt. On Gemini CLI:
|
||||||
|
|
||||||
|
| Skill dispatch form | Gemini CLI equivalent |
|
||||||
|
|---------------------|----------------------|
|
||||||
|
| References a `*-prompt.md` template (implementer, task-reviewer, code-reviewer, etc.) | Fill the template, then `invoke_agent` with `agent_name: "generalist"` and the filled prompt |
|
||||||
|
| References `superpowers:requesting-code-review`'s `./code-reviewer.md` | `invoke_agent` with `agent_name: "generalist"` and the filled review template |
|
||||||
|
| Inline prompt (no template referenced) | `invoke_agent` with `agent_name: "generalist"` and your inline prompt |
|
||||||
|
|
||||||
|
### Prompt filling
|
||||||
|
|
||||||
|
Skills provide prompt templates with placeholders like `{WHAT_WAS_IMPLEMENTED}` or `[FULL TEXT of task]`. Fill all placeholders before passing the complete prompt to `invoke_agent`. The prompt template itself contains the agent's role, review criteria, and expected output format — the subagent will follow it.
|
||||||
|
|
||||||
|
### Parallel dispatch
|
||||||
|
|
||||||
|
Gemini CLI supports parallel subagent dispatch. Issue multiple `invoke_agent` calls in the same response (or multiple `@generalist` invocations in one prompt) to run independent subagent work in parallel. Keep dependent tasks sequential, but do not serialize independent subagent tasks just to preserve a simpler history.
|
||||||
|
|
||||||
|
## Additional Gemini CLI tools
|
||||||
|
|
||||||
|
These tools are unique to Gemini CLI:
|
||||||
|
|
||||||
|
| Tool | Purpose |
|
||||||
|
|------|---------|
|
||||||
|
| `save_memory` (legacy) | Persist facts across sessions when `experimental.memoryV2 = false` |
|
||||||
|
| `get_internal_docs` | Look up Gemini CLI's bundled documentation |
|
||||||
|
| `ask_user` | Pose structured questions to the user (text / single-select / multi-select) |
|
||||||
|
| `enter_plan_mode` / `exit_plan_mode` | Switch into and out of read-only plan mode |
|
||||||
|
| `update_topic` | Update the current conversation's topic / strategic-intent metadata |
|
||||||
|
| `complete_task` | Signal that a Gemini subagent has completed and return its result to the parent agent |
|
||||||
|
| `tracker_create_task`, `tracker_update_task`, `tracker_get_task`, `tracker_list_tasks`, `tracker_add_dependency`, `tracker_visualize` | Rich task tracker with dependency and visualization support |
|
||||||
|
| `read_mcp_resource`, `list_mcp_resources` | MCP resource access |
|
||||||
@@ -9,7 +9,7 @@ description: Use when creating new skills, editing existing skills, or verifying
|
|||||||
|
|
||||||
**Writing skills IS Test-Driven Development applied to process documentation.**
|
**Writing skills IS Test-Driven Development applied to process documentation.**
|
||||||
|
|
||||||
**Personal skills live in your runtime's skills directory**
|
**Personal skills live in your runtime's skills directory** — see [claude-code-tools.md](../using-superpowers/references/claude-code-tools.md), [codex-tools.md](../using-superpowers/references/codex-tools.md), [copilot-tools.md](../using-superpowers/references/copilot-tools.md), or [gemini-tools.md](../using-superpowers/references/gemini-tools.md) for the path on your runtime. Codex, Copilot CLI, and Gemini CLI all also recognize `~/.agents/skills/` as a cross-runtime alias.
|
||||||
|
|
||||||
You write test cases (pressure scenarios with subagents), watch them fail (baseline behavior), write the skill (documentation), watch tests pass (agents comply), and refactor (close loopholes).
|
You write test cases (pressure scenarios with subagents), watch them fail (baseline behavior), write the skill (documentation), watch tests pass (agents comply), and refactor (close loopholes).
|
||||||
|
|
||||||
|
|||||||
@@ -51,10 +51,25 @@ if not plugin_manifest.exists():
|
|||||||
|
|
||||||
manifest = json.loads(plugin_manifest.read_text(encoding="utf-8"))
|
manifest = json.loads(plugin_manifest.read_text(encoding="utf-8"))
|
||||||
assert_equal(manifest.get("name"), plugin.get("name"), "plugin manifest name")
|
assert_equal(manifest.get("name"), plugin.get("name"), "plugin manifest name")
|
||||||
|
|
||||||
|
# Codex auto-discovers a plugin's hooks/hooks.json whenever the Codex manifest
|
||||||
|
# has no `hooks` field: load_plugin_hooks falls back to a hardcoded
|
||||||
|
# DEFAULT_HOOKS_CONFIG_FILE = "hooks/hooks.json" and registers it. That file is
|
||||||
|
# the Claude Code SessionStart hook, it is tracked in this repo, and this
|
||||||
|
# marketplace installs the whole repo root (source url "./"), so on Codex the
|
||||||
|
# fallback re-registers the SessionStart hook and its install-time trust prompt.
|
||||||
|
# Declaring an empty inline hooks object ({}) parses as an empty inline hook set
|
||||||
|
# and suppresses the auto-discovery. An absent field, an empty array ([]), and
|
||||||
|
# an empty inline list all collapse back to the fallback, so the value must be
|
||||||
|
# exactly an empty object.
|
||||||
|
hooks_config = repo_root / "hooks" / "hooks.json"
|
||||||
|
if not hooks_config.exists():
|
||||||
|
raise AssertionError("hooks/hooks.json must exist (Claude Code SessionStart hook)")
|
||||||
|
|
||||||
assert_equal(
|
assert_equal(
|
||||||
manifest.get("hooks"),
|
manifest.get("hooks"),
|
||||||
None,
|
{},
|
||||||
"Codex manifest ships no hooks",
|
"Codex manifest must declare empty hooks {} to suppress hooks/hooks.json auto-discovery",
|
||||||
)
|
)
|
||||||
|
|
||||||
print("Codex marketplace manifest looks good")
|
print("Codex marketplace manifest looks good")
|
||||||
|
|||||||
@@ -140,6 +140,9 @@ extracted="$TEST_ROOT/extracted"
|
|||||||
tar_extracted="$TEST_ROOT/tar-extracted"
|
tar_extracted="$TEST_ROOT/tar-extracted"
|
||||||
write_metadata_fixture "$metadata_source"
|
write_metadata_fixture "$metadata_source"
|
||||||
|
|
||||||
|
source_hooks="$(python3 -c 'import json; print(json.load(open("'"$REPO_ROOT"'/.codex-plugin/plugin.json")).get("hooks"))')"
|
||||||
|
assert_equals "$source_hooks" "{}" "source Codex manifest suppresses local hook auto-discovery"
|
||||||
|
|
||||||
if output="$("$SCRIPT_UNDER_TEST" --allow-dirty --metadata-source "$metadata_source" --output "$archive" 2>&1)"; then
|
if output="$("$SCRIPT_UNDER_TEST" --allow-dirty --metadata-source "$metadata_source" --output "$archive" 2>&1)"; then
|
||||||
pass "package script exits successfully"
|
pass "package script exits successfully"
|
||||||
else
|
else
|
||||||
@@ -170,7 +173,7 @@ assert_contains "$archive_paths" "assets/superpowers-small.svg" "archive include
|
|||||||
|
|
||||||
manifest_summary="$(read_archive_file "$archive" .codex-plugin/plugin.json | python3 -c 'import json,sys; data=json.load(sys.stdin); print("\t".join([data["name"], data["version"], data["skills"], str(data.get("hooks"))]))')"
|
manifest_summary="$(read_archive_file "$archive" .codex-plugin/plugin.json | python3 -c 'import json,sys; data=json.load(sys.stdin); print("\t".join([data["name"], data["version"], data["skills"], str(data.get("hooks"))]))')"
|
||||||
expected_version="$(python3 -c 'import json; print(json.load(open("'"$REPO_ROOT"'/.codex-plugin/plugin.json"))["version"])')"
|
expected_version="$(python3 -c 'import json; print(json.load(open("'"$REPO_ROOT"'/.codex-plugin/plugin.json"))["version"])')"
|
||||||
assert_equals "$manifest_summary" "superpowers $expected_version ./skills/ None" "archive manifest is current and hook-free"
|
assert_equals "$manifest_summary" "superpowers $expected_version ./skills/ $source_hooks" "archive manifest preserves source hooks"
|
||||||
|
|
||||||
skill_count="$(find "$extracted/skills" -mindepth 1 -maxdepth 1 -type d | wc -l | tr -d ' ')"
|
skill_count="$(find "$extracted/skills" -mindepth 1 -maxdepth 1 -type d | wc -l | tr -d ' ')"
|
||||||
metadata_count="$(find "$extracted/skills" -path '*/agents/openai.yaml' -type f | wc -l | tr -d ' ')"
|
metadata_count="$(find "$extracted/skills" -path '*/agents/openai.yaml' -type f | wc -l | tr -d ' ')"
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ set -euo pipefail
|
|||||||
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
||||||
REPO_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"
|
REPO_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"
|
||||||
HOOK_UNDER_TEST="$REPO_ROOT/hooks/session-start"
|
HOOK_UNDER_TEST="$REPO_ROOT/hooks/session-start"
|
||||||
CODEX_HOOK_UNDER_TEST="$REPO_ROOT/hooks/session-start-codex"
|
|
||||||
WRAPPER_UNDER_TEST="$REPO_ROOT/hooks/run-hook.cmd"
|
WRAPPER_UNDER_TEST="$REPO_ROOT/hooks/run-hook.cmd"
|
||||||
|
|
||||||
FAILURES=0
|
FAILURES=0
|
||||||
@@ -154,35 +153,15 @@ assert_command_output \
|
|||||||
CLAUDE_PLUGIN_ROOT="$REPO_ROOT" \
|
CLAUDE_PLUGIN_ROOT="$REPO_ROOT" \
|
||||||
bash "$HOOK_UNDER_TEST"
|
bash "$HOOK_UNDER_TEST"
|
||||||
|
|
||||||
codex_home="$(make_home codex-plugin-hooks)"
|
wrapper_home="$(make_home run-hook-wrapper)"
|
||||||
codex_data="$TEST_ROOT/codex-plugin-hooks/data"
|
|
||||||
mkdir -p "$codex_data"
|
|
||||||
assert_command_output \
|
assert_command_output \
|
||||||
"Codex plugin hooks use dedicated script and emit nested SessionStart additionalContext" \
|
"run-hook.cmd wrapper dispatches to the named session-start script" \
|
||||||
"nested" \
|
"nested" \
|
||||||
"" \
|
"" \
|
||||||
"" \
|
"" \
|
||||||
"$codex_home" \
|
"$wrapper_home" \
|
||||||
PLUGIN_DATA="$codex_data" \
|
|
||||||
CLAUDE_PLUGIN_DATA="$codex_data" \
|
|
||||||
PLUGIN_ROOT="$REPO_ROOT" \
|
|
||||||
CLAUDE_PLUGIN_ROOT="$REPO_ROOT" \
|
CLAUDE_PLUGIN_ROOT="$REPO_ROOT" \
|
||||||
bash "$CODEX_HOOK_UNDER_TEST"
|
bash "$WRAPPER_UNDER_TEST" session-start
|
||||||
|
|
||||||
codex_wrapper_home="$(make_home codex-wrapper)"
|
|
||||||
codex_wrapper_data="$TEST_ROOT/codex-wrapper/data"
|
|
||||||
mkdir -p "$codex_wrapper_data"
|
|
||||||
assert_command_output \
|
|
||||||
"Codex wrapper path dispatches to dedicated script" \
|
|
||||||
"nested" \
|
|
||||||
"" \
|
|
||||||
"" \
|
|
||||||
"$codex_wrapper_home" \
|
|
||||||
PLUGIN_DATA="$codex_wrapper_data" \
|
|
||||||
CLAUDE_PLUGIN_DATA="$codex_wrapper_data" \
|
|
||||||
PLUGIN_ROOT="$REPO_ROOT" \
|
|
||||||
CLAUDE_PLUGIN_ROOT="$REPO_ROOT" \
|
|
||||||
bash "$WRAPPER_UNDER_TEST" session-start-codex
|
|
||||||
|
|
||||||
cursor_home="$(make_home cursor)"
|
cursor_home="$(make_home cursor)"
|
||||||
assert_command_output \
|
assert_command_output \
|
||||||
@@ -217,21 +196,6 @@ assert_command_output \
|
|||||||
CLAUDE_PLUGIN_ROOT="$REPO_ROOT" \
|
CLAUDE_PLUGIN_ROOT="$REPO_ROOT" \
|
||||||
bash "$HOOK_UNDER_TEST"
|
bash "$HOOK_UNDER_TEST"
|
||||||
|
|
||||||
codex_legacy_home="$(make_home codex-legacy-warning-removed)"
|
|
||||||
codex_legacy_data="$TEST_ROOT/codex-legacy-warning-removed/data"
|
|
||||||
mkdir -p "$codex_legacy_home/.config/superpowers/skills" "$codex_legacy_data"
|
|
||||||
assert_command_output \
|
|
||||||
"Codex SessionStart omits obsolete legacy custom-skill warning" \
|
|
||||||
"nested" \
|
|
||||||
"" \
|
|
||||||
"Superpowers now uses"$'\037'"~/.config/superpowers/skills"$'\037'"~/.claude/skills"$'\037'"legacy" \
|
|
||||||
"$codex_legacy_home" \
|
|
||||||
PLUGIN_DATA="$codex_legacy_data" \
|
|
||||||
CLAUDE_PLUGIN_DATA="$codex_legacy_data" \
|
|
||||||
PLUGIN_ROOT="$REPO_ROOT" \
|
|
||||||
CLAUDE_PLUGIN_ROOT="$REPO_ROOT" \
|
|
||||||
bash "$CODEX_HOOK_UNDER_TEST"
|
|
||||||
|
|
||||||
if [[ "$FAILURES" -gt 0 ]]; then
|
if [[ "$FAILURES" -gt 0 ]]; then
|
||||||
echo "STATUS: FAILED ($FAILURES failure(s))"
|
echo "STATUS: FAILED ($FAILURES failure(s))"
|
||||||
exit 1
|
exit 1
|
||||||
|
|||||||
Reference in New Issue
Block a user