real-link-ai 1.6.0 → 1.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +32 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
- # @real-link/cli
1
+ # real-link-ai
2
2
 
3
- CLI for [Real Link AI](https://real-link.ai) — distributed AI agent coordination for game development.
3
+ CLI for [Real Link AI](https://real-link.ai) — distributed AI agent coordination.
4
4
 
5
5
  ## Install
6
6
 
7
7
  ```bash
8
- npm install -g @real-link/cli
8
+ npm install -g real-link-ai
9
9
  ```
10
10
 
11
11
  ## Quick Start
@@ -77,3 +77,32 @@ rlcreate call GET /discover/schema
77
77
  rlcreate call POST /plans --body '{"title":"Mirror House","goal":"Build the plan first"}'
78
78
  rlcreate call /maintenance/gaps
79
79
  ```
80
+
81
+ ## Publishing
82
+
83
+ ### Automated (GitHub Actions)
84
+
85
+ Bump version in `cli/package.json`, then tag and push:
86
+
87
+ ```bash
88
+ git tag cli@1.7.0
89
+ git push origin cli@1.7.0
90
+ ```
91
+
92
+ The workflow at `.github/workflows/publish-cli.yml` publishes to npm automatically.
93
+ Requires `NPM_TOKEN` secret in GitHub repo settings (already configured).
94
+
95
+ ### npm Trusted Publisher (future)
96
+
97
+ To switch from token-based to OIDC publishing (no stored secret), configure
98
+ on [npmjs.com](https://www.npmjs.com/package/real-link-ai/access):
99
+
100
+ | Field | Value |
101
+ |---|---|
102
+ | **Repository owner** | `real-link-ai` |
103
+ | **Repository name** | `real-link-ai` |
104
+ | **Workflow filename** | `publish-cli.yml` |
105
+ | **Environment** | *(leave blank)* |
106
+
107
+ Then remove the `NPM_TOKEN` secret from GitHub and add `--provenance`
108
+ and `id-token: write` permission back to the workflow.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "real-link-ai",
3
- "version": "1.6.0",
3
+ "version": "1.6.3",
4
4
  "description": "Real Link AI CLI — Distributed AI agent coordination for game development",
5
5
  "bin": {
6
6
  "rlcreate": "dist/index.js"