myte 0.0.44 → 0.0.46
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 +100 -97
- package/package.json +14 -14
package/README.md
CHANGED
|
@@ -25,19 +25,17 @@ No install:
|
|
|
25
25
|
|
|
26
26
|
- Node `18+`
|
|
27
27
|
- macOS, Linux, or Windows
|
|
28
|
-
- `MYTE_API_KEY=<project_api_key>` in your shell or workspace `.env`
|
|
29
|
-
- `MYTEAI_API_KEY=<inference_api_key>` only for `myte ai`
|
|
30
|
-
- `MYTEAI_API_KEY=<inference_api_key>` for `mytecody`
|
|
31
|
-
- `git` in `PATH` only for `query --with-diff`
|
|
32
|
-
- No runtime npm dependencies beyond the Myte packages themselves.
|
|
28
|
+
- `MYTE_API_KEY=<project_api_key>` in your shell or workspace `.env`
|
|
29
|
+
- `MYTEAI_API_KEY=<inference_api_key>` only for `myte ai`
|
|
30
|
+
- `MYTEAI_API_KEY=<inference_api_key>` for `mytecody`
|
|
31
|
+
- `git` in `PATH` only for `query --with-diff`
|
|
32
|
+
- No runtime npm dependencies beyond the Myte packages themselves.
|
|
33
33
|
|
|
34
34
|
The CLI searches for `.env` in the current folder and then up parent directories.
|
|
35
35
|
|
|
36
|
-
## Common Commands
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
- `npx myte config --json`
|
|
36
|
+
## Common Commands
|
|
37
|
+
|
|
38
|
+
- `npx myte config --json`
|
|
41
39
|
- `npx myte bootstrap`
|
|
42
40
|
- `npx myte sync-qaqc`
|
|
43
41
|
- `npx myte feedback-sync`
|
|
@@ -51,12 +49,12 @@ Live mutation commands require `--confirm-write --approval-artifact <path>` afte
|
|
|
51
49
|
- `npx myte feedback submit --file ./MyteCommandCenter/reviews/feedback/<id>-edit.yml`
|
|
52
50
|
- `npx myte feedback reviews --status open`
|
|
53
51
|
- `npx myte feedback revise --request-id <id> --file ./MyteCommandCenter/reviews/feedback/<id>-edit.yml`
|
|
54
|
-
- `npx myte feedback review --request-id <id> --action approve --reason "Looks correct"`
|
|
55
|
-
- `npx myte feedback review --request-ids "<id1,id2>" --action approve --reason "Batch approval"`
|
|
56
|
-
- `npx myte feedback move --feedback-id <id> --to-state in_progress --reason "Started"`
|
|
57
|
-
- `npx myte feedback move --feedback-ids "<id1,id2>" --to-state in_progress --reason "Batch move"`
|
|
58
|
-
- `npx myte feedback comment --feedback-id <id> --body-file ./updates/feedback-comment.md`
|
|
59
|
-
- `npx myte feedback undo --feedback-id <id> --event-id <event_id> --reason "Undo accidental move"`
|
|
52
|
+
- `npx myte feedback review --request-id <id> --action approve --reason "Looks correct"`
|
|
53
|
+
- `npx myte feedback review --request-ids "<id1,id2>" --action approve --reason "Batch approval"`
|
|
54
|
+
- `npx myte feedback move --feedback-id <id> --to-state in_progress --reason "Started"`
|
|
55
|
+
- `npx myte feedback move --feedback-ids "<id1,id2>" --to-state in_progress --reason "Batch move"`
|
|
56
|
+
- `npx myte feedback comment --feedback-id <id> --body-file ./updates/feedback-comment.md`
|
|
57
|
+
- `npx myte feedback undo --feedback-id <id> --event-id <event_id> --reason "Undo accidental move"`
|
|
60
58
|
- `npx myte feedback prd-versions --feedback-id <id>`
|
|
61
59
|
- `npx myte feedback prd-diff --feedback-id <id> --version-id <version_id> --compare-to <base_version_id>`
|
|
62
60
|
- `npx myte feedback apply --file ./MyteCommandCenter/reviews/feedback/<id>-edit.yml`
|
|
@@ -65,33 +63,42 @@ Live mutation commands require `--confirm-write --approval-artifact <path>` afte
|
|
|
65
63
|
- `npx myte query "Summarize the current branch changes" --with-diff`
|
|
66
64
|
- `npx myte create-prd ./drafts/auth-prd.md`
|
|
67
65
|
- `npx myte update-team "Backend deploy completed."`
|
|
68
|
-
- `npx myte update-owner --subject "QAQC progress" --body-file ./updates/owner.md`
|
|
69
|
-
- `npx myte update-client --subject "Weekly client update" --body-file ./updates/week-12.md`
|
|
70
|
-
- `npx mytecody doctor`
|
|
71
|
-
- `npx mytecody doctor --probe-gateway`
|
|
72
|
-
- `npx mytecody update --dry-run`
|
|
73
|
-
- `npx mytecody update`
|
|
66
|
+
- `npx myte update-owner --subject "QAQC progress" --body-file ./updates/owner.md`
|
|
67
|
+
- `npx myte update-client --subject "Weekly client update" --body-file ./updates/week-12.md`
|
|
68
|
+
- `npx mytecody doctor`
|
|
69
|
+
- `npx mytecody doctor --probe-gateway`
|
|
70
|
+
- `npx mytecody update --dry-run`
|
|
71
|
+
- `npx mytecody update`
|
|
74
72
|
|
|
75
73
|
## Behavior
|
|
76
74
|
|
|
77
75
|
- `bootstrap`, `sync-qaqc`, `feedback-sync`, and `suggestions sync` write project-scoped local context under `MyteCommandCenter` in the current workspace unless `--output-dir` is provided.
|
|
78
|
-
-
|
|
79
|
-
- `bootstrap` writes mission cards and mission suggestion thread state together; agents should run it before looking for mission or suggestion ids.
|
|
76
|
+
- `bootstrap` writes mission cards and mission suggestion thread state together; agents should run it before looking for mission or suggestion ids.
|
|
80
77
|
- `mission status` is active-state only (`todo`, `in_progress`, `done`). Use `mission archive` for project-key lifecycle archival; restore archived missions from the web archived-board view.
|
|
81
78
|
- `mission status` and `mission archive` refresh local bootstrap + mission-ops state by default after a successful mutation. Use `--no-sync` only when you intentionally want to skip the local refresh.
|
|
82
79
|
- `feedback status|edit|assign|archive` writes local review artifacts under `MyteCommandCenter/reviews/feedback`; `feedback submit|revise|reviews|review` routes proposed edits through the backend owner-review membrane.
|
|
83
80
|
- `feedback review --request-ids` sends one backend batch review request with grouped notifications; do not loop single-review calls for batch decisions.
|
|
84
|
-
- `feedback move|comment|undo|prd-versions|prd-diff|history` calls the project-key Feedback API while authorization, stale snapshot checks, allowed transitions, and history remain enforced by the backend. `feedback move --feedback-ids` sends one batch board move request.
|
|
85
|
-
- `feedback comment` creates text-only feedback-specific comments. Attachments remain web UI only for this project-key endpoint.
|
|
81
|
+
- `feedback move|comment|undo|prd-versions|prd-diff|history` calls the project-key Feedback API while authorization, stale snapshot checks, allowed transitions, and history remain enforced by the backend. `feedback move --feedback-ids` sends one batch board move request.
|
|
82
|
+
- `feedback comment` creates text-only feedback-specific comments. Attachments remain web UI only for this project-key endpoint.
|
|
86
83
|
- `feedback-sync` excludes archived Feedback from normal `MyteCommandCenter` state. Project-key API/CLI can archive authorized Feedback, but Feedback unarchive/restore is web UI only.
|
|
87
84
|
- `feedback validate|apply` remains available for validation and owner-direct apply paths.
|
|
88
85
|
- `query --with-diff` is stricter than the snapshot commands. It requires project repositories to be configured by the project owner or builder, and it requires at least one matching local project repo to be resolved for diff collection.
|
|
89
|
-
- If diff-scoped repo configuration is missing or no local project repo can be resolved, `query --with-diff` exits with an error instead of silently dropping diff context.
|
|
90
|
-
- Most markdown files are excluded from diff context by default so code and runtime configuration changes dominate the payload. Key instruction files such as `README.md` and `AGENTS.md` remain eligible.
|
|
91
|
-
|
|
92
|
-
##
|
|
93
|
-
|
|
94
|
-
|
|
86
|
+
- If diff-scoped repo configuration is missing or no local project repo can be resolved, `query --with-diff` exits with an error instead of silently dropping diff context.
|
|
87
|
+
- Most markdown files are excluded from diff context by default so code and runtime configuration changes dominate the payload. Key instruction files such as `README.md` and `AGENTS.md` remain eligible.
|
|
88
|
+
|
|
89
|
+
## Live Write Approval
|
|
90
|
+
|
|
91
|
+
All live project-key writes must be approved by the user before the CLI sends them to Myte.
|
|
92
|
+
|
|
93
|
+
- First create a local `.md`, `.yml`, `.yaml`, or `.json` approval artifact that lists the command, every target id, and the proposed change.
|
|
94
|
+
- Show the artifact path and full content or concise complete summary to the user.
|
|
95
|
+
- After explicit approval, rerun the write with `--confirm-write --approval-artifact <path>`.
|
|
96
|
+
- Batch writes must enumerate every feedback id, mission id, suggestion id, request id, or PRD item in the artifact. QAQC batches are capped by the API at 10 mission ids.
|
|
97
|
+
- The API also validates the approval envelope, payload hash, targets, and true batch count, so direct HTTP calls with only the API key are rejected.
|
|
98
|
+
|
|
99
|
+
## Agent Usage Contract
|
|
100
|
+
|
|
101
|
+
Codex, Claude, and other coding agents should use one project-scoped key per workspace:
|
|
95
102
|
|
|
96
103
|
```bash
|
|
97
104
|
MYTE_API_KEY=<project_api_key>
|
|
@@ -99,21 +106,17 @@ MYTE_API_KEY=<project_api_key>
|
|
|
99
106
|
|
|
100
107
|
The key resolves the project server-side. Agents should not pass `project_id` manually for normal CLI commands, and they should not call account-scoped web/JWT endpoints with this key.
|
|
101
108
|
|
|
102
|
-
Recommended agent flow:
|
|
103
|
-
|
|
104
|
-
1. Run `myte config --json` to confirm the project, API base, configured repos, and local workspace detection.
|
|
105
|
-
2. Run `myte bootstrap --json`, `myte feedback-sync --json`, or `myte sync-qaqc --json` to hydrate local context under `MyteCommandCenter`. Use `myte suggestions sync --json` only for narrow mission-review refreshes after bootstrap.
|
|
106
|
-
3. Use `myte query "<goal/evidence/ask>" --with-diff` when local code changes matter.
|
|
107
|
-
4.
|
|
108
|
-
5.
|
|
109
|
-
6.
|
|
110
|
-
7.
|
|
111
|
-
8. Use `myte
|
|
112
|
-
9. Use `myte
|
|
113
|
-
10. Use `myte feedback move` only for direct board movement that is intentionally audited, with a clear `--reason`; use `--feedback-ids` for batch moves or batch archive.
|
|
114
|
-
11. Use `myte suggestions create|revise|review` for mission review threads. Valid create `change_type` values are exactly `update` and `create`; revisions keep the existing thread type and must not include `change_type`.
|
|
115
|
-
12. Use `myte mission archive` for project-key mission lifecycle archival. Archive requires Project Owner or elevated delegate capability; restore is web-only from the archived missions board.
|
|
116
|
-
13. Use `myte update-team "<content>"` for project/team comments through `/api/project-assistant/project-comment`, and `myte feedback comment --feedback-id <id> --body-file ./comment.md` for feedback-specific implementation notes.
|
|
109
|
+
Recommended agent flow:
|
|
110
|
+
|
|
111
|
+
1. Run `myte config --json` to confirm the project, API base, configured repos, and local workspace detection.
|
|
112
|
+
2. Run `myte bootstrap --json`, `myte feedback-sync --json`, or `myte sync-qaqc --json` to hydrate local context under `MyteCommandCenter`. Use `myte suggestions sync --json` only for narrow mission-review refreshes after bootstrap.
|
|
113
|
+
3. Use `myte query "<goal/evidence/ask>" --with-diff` when local code changes matter.
|
|
114
|
+
4. Use `myte create-prd <file.md>` only after the PRD markdown has been reviewed by a human, then send it with `--confirm-write --approval-artifact <path>`. The file body is the PRD document; `--description` is only the short board/card summary.
|
|
115
|
+
5. Use `myte feedback status|edit|assign|archive` to create reviewable local artifacts, then `feedback submit` and `feedback review` for the owner-review membrane.
|
|
116
|
+
6. Use `myte feedback move` only for direct board movement that is intentionally audited, with a clear `--reason`; use `--feedback-ids` for batch moves or batch archive.
|
|
117
|
+
7. Use `myte suggestions create|revise|review` for mission review threads. Valid create `change_type` values are exactly `update` and `create`; revisions keep the existing thread type and must not include `change_type`.
|
|
118
|
+
8. Use `myte mission archive` for project-key mission lifecycle archival. Archive requires Project Owner or elevated delegate capability; restore is web-only from the archived missions board.
|
|
119
|
+
9. Use `myte update-team "<content>"` for project/team comments through `/api/project-assistant/project-comment`, and `myte feedback comment --feedback-id <id> --body-file ./comment.md` for feedback-specific implementation notes.
|
|
117
120
|
|
|
118
121
|
PRD document contract:
|
|
119
122
|
|
|
@@ -145,12 +148,12 @@ Preferred file shape:
|
|
|
145
148
|
Full PRD content goes here.
|
|
146
149
|
````
|
|
147
150
|
|
|
148
|
-
Feedback comments nuance:
|
|
149
|
-
|
|
150
|
-
- `myte feedback-sync` reads existing feedback comment turns and stores them in `MyteCommandCenter/data/feedback.yml`.
|
|
151
|
-
- The web product supports feedback-specific comment create/fetch through JWT-authenticated `/api/feedbacks/<feedback_id>/comments`.
|
|
152
|
-
- The project-key npm CLI supports `myte feedback comment --feedback-id <id> --body "..."` and `--body-file ./comment.md`.
|
|
153
|
-
- Project-key feedback comments are text-only in this slice and cap content at 500,000 characters. Use the web UI when attachments are required.
|
|
151
|
+
Feedback comments nuance:
|
|
152
|
+
|
|
153
|
+
- `myte feedback-sync` reads existing feedback comment turns and stores them in `MyteCommandCenter/data/feedback.yml`.
|
|
154
|
+
- The web product supports feedback-specific comment create/fetch through JWT-authenticated `/api/feedbacks/<feedback_id>/comments`.
|
|
155
|
+
- The project-key npm CLI supports `myte feedback comment --feedback-id <id> --body "..."` and `--body-file ./comment.md`.
|
|
156
|
+
- Project-key feedback comments are text-only in this slice and cap content at 500,000 characters. Use the web UI when attachments are required.
|
|
154
157
|
|
|
155
158
|
## Commands
|
|
156
159
|
|
|
@@ -161,36 +164,36 @@ Feedback comments nuance:
|
|
|
161
164
|
- `mission archive`: archive missions without hard delete
|
|
162
165
|
- `sync-qaqc`: refresh active mission QAQC context locally
|
|
163
166
|
- `feedback-sync`: refresh feedback and PRD context locally
|
|
164
|
-
- `feedback status|edit|assign|archive|submit|revise|reviews|review|move|comment|undo|prd-versions|prd-diff|validate|apply|history|get`: create reviewable feedback artifacts and operate the governed Feedback API
|
|
167
|
+
- `feedback status|edit|assign|archive|submit|revise|reviews|review|move|comment|undo|prd-versions|prd-diff|validate|apply|history|get`: create reviewable feedback artifacts and operate the governed Feedback API
|
|
165
168
|
- `suggestions sync|create|revise|review`: work with mission suggestion workflow state
|
|
166
169
|
- `query`: ask the project assistant, optionally with local diff context
|
|
167
|
-
- `ai`: use the Myte AI gateway
|
|
168
|
-
- `mytecody`: MyteCody team launcher installed by this package. It supports
|
|
169
|
-
`doctor`, `doctor --probe-gateway`, `update --dry-run`, and `update`.
|
|
170
|
-
On first coding run, it installs the branded MyteCody engine and signed
|
|
171
|
-
client assets from the Myte release manifest into a user-local Myte cache
|
|
172
|
-
after signature/hash checks. Coding execution requires those assets, a
|
|
173
|
-
reachable Myte AI Cody gateway, and `MYTEAI_API_KEY`. Normal coding runs use
|
|
174
|
-
the branded Codex harness with Myte context hardening; the experimental
|
|
175
|
-
controller is not the default product path.
|
|
176
|
-
- `mytecody doctor` reports both the signed MyteCody engine state and this npm
|
|
177
|
-
package version. `mytecody update` updates the engine only. Use
|
|
178
|
-
`npm install -g myte@latest` to update the launcher and the Myte API CLI
|
|
179
|
-
commands shipped by npm.
|
|
180
|
-
- `create-prd`: upload deterministic PRD markdown as the stored renderable PRD document; use `description` only as the short card summary
|
|
170
|
+
- `ai`: use the Myte AI gateway
|
|
171
|
+
- `mytecody`: MyteCody team launcher installed by this package. It supports
|
|
172
|
+
`doctor`, `doctor --probe-gateway`, `update --dry-run`, and `update`.
|
|
173
|
+
On first coding run, it installs the branded MyteCody engine and signed
|
|
174
|
+
client assets from the Myte release manifest into a user-local Myte cache
|
|
175
|
+
after signature/hash checks. Coding execution requires those assets, a
|
|
176
|
+
reachable Myte AI Cody gateway, and `MYTEAI_API_KEY`. Normal coding runs use
|
|
177
|
+
the branded Codex harness with Myte context hardening; the experimental
|
|
178
|
+
controller is not the default product path.
|
|
179
|
+
- `mytecody doctor` reports both the signed MyteCody engine state and this npm
|
|
180
|
+
package version. `mytecody update` updates the engine only. Use
|
|
181
|
+
`npm install -g myte@latest` to update the launcher and the Myte API CLI
|
|
182
|
+
commands shipped by npm.
|
|
183
|
+
- `create-prd`: upload deterministic PRD markdown as the stored renderable PRD document; use `description` only as the short card summary
|
|
181
184
|
- `update-team`, `update-owner`, `update-client`: send project updates through the project-key surface
|
|
182
185
|
|
|
183
186
|
## Notes
|
|
184
187
|
|
|
185
|
-
- The package ships the CLI only. Internal rollout notes, validation logs, and project-specific operating docs are not part of the public npm contract.
|
|
186
|
-
- The package does not bundle the large MyteCody engine binary or the async
|
|
187
|
-
Responses bridge implementation. The `mytecody` launcher installs or updates
|
|
188
|
-
signed engine/client assets through the Myte release manifest.
|
|
189
|
-
- `mytecody update` is intentionally engine-scoped. npm package updates use
|
|
190
|
-
`npm install -g myte@latest`.
|
|
191
|
-
- The public `myte` package is the supported entrypoint. The scoped `@mytegroupinc/myte-core` package is the implementation dependency used by the wrapper.
|
|
192
|
-
- See `THIRD_PARTY_NOTICES.md` and `TRADEMARKS.md` for Codex lineage and Myte
|
|
193
|
-
brand notices.
|
|
188
|
+
- The package ships the CLI only. Internal rollout notes, validation logs, and project-specific operating docs are not part of the public npm contract.
|
|
189
|
+
- The package does not bundle the large MyteCody engine binary or the async
|
|
190
|
+
Responses bridge implementation. The `mytecody` launcher installs or updates
|
|
191
|
+
signed engine/client assets through the Myte release manifest.
|
|
192
|
+
- `mytecody update` is intentionally engine-scoped. npm package updates use
|
|
193
|
+
`npm install -g myte@latest`.
|
|
194
|
+
- The public `myte` package is the supported entrypoint. The scoped `@mytegroupinc/myte-core` package is the implementation dependency used by the wrapper.
|
|
195
|
+
- See `THIRD_PARTY_NOTICES.md` and `TRADEMARKS.md` for Codex lineage and Myte
|
|
196
|
+
brand notices.
|
|
194
197
|
|
|
195
198
|
## Mission Action Map
|
|
196
199
|
|
|
@@ -226,10 +229,10 @@ After `bootstrap`, find ids locally:
|
|
|
226
229
|
| `feedback submit` | Sends a local proposal artifact to the backend as a review request. | Does not mutate live feedback before approval. |
|
|
227
230
|
| `feedback revise` | Resubmits the original submitter's request after `request_changes`. | Only valid for the original submitter and `needs_changes` requests. |
|
|
228
231
|
| `feedback reviews` | Lists review requests or fetches one request by `--request-id`. | Read-only; response includes backend permissions. |
|
|
229
|
-
| `feedback review` | Approves, rejects, requests changes, or cancels one review request, or a batch with `--request-ids`. | Backend restricts approval/review decisions to Project Owner or elevated delegate for Feedback scope; batch review uses one grouped notification path. |
|
|
230
|
-
| `feedback move` | Moves a card or batch of cards across allowed board states directly with an audit event. | `--feedback-ids` sends one batch request. Blocked with `pending_feedback_review` while an active linked review request exists; governed states such as archive/reject/deploy/freeze remain backend-authorized. Project-key unarchive is not supported. |
|
|
231
|
-
| `feedback comment` | Creates a text-only comment on one Feedback item. | Backend checks project-key access, owner/assigned permission, idempotency, and the 500,000-character content cap. Attachments remain web UI only. |
|
|
232
|
-
| `feedback undo` | Reverses an audited board event when there is no conflict. | Backend validates event ownership/project scope and conflict state. |
|
|
232
|
+
| `feedback review` | Approves, rejects, requests changes, or cancels one review request, or a batch with `--request-ids`. | Backend restricts approval/review decisions to Project Owner or elevated delegate for Feedback scope; batch review uses one grouped notification path. |
|
|
233
|
+
| `feedback move` | Moves a card or batch of cards across allowed board states directly with an audit event. | `--feedback-ids` sends one batch request. Blocked with `pending_feedback_review` while an active linked review request exists; governed states such as archive/reject/deploy/freeze remain backend-authorized. Project-key unarchive is not supported. |
|
|
234
|
+
| `feedback comment` | Creates a text-only comment on one Feedback item. | Backend checks project-key access, owner/assigned permission, idempotency, and the 500,000-character content cap. Attachments remain web UI only. |
|
|
235
|
+
| `feedback undo` | Reverses an audited board event when there is no conflict. | Backend validates event ownership/project scope and conflict state. |
|
|
233
236
|
| `feedback prd-versions` | Lists retained PRD baselines/revisions for a feedback item. | Read-only; old S3 objects are retained by reference. |
|
|
234
237
|
| `feedback prd-diff` | Fetches backend-generated text diff for PRD versions. | Read-only; backend controls version access. |
|
|
235
238
|
| `feedback history` | Lists audited feedback board/refinement events. | Read-only; backend checks project access. |
|
|
@@ -248,7 +251,7 @@ The harness creates five disposable `TEST` feedback items from markdown, verifie
|
|
|
248
251
|
|
|
249
252
|
## Direct Project API Surface
|
|
250
253
|
|
|
251
|
-
All routes use `Authorization: Bearer <MYTE_API_KEY>`. The CLI adds idempotency and client-session headers on mutation routes.
|
|
254
|
+
All routes use `Authorization: Bearer <MYTE_API_KEY>`. The CLI adds idempotency and client-session headers on mutation routes.
|
|
252
255
|
|
|
253
256
|
Read/sync routes:
|
|
254
257
|
|
|
@@ -263,32 +266,32 @@ Read/sync routes:
|
|
|
263
266
|
- `GET /api/project-assistant/feedback/<feedback_id>/events`
|
|
264
267
|
- `GET /api/project-assistant/feedback/<feedback_id>/prd/versions`
|
|
265
268
|
- `GET /api/project-assistant/feedback/<feedback_id>/prd/versions/<version_id>/diff`
|
|
266
|
-
- `GET /api/project-assistant/suggestions`
|
|
267
|
-
- `GET /api/project-assistant/run-qaqc/<batch_id>`
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
- `POST /api/project-assistant/run-qaqc`
|
|
269
|
+
- `GET /api/project-assistant/suggestions`
|
|
270
|
+
- `GET /api/project-assistant/run-qaqc/<batch_id>`
|
|
271
|
+
|
|
272
|
+
Mutation routes:
|
|
273
|
+
|
|
274
|
+
- `POST /api/project-assistant/query`
|
|
275
|
+
- `POST /api/project-assistant/run-qaqc`
|
|
274
276
|
- `POST /api/project-assistant/mission-status-update`
|
|
275
277
|
- `POST /api/project-assistant/mission-archive`
|
|
276
278
|
- `POST /api/project-assistant/project-comment`
|
|
277
279
|
- `POST /api/project-assistant/update-owner`
|
|
278
280
|
- `POST /api/project-assistant/client-update-drafts`
|
|
279
|
-
- `POST /api/project-assistant/create-prd`
|
|
280
|
-
- `POST /api/project-assistant/create-prds`
|
|
281
|
-
- `POST /api/project-assistant/feedback/<feedback_id>/refinement/
|
|
281
|
+
- `POST /api/project-assistant/create-prd`
|
|
282
|
+
- `POST /api/project-assistant/create-prds`
|
|
283
|
+
- `POST /api/project-assistant/feedback/<feedback_id>/refinement/validate`
|
|
284
|
+
- `POST /api/project-assistant/feedback/<feedback_id>/refinement/requests`
|
|
282
285
|
- `POST /api/project-assistant/feedback-review-requests/<request_id>/revise`
|
|
283
286
|
- `POST /api/project-assistant/feedback/<feedback_id>/refinement/apply`
|
|
284
287
|
- `POST /api/project-assistant/feedback-review-requests/<request_id>/review`
|
|
285
288
|
- `POST /api/project-assistant/feedback-review-requests/batch-review`
|
|
286
289
|
- `POST /api/project-assistant/feedback-review-requests/<request_id>/request-changes`
|
|
287
290
|
- `POST /api/project-assistant/feedback-review-requests/<request_id>/cancel`
|
|
288
|
-
- `POST /api/project-assistant/feedback/<feedback_id>/board-move`
|
|
289
|
-
- `POST /api/project-assistant/feedback/batch-board-move`
|
|
290
|
-
- `POST /api/project-assistant/feedback/<feedback_id>/comments`
|
|
291
|
-
- `POST /api/project-assistant/feedback/<feedback_id>/events/<event_id>/undo`
|
|
291
|
+
- `POST /api/project-assistant/feedback/<feedback_id>/board-move`
|
|
292
|
+
- `POST /api/project-assistant/feedback/batch-board-move`
|
|
293
|
+
- `POST /api/project-assistant/feedback/<feedback_id>/comments`
|
|
294
|
+
- `POST /api/project-assistant/feedback/<feedback_id>/events/<event_id>/undo`
|
|
292
295
|
- `POST /api/project-assistant/suggestions`
|
|
293
296
|
- `POST /api/project-assistant/suggestions/revise`
|
|
294
297
|
- `POST /api/project-assistant/suggestions/review`
|
package/package.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "myte",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.46",
|
|
4
4
|
"description": "Myte developer CLI.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"files": [
|
|
8
|
-
"README.md",
|
|
9
|
-
"THIRD_PARTY_NOTICES.md",
|
|
10
|
-
"TRADEMARKS.md",
|
|
11
|
-
"bin",
|
|
12
|
-
"package.json"
|
|
7
|
+
"files": [
|
|
8
|
+
"README.md",
|
|
9
|
+
"THIRD_PARTY_NOTICES.md",
|
|
10
|
+
"TRADEMARKS.md",
|
|
11
|
+
"bin",
|
|
12
|
+
"package.json"
|
|
13
13
|
],
|
|
14
|
-
"bin": {
|
|
15
|
-
"myte": "bin/myte.js",
|
|
16
|
-
"mytecody": "bin/mytecody.js"
|
|
17
|
-
},
|
|
14
|
+
"bin": {
|
|
15
|
+
"myte": "bin/myte.js",
|
|
16
|
+
"mytecody": "bin/mytecody.js"
|
|
17
|
+
},
|
|
18
18
|
"engines": {
|
|
19
19
|
"node": ">=18"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@mytegroupinc/myte-core": "0.0.
|
|
23
|
-
}
|
|
24
|
-
}
|
|
22
|
+
"@mytegroupinc/myte-core": "0.0.46"
|
|
23
|
+
}
|
|
24
|
+
}
|