Skip to content

Commit a70a6a1

Browse files
committed
fix: publish as @open-gitagent/gapman (scoped) for v0.3.1
NPM_TOKEN is scoped to @open-gitagent, so unscoped gapman 404'd. Using scoped name matches prior package pattern.
1 parent 82b278c commit a70a6a1

7 files changed

Lines changed: 15 additions & 15 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
# GitAgentProtocol (Open GAP) | your repository becomes your agent
66

7-
> **`gapman`** — the GitAgentProtocol (GAP) Manager CLI. Previously published as `@open-gitagent/gitagent`.
7+
> **`gapman`** — the GitAgentProtocol (GAP) Manager CLI, published as [`@open-gitagent/gapman`](https://www.npmjs.com/package/@open-gitagent/gapman). Previously published as `@open-gitagent/gitagent`.
88
9-
[![npm version](https://img.shields.io/npm/v/gapman)](https://www.npmjs.com/package/gapman)
9+
[![npm version](https://img.shields.io/npm/v/@open-gitagent/gapman)](https://www.npmjs.com/package/@open-gitagent/gapman)
1010
[![CI](https://github.com/open-gitagent/gitagent/actions/workflows/ci.yml/badge.svg)](https://github.com/open-gitagent/gitagent/actions/workflows/ci.yml)
1111
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
1212
[![Spec: v0.1.0](https://img.shields.io/badge/spec-v0.1.0-blue)](https://github.com/open-gitagent/gitagent/blob/main/spec/SPECIFICATION.md)
@@ -238,7 +238,7 @@ See [`examples/nvidia-deep-researcher/`](examples/nvidia-deep-researcher/) for t
238238
239239
```bash
240240
# Install
241-
npm i -g gapman
241+
npm i -g @open-gitagent/gapman
242242
243243
# Create a new agent
244244
gapman init --template standard

docs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A framework-agnostic, git-native standard for defining AI agents. `gapman` is th
44

55
**Clone a repo, get an agent.**
66

7-
> The package was previously published as `@open-gitagent/gitagent`. Starting with v0.3.0 it is published as [`gapman`](https://www.npmjs.com/package/gapman). Both `gapman` and `gitagent` commands are installed as binaries — they point to the same CLI.
7+
> The package was previously published as `@open-gitagent/gitagent`. Starting with v0.3.1 it is published as [`@open-gitagent/gapman`](https://www.npmjs.com/package/@open-gitagent/gapman). Both `gapman` and `gitagent` commands are installed as binaries — they point to the same CLI.
88
99
---
1010

@@ -50,13 +50,13 @@ A framework-agnostic, git-native standard for defining AI agents. `gapman` is th
5050
## Installation
5151

5252
```bash
53-
npm install -g gapman
53+
npm install -g @open-gitagent/gapman
5454
```
5555

5656
Verify:
5757

5858
```bash
59-
gapman --version # 0.3.0
59+
gapman --version # 0.3.1
6060
gapman --help
6161

6262
# gitagent alias also works

examples/gitagent-helper/skills/get-started/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ When a user is new to gitagent, wants to set up their first agent, or asks "how
1717

1818
### Installation
1919
```bash
20-
npm install -g gapman
20+
npm install -g @open-gitagent/gapman
2121
gapman --version
2222
```
2323

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "gapman",
3-
"version": "0.3.0",
2+
"name": "@open-gitagent/gapman",
3+
"version": "0.3.1",
44
"description": "GitAgentProtocol (GAP) Manager — framework-agnostic, git-native standard for defining AI agents",
55
"type": "module",
66
"bin": {

src/commands/registry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ ${manifest.description}
235235
## Run
236236
237237
\`\`\`bash
238-
npx gapman run -r ${repoUrl}
238+
npx @open-gitagent/gapman run -r ${repoUrl}
239239
\`\`\`
240240
241241
## Skills

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const program = new Command();
1818
program
1919
.name('gapman')
2020
.description('GitAgentProtocol (GAP) Manager — framework-agnostic, git-native standard for defining AI agents')
21-
.version('0.3.0');
21+
.version('0.3.1');
2222

2323
program.addCommand(initCommand);
2424
program.addCommand(validateCommand);

0 commit comments

Comments
 (0)