Skip to content

Commit 60cd90a

Browse files
committed
chore: rename package from @agentis/local to @gpu-cli/agentis
Scope @Agentis was unavailable on npm. Updated package name, CLI help text, READMEs, PRIVACY.md, CI/release workflows, and build script.
1 parent c15cfae commit 60cd90a

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CI — typecheck, lint, test, and verify @agentis/local packaging
1+
# CI — typecheck, lint, test, and verify @gpu-cli/agentis packaging
22
#
33
# Runs on every push and PR to main.
44

@@ -40,7 +40,7 @@ jobs:
4040
run: pnpm test
4141

4242
verify-package:
43-
name: Verify @agentis/local packaging
43+
name: Verify @gpu-cli/agentis packaging
4444
runs-on: ubuntu-latest
4545
steps:
4646
- name: Checkout

.github/workflows/release-local.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Publish @agentis/local to npm with provenance
1+
# Publish @gpu-cli/agentis to npm with provenance
22
#
33
# Triggered by pushing a tag matching `local-v*` (e.g. local-v0.1.0).
44
# Uses GitHub OIDC trusted publishing — no npm tokens stored as secrets.
@@ -9,7 +9,7 @@
99
# 3. Verify package contents
1010
# 4. Publish to npm with provenance attestation
1111

12-
name: Release @agentis/local
12+
name: Release @gpu-cli/agentis
1313

1414
on:
1515
push:

PRIVACY.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Privacy Notice for `@agentis/local`
1+
# Privacy Notice for `@gpu-cli/agentis`
22

3-
`@agentis/local` is designed for local-first use.
3+
`@gpu-cli/agentis` is designed for local-first use.
44

55
## What happens to your data
66

77
- All processing happens locally in your browser.
8-
- No data is sent to any server by `@agentis/local`.
8+
- No data is sent to any server by `@gpu-cli/agentis`.
99
- Transcripts never leave your machine.
1010

1111
## Telemetry and tracking

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ Privacy-first by design: transcript parsing and visualization run entirely on yo
1313
## Quick Start
1414

1515
```bash
16-
npx @agentis/local
16+
npx @gpu-cli/agentis
1717
```
1818

1919
That's it. Auto-discovers your Claude Code sessions from `~/.claude/projects/` and opens a local visualization at `http://127.0.0.1:3456`.
2020

21-
Options: `--port <number>`, `--no-open` (skip browser). See `npx @agentis/local --help`.
21+
Options: `--port <number>`, `--no-open` (skip browser). See `npx @gpu-cli/agentis --help`.
2222

2323
### From source
2424

@@ -48,7 +48,7 @@ pnpm build # Production build
4848
pnpm typecheck # TypeScript check
4949
pnpm test # Run tests
5050
pnpm lint # Lint
51-
pnpm build:local # Build @agentis/local bundle
51+
pnpm build:local # Build @gpu-cli/agentis bundle
5252
pnpm local:run # Run local server
5353
pnpm local:pack-run # Package + run via npx (tests real artifact)
5454
pnpm local:clean # Remove bundle/tarball artifacts

packages/local-runner/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
# @agentis/local
1+
# @gpu-cli/agentis
22

33
Visualize your Claude Code sessions as an interactive pixel-art world — entirely on your machine.
44

55
## Quick Start
66

77
```bash
8-
npx @agentis/local
8+
npx @gpu-cli/agentis
99
```
1010

1111
That's it. Your browser opens to a local server that auto-discovers Claude Code transcripts from `~/.claude/projects/` and lets you visualize them instantly.
1212

1313
## Options
1414

1515
```
16-
npx @agentis/local [options]
16+
npx @gpu-cli/agentis [options]
1717
1818
--port <number> Port to run on (default: 3456)
1919
--no-open Don't open browser automatically
@@ -44,7 +44,7 @@ npx @agentis/local [options]
4444
**Port already in use**
4545

4646
```bash
47-
npx @agentis/local --port 4000
47+
npx @gpu-cli/agentis --port 4000
4848
```
4949

5050
**No sessions found**

packages/local-runner/bin/agentis-local.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env node
22

33
// ============================================================================
4-
// @agentis/local — CLI launcher
4+
// @gpu-cli/agentis — CLI launcher
55
//
66
// Starts the Agentis Next.js app in local mode with:
77
// - AGENTIS_LOCAL_MODE=true (enables /api/local/* discovery routes)
@@ -15,9 +15,9 @@
1515
// 3. Monorepo dev mode (next dev via local binary) — used during development
1616
//
1717
// Usage:
18-
// npx @agentis/local # Start and open browser
19-
// npx @agentis/local --no-open # Start without opening browser
20-
// npx @agentis/local --port 8080 # Custom port
18+
// npx @gpu-cli/agentis # Start and open browser
19+
// npx @gpu-cli/agentis --no-open # Start without opening browser
20+
// npx @gpu-cli/agentis --port 8080 # Custom port
2121
// ============================================================================
2222

2323
import { spawn } from 'node:child_process'
@@ -47,10 +47,10 @@ for (let i = 0; i < args.length; i++) {
4747
openBrowser = false
4848
} else if (args[i] === '--help' || args[i] === '-h') {
4949
console.log(`
50-
@agentis/local — Visualize Claude Code sessions locally
50+
@gpu-cli/agentis — Visualize Claude Code sessions locally
5151
5252
Usage:
53-
npx @agentis/local [options]
53+
npx @gpu-cli/agentis [options]
5454
5555
Options:
5656
--port <number> Port to run on (default: 3456)

packages/local-runner/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@agentis/local",
2+
"name": "@gpu-cli/agentis",
33
"version": "0.1.0",
44
"description": "Visualize Claude Code sessions as an interactive pixel-art world — runs entirely on your machine",
55
"license": "MIT",

scripts/build-local.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,4 +179,4 @@ echo " node packages/local-runner/bin/agentis-local.js --no-open"
179179
echo ""
180180
echo "Package and test via npx:"
181181
echo " cd packages/local-runner && npm pack"
182-
echo " npx ./agentis-local-0.1.0.tgz --no-open"
182+
echo " npx ./gpu-cli-agentis-0.1.0.tgz --no-open"

0 commit comments

Comments
 (0)