@typescape-ai/cli 1.9.26 → 1.9.30
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.
- package/README.md +39 -32
- package/dist/cli.js +665 -471
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -83,7 +83,10 @@ typescape finding create --review sess_abc123 --body "Never mention supplements
|
|
|
83
83
|
typescape review export --review rev_xxx
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
-
`review export` defaults to the canonical `export.v2` contract.
|
|
86
|
+
`review export` defaults to the canonical `export.v2` contract. Explicit
|
|
87
|
+
`--schema v1` runtime requests are retired; use versioned views like
|
|
88
|
+
`response_matrix.v1` only when you intentionally need that bounded
|
|
89
|
+
compatibility shape.
|
|
87
90
|
|
|
88
91
|
## Commands
|
|
89
92
|
|
|
@@ -118,10 +121,10 @@ typescape review export --review rev_xxx
|
|
|
118
121
|
| `rules get` | Get the canonical compiled rules bundle for agent reasoning |
|
|
119
122
|
| `rules check` | Request an optional server-side advisory pass |
|
|
120
123
|
| `rules import` | Import markdown into a draft rule review |
|
|
124
|
+
| `rules publish` | Publish a draft rule review |
|
|
125
|
+
| `rules revise` | Revise a rule review into a successor version |
|
|
126
|
+
| `rules deprecate` | Deprecate a published rule review |
|
|
121
127
|
| `rules pack` | Compatibility alias for `rules get` |
|
|
122
|
-
| `rules propose` | Create a rule proposal |
|
|
123
|
-
| `rules proposals` | List rule proposals |
|
|
124
|
-
| `rules decide` | Accept, reject, or deprecate a rule proposal |
|
|
125
128
|
| `coverage` | Check section coverage against active rules |
|
|
126
129
|
|
|
127
130
|
### Review & Approval
|
|
@@ -142,33 +145,33 @@ typescape review export --review rev_xxx
|
|
|
142
145
|
|
|
143
146
|
### Orchestration & Collections
|
|
144
147
|
|
|
145
|
-
| Command | Description
|
|
146
|
-
| ------------------- |
|
|
147
|
-
| `repo list` | List connected repositories
|
|
148
|
-
| `repo connect` | Connect a repository by Git URL
|
|
149
|
-
| `repo branches` | List branches for a connected repository
|
|
150
|
-
| `project create` | Create a new upload-backed project
|
|
151
|
-
| `project list` | List projects
|
|
152
|
-
| `project get` | Get project detail
|
|
153
|
-
| `project update` | Update project metadata
|
|
154
|
-
| `project delete` | Start project deletion
|
|
155
|
-
| `project move` | Declare a project file-path move
|
|
156
|
-
| `project upload` | Upload files into a project batch
|
|
157
|
-
| `template create` | Create a reusable review template
|
|
158
|
-
| `template list` | List review templates
|
|
159
|
-
| `template get` | Get template detail
|
|
160
|
-
| `review-set create` | Create a multi-file review set
|
|
161
|
-
| `review-set list` | List review sets
|
|
162
|
-
| `review-set get` | Get review set overview
|
|
163
|
-
| `review-set update` | Update review set title or lifecycle state
|
|
164
|
-
| `review-set export` | Export a review set using
|
|
165
|
-
| `review-set status` | Evaluate aggregate review-set policy status
|
|
166
|
-
| `collection create` | Create a new collection
|
|
167
|
-
| `collection add` | Add reviews to a collection
|
|
168
|
-
| `collection get` | Get one collection with member reviews
|
|
169
|
-
| `collection list` | List collections
|
|
170
|
-
| `collection update` | Update collection metadata or archive state
|
|
171
|
-
| `collection delete` | Archive a collection via the canonical PATCH surface
|
|
148
|
+
| Command | Description |
|
|
149
|
+
| ------------------- | ---------------------------------------------------- |
|
|
150
|
+
| `repo list` | List connected repositories |
|
|
151
|
+
| `repo connect` | Connect a repository by Git URL |
|
|
152
|
+
| `repo branches` | List branches for a connected repository |
|
|
153
|
+
| `project create` | Create a new upload-backed project |
|
|
154
|
+
| `project list` | List projects |
|
|
155
|
+
| `project get` | Get project detail |
|
|
156
|
+
| `project update` | Update project metadata |
|
|
157
|
+
| `project delete` | Start project deletion |
|
|
158
|
+
| `project move` | Declare a project file-path move |
|
|
159
|
+
| `project upload` | Upload files into a project batch |
|
|
160
|
+
| `template create` | Create a reusable review template |
|
|
161
|
+
| `template list` | List review templates |
|
|
162
|
+
| `template get` | Get template detail |
|
|
163
|
+
| `review-set create` | Create a multi-file review set |
|
|
164
|
+
| `review-set list` | List review sets |
|
|
165
|
+
| `review-set get` | Get review set overview |
|
|
166
|
+
| `review-set update` | Update review set title or lifecycle state |
|
|
167
|
+
| `review-set export` | Export a review set using canonical schema=v2 |
|
|
168
|
+
| `review-set status` | Evaluate aggregate review-set policy status |
|
|
169
|
+
| `collection create` | Create a new collection |
|
|
170
|
+
| `collection add` | Add reviews to a collection |
|
|
171
|
+
| `collection get` | Get one collection with member reviews |
|
|
172
|
+
| `collection list` | List collections |
|
|
173
|
+
| `collection update` | Update collection metadata or archive state |
|
|
174
|
+
| `collection delete` | Archive a collection via the canonical PATCH surface |
|
|
172
175
|
|
|
173
176
|
### Auth & Configuration
|
|
174
177
|
|
|
@@ -194,7 +197,11 @@ server:
|
|
|
194
197
|
|
|
195
198
|
Set `TYPESCAPE_API_KEY` environment variable with your operator token.
|
|
196
199
|
|
|
197
|
-
Legacy top-level `guidelines` and `gci` command families are compatibility
|
|
200
|
+
Legacy top-level `guidelines` and `gci` command families are compatibility
|
|
201
|
+
history, not the canonical discovery surface. New automation should use the
|
|
202
|
+
`rules` command family directly. Explicit `export.v1` runtime requests are
|
|
203
|
+
retired; first-party exports default to `export.v2`, while
|
|
204
|
+
`response_matrix.v1` remains a bounded compatibility view.
|
|
198
205
|
|
|
199
206
|
## License
|
|
200
207
|
|