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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GuardeX — Guardian T-Rex for your repo

[![npm version](https://img.shields.io/npm/v/%40recodeecom%2Fguardex?color=cb3837&logo=npm)](https://www.npmjs.com/package/@recodeecom/guardex)
[![npm version](https://img.shields.io/npm/v/%40imdeadpool%2Fguardex?color=cb3837&logo=npm)](https://www.npmjs.com/package/@imdeadpool/guardex)
[![CI](https://github.com/recodeecom/multiagent-safety/actions/workflows/ci.yml/badge.svg)](https://github.com/recodeecom/multiagent-safety/actions/workflows/ci.yml)
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/recodeecom/multiagent-safety/badge)](https://securityscorecards.dev/viewer/?uri=github.com/recodeecom/multiagent-safety)

Expand All @@ -27,10 +27,10 @@ can be bootstrapped consistently across repos.
## Install

```sh
npm i -g @recodeecom/guardex
npm i -g @imdeadpool/guardex
```

Package page: https://www.npmjs.com/package/@recodeecom/guardex
Package page: https://www.npmjs.com/package/@imdeadpool/guardex


## Command aliases
Expand Down Expand Up @@ -194,7 +194,7 @@ gx copy-commands
Example output:

```sh
npm i -g @recodeecom/guardex
npm i -g @imdeadpool/guardex
gx setup
gx doctor
bash scripts/codex-agent.sh "task" "agent-name"
Expand All @@ -213,7 +213,7 @@ Full checklist output:
Use this exact checklist to setup multi-agent safety in this repository for Codex or Claude.

1) Install (if missing):
npm i -g @recodeecom/guardex
npm i -g @imdeadpool/guardex

2) Bootstrap safety in this repo:
gx setup
Expand Down
4 changes: 2 additions & 2 deletions bin/multiagent-safety.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const CLI_COMMAND_DESCRIPTIONS = [
const AI_SETUP_PROMPT = `Use this exact checklist to setup GuardeX (Guardian T-Rex for your repo) in this repository for Codex or Claude.

1) Install (if missing):
npm i -g @recodeecom/guardex
npm i -g @imdeadpool/guardex

2) Bootstrap safety in this repo:
gx setup
Expand Down Expand Up @@ -153,7 +153,7 @@ const AI_SETUP_PROMPT = `Use this exact checklist to setup GuardeX (Guardian T-R
gx sync
`;

const AI_SETUP_COMMANDS = `npm i -g @recodeecom/guardex
const AI_SETUP_COMMANDS = `npm i -g @imdeadpool/guardex
gx setup
gx doctor
bash scripts/codex-agent.sh "task" "agent-name"
Expand Down
4 changes: 2 additions & 2 deletions docs/redditpost.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ gx protect add release staging
Links:

- GitHub: https://github.com/recodeecom/multiagent-safety
- npm: https://www.npmjs.com/package/@recodeecom/guardex
- npm: https://www.npmjs.com/package/@imdeadpool/guardex

If you try it, I’d love feedback on team workflows and edge cases.

Expand All @@ -58,4 +58,4 @@ gx setup
```

GitHub: https://github.com/recodeecom/multiagent-safety
npm: https://www.npmjs.com/package/@recodeecom/guardex
npm: https://www.npmjs.com/package/@imdeadpool/guardex
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@recodeecom/guardex",
"name": "@imdeadpool/guardex",
"version": "5.0.0",
"description": "GuardeX: the Guardian T-Rex for your repo, with hardened multi-agent git guardrails.",
"license": "MIT",
Expand Down
8 changes: 4 additions & 4 deletions test/install.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ if [[ "$1" == "list" ]]; then
echo '{"dependencies":{"oh-my-codex":{},"@fission-ai/openspec":{}}}'
exit 0
fi
if [[ "$1" == "i" && "$2" == "-g" && "$3" == "@recodeecom/guardex@latest" ]]; then
if [[ "$1" == "i" && "$2" == "-g" && "$3" == "@imdeadpool/guardex@latest" ]]; then
echo "updated" > "${markerPath}"
exit 0
fi
Expand Down Expand Up @@ -529,7 +529,7 @@ test('status --json returns cli, services, and repo summary', () => {
assert.equal(result.status, 0, result.stderr || result.stdout);

const parsed = JSON.parse(result.stdout);
assert.equal(parsed.cli.name, '@recodeecom/guardex');
assert.equal(parsed.cli.name, '@imdeadpool/guardex');
assert.equal(typeof parsed.cli.version, 'string');
assert.equal(Array.isArray(parsed.services), true);
assert.equal(parsed.repo.inGitRepo, true);
Expand Down Expand Up @@ -1184,7 +1184,7 @@ test('copy-prompt outputs AI setup instructions', () => {
const repoDir = initRepo();
const result = runNode(['copy-prompt'], repoDir);
assert.equal(result.status, 0, result.stderr || result.stdout);
assert.match(result.stdout, /npm i -g @recodeecom\/guardex/);
assert.match(result.stdout, /npm i -g @imdeadpool\/guardex/);
assert.match(result.stdout, /npm i -g oh-my-codex @fission-ai\/openspec/);
assert.match(result.stdout, /gx setup/);
assert.match(result.stdout, /Codex or Claude/);
Expand All @@ -1195,7 +1195,7 @@ test('copy-commands outputs command-only checklist', () => {
const repoDir = initRepo();
const result = runNode(['copy-commands'], repoDir);
assert.equal(result.status, 0, result.stderr || result.stdout);
assert.match(result.stdout, /^npm i -g @recodeecom\/guardex/m);
assert.match(result.stdout, /^npm i -g @imdeadpool\/guardex/m);
assert.match(result.stdout, /gx setup/);
assert.match(result.stdout, /gx doctor/);
assert.match(result.stdout, /scripts\/agent-file-locks.py claim/);
Expand Down
Loading