@mytegroupinc/myte-core 0.0.45 → 0.0.47
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 +72 -48
- package/THIRD_PARTY_NOTICES.md +21 -21
- package/TRADEMARKS.md +10 -10
- package/cli.js +505 -570
- package/lib/mytecody-release-public-key.pem +11 -11
- package/lib/mytecody-splash.js +251 -251
- package/mytecody-cli.js +2025 -2025
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,11 +18,13 @@ This package exists so the public wrapper can stay small and versioned cleanly.
|
|
|
18
18
|
- `git` only when using `query --with-diff`
|
|
19
19
|
- No runtime npm dependencies. The CLI uses Node 18+ built-ins for env loading, argument parsing, HTTP, and local context serialization.
|
|
20
20
|
|
|
21
|
-
## Behavior Summary
|
|
22
|
-
|
|
23
|
-
- Snapshot-style commands such as `bootstrap`, `sync-qaqc`, `feedback-sync`, and `suggestions sync` write local `MyteCommandCenter` data.
|
|
24
|
-
-
|
|
25
|
-
- `feedback
|
|
21
|
+
## Behavior Summary
|
|
22
|
+
|
|
23
|
+
- Snapshot-style commands such as `bootstrap`, `sync-qaqc`, `feedback-sync`, and `suggestions sync` write local `MyteCommandCenter` data.
|
|
24
|
+
- `feedback status|edit|assign|archive|refine` writes reviewable local YAML artifacts.
|
|
25
|
+
- `feedback submit|revise|comment` are live writes that require `--confirm-write --approval-artifact <path>`.
|
|
26
|
+
- `feedback review|move|undo|apply` are governed writes with backend permission checks but no approval artifact flags.
|
|
27
|
+
- `feedback-sync|get|history|reviews|prd-versions|prd-diff|validate` are read/sync/validation commands with no approval artifact flags.
|
|
26
28
|
- `feedback move|comment|undo|prd-versions|prd-diff|history` calls the project-key Feedback API while leaving lifecycle rules and permissions server-side. `feedback move --feedback-ids` sends one batch move request.
|
|
27
29
|
- `feedback validate|apply` remains available for validation and owner-direct apply paths; live authorization, stale checks, and history stay server-side.
|
|
28
30
|
- `query --with-diff` requires project repos to be configured for diff collection and fails fast when no matching local project repo can be resolved.
|
|
@@ -35,13 +37,36 @@ This package exists so the public wrapper can stay small and versioned cleanly.
|
|
|
35
37
|
gateway, and `MYTEAI_API_KEY`. Normal coding runs use the branded Codex
|
|
36
38
|
harness with Myte context hardening; the experimental controller is not the
|
|
37
39
|
default product path.
|
|
38
|
-
- `mytecody doctor` reports both the signed MyteCody engine state and this npm
|
|
39
|
-
package version. `mytecody update` updates the engine only. Use
|
|
40
|
-
`npm install -g myte@latest` to update the launcher and the Myte API CLI
|
|
41
|
-
commands shipped by npm.
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
40
|
+
- `mytecody doctor` reports both the signed MyteCody engine state and this npm
|
|
41
|
+
package version. `mytecody update` updates the engine only. Use
|
|
42
|
+
`npm install -g myte@latest` to update the launcher and the Myte API CLI
|
|
43
|
+
commands shipped by npm.
|
|
44
|
+
|
|
45
|
+
## Live Write Approval
|
|
46
|
+
|
|
47
|
+
Only selected project-key writes require a server-validated approval envelope. The CLI adds `write_approval` metadata only for those commands after the caller supplies `--confirm-write --approval-artifact <path>`.
|
|
48
|
+
|
|
49
|
+
| Category | Commands | Artifact |
|
|
50
|
+
| --- | --- | --- |
|
|
51
|
+
| Required | `create-prd`, `update-team`, `update-owner`, `update-client`, `feedback submit`, `feedback revise`, `feedback comment`, `suggestions create`, `suggestions revise` | Yes |
|
|
52
|
+
| Not required | `run-qaqc`, `mission status`, `mission archive`, `suggestions review`, `feedback review`, `feedback move`, `feedback undo`, `feedback apply` | No |
|
|
53
|
+
| Never required | `config`, `query`, `bootstrap`, `sync-qaqc`, `feedback-sync`, `suggestions sync`, `feedback get/history/reviews/prd-versions/prd-diff/validate`, local feedback draft commands | No |
|
|
54
|
+
|
|
55
|
+
- The approval artifact must be a local `.md`, `.markdown`, `.yml`, `.yaml`, or `.json` file shown to and approved by the user.
|
|
56
|
+
- The artifact must list the exact operation, proposed change, and every target id or PRD item.
|
|
57
|
+
- Batch artifacts for required actions must enumerate every item and the CLI sends the matching batch count to the API.
|
|
58
|
+
- For required actions, the API validates the payload hash after stripping transport metadata, so direct HTTP writes with only the API key do not bypass approval.
|
|
59
|
+
- For actions marked `Not required`, the backend still enforces project-key authentication, idempotency, owner/delegate capability rules, stale-state guards, validation, rate limits, and audit history.
|
|
60
|
+
- In plain language, the artifact is the human-reviewed record of the exact write the agent is about to send. It is not a permission grant and it does not bypass project owner/delegate checks, idempotency, stale-state guards, validation, or audit.
|
|
61
|
+
- Minimum artifact contents are the exact command, every target id or PRD item, a complete proposed-change summary, a reason, and `batch_count` when one command sends multiple items.
|
|
62
|
+
- Mission edit/create batches use `suggestions create` or `suggestions revise`; list every item, including `change_type`, `mission_id` for updates, proposed title/description for creates, and `suggestion_id` plus expected revision for revisions.
|
|
63
|
+
- PRD batches use one `create-prd fileA.md fileB.md ...`; list each PRD file/title/client ref and make `batch_count` match the number of PRDs.
|
|
64
|
+
- Feedback submit/revise/comment artifacts are usually the same YAML or markdown file being submitted. For inline text or stdin, use a separate approval memo with the feedback id or request id and exact content.
|
|
65
|
+
- Team, owner, and client update artifacts should name the audience and include the exact message body or a complete summary. Client updates should include target contact ids when used.
|
|
66
|
+
- `feedback review --request-ids`, `feedback move --feedback-ids`, `mission status --mission-ids`, `mission archive --mission-ids`, and `run-qaqc --mission-ids` are batched governed writes, but they are marked `Not required` and should not receive approval artifact flags.
|
|
67
|
+
- The package does not bundle the large MyteCody engine binary or the async
|
|
68
|
+
Responses bridge implementation. See `THIRD_PARTY_NOTICES.md` and
|
|
69
|
+
`TRADEMARKS.md` for Codex lineage and Myte brand notices.
|
|
45
70
|
|
|
46
71
|
## Agent Usage Contract
|
|
47
72
|
|
|
@@ -49,24 +74,20 @@ Coding agents should treat `MYTE_API_KEY` as a project-scoped Project Assistant
|
|
|
49
74
|
|
|
50
75
|
- Load it from the workspace `.env` or environment. `MYTE_PROJECT_API_KEY` is accepted as a compatibility fallback.
|
|
51
76
|
- Call `myte config --json` first when project identity or local repo detection is uncertain.
|
|
52
|
-
-
|
|
53
|
-
- After approval, rerun the mutation with `--confirm-write --approval-artifact <path>`. Batch artifacts must enumerate every feedback id, mission id, suggestion id, request id, or PRD item.
|
|
54
|
-
- Direct HTTP calls with `MYTE_API_KEY` cannot bypass this gate on live project-content mutations. The API returns `428` with agent instructions when approval metadata is missing or mismatched.
|
|
55
|
-
- Read/sync/query/validate commands, `--print-context`, and `--dry-run` do not require write approval.
|
|
56
|
-
- Hydrate mission context with `bootstrap` first instead of scraping the web UI. `bootstrap` writes mission cards and mission suggestion thread state.
|
|
77
|
+
- Hydrate mission context with `bootstrap` first instead of scraping the web UI. `bootstrap` writes mission cards, mission suggestion thread state, and `MyteCommandCenter/AgentsMyteAPI.md`.
|
|
57
78
|
- Use `suggestions sync` only when you need to refresh mission review-thread state without refreshing the full board.
|
|
58
79
|
- Use `query --with-diff` for project-scoped code review, planning, and implementation questions.
|
|
59
|
-
- Use `create-prd` only with reviewed markdown files
|
|
60
|
-
- Use `feedback status|edit|assign|archive` for reviewable local artifacts
|
|
80
|
+
- Use `create-prd` only with reviewed markdown files and `--confirm-write --approval-artifact <path>`. The markdown file body is the PRD document; `description` is only the short board/card summary.
|
|
81
|
+
- Use `feedback status|edit|assign|archive|refine` for reviewable local artifacts. `feedback submit` and `feedback revise` require an approval artifact; `feedback review` does not because the backend owner/delegate decision is the approval control.
|
|
61
82
|
- Use `feedback review --request-ids` for batch owner/delegate decisions; it sends one grouped backend batch, not one request per item.
|
|
62
|
-
- Use `suggestions create` for both existing-mission edits and new-mission proposals
|
|
63
|
-
- Use `suggestions revise` only against an existing `suggestion_id
|
|
64
|
-
- Use `suggestions review` for owner/elevated mission-review decisions: `approve`, `request_changes`, or `reject`.
|
|
83
|
+
- Use `suggestions create` for both existing-mission edits and new-mission proposals, with `--confirm-write --approval-artifact <path>`. The only valid `change_type` values are `update` and `create`.
|
|
84
|
+
- Use `suggestions revise` only against an existing `suggestion_id`, with `--confirm-write --approval-artifact <path>`; do not send `change_type` on revisions because the backend keeps the thread's original type.
|
|
85
|
+
- Use `suggestions review` for owner/elevated mission-review decisions: `approve`, `request_changes`, or `reject`. No approval artifact is required for review decisions.
|
|
65
86
|
- Use `mission archive` for project-key lifecycle archival. Do not send `Archived` through `mission status`; restore archived missions from the web archived-board view.
|
|
66
87
|
- Use `feedback move` only when a direct audited state move is intended and include a concrete `--reason`. Use `--feedback-ids` for batch active-state moves or authorized batch archive.
|
|
67
|
-
- Use `feedback comment --feedback-id <id> --body-file ./comment.md` for text-only feedback-specific implementation notes. Attachments remain web UI only for this project-key endpoint.
|
|
88
|
+
- Use `feedback comment --feedback-id <id> --body-file ./comment.md --confirm-write --approval-artifact ./comment.md` for text-only feedback-specific implementation notes. Attachments remain web UI only for this project-key endpoint.
|
|
68
89
|
- Do not use the project-key API/CLI to unarchive Feedback. Normal `feedback-sync` excludes archived Feedback; unarchive from the web archived Feedback view.
|
|
69
|
-
- Use `update-team
|
|
90
|
+
- Use `update-team --confirm-write --approval-artifact <path>` when an agent needs to leave a project-level implementation note or verification comment.
|
|
70
91
|
|
|
71
92
|
Do not use `MYTE_API_KEY` against account/JWT web endpoints. The direct project-key surface is `/api/project-assistant/*`.
|
|
72
93
|
|
|
@@ -87,7 +108,7 @@ Feedback comment support:
|
|
|
87
108
|
|
|
88
109
|
- `feedback-sync` includes existing feedback comment turns in local context.
|
|
89
110
|
- Feedback-specific comment creation exists in the web backend at `/api/feedbacks/<feedback_id>/comments`, protected by JWT/project assignment.
|
|
90
|
-
- Project-key comment creation is available through `myte feedback comment --feedback-id <id> --body "..."` or `--body-file ./comment.md`.
|
|
111
|
+
- Project-key comment creation is available through `myte feedback comment --feedback-id <id> --body "..." --confirm-write --approval-artifact ./comment.md` or `--body-file ./comment.md --confirm-write --approval-artifact ./comment.md`.
|
|
91
112
|
- The project-key feedback comment endpoint is text-only in this slice and caps content at 500,000 characters. Use the web UI when comment attachments are required.
|
|
92
113
|
|
|
93
114
|
## Mission Action Map
|
|
@@ -96,12 +117,12 @@ Feedback comment support:
|
|
|
96
117
|
| --- | --- | --- |
|
|
97
118
|
| Sync mission cards and review threads | `myte bootstrap --json` | Refreshes `MyteCommandCenter/data/missions/*.yml`, project structure, and `MyteCommandCenter/data/mission-ops.yml`. |
|
|
98
119
|
| Sync only mission review threads | `myte suggestions sync --json` | Refreshes `MyteCommandCenter/data/mission-ops.yml` while preserving local workspace drafts. |
|
|
99
|
-
| Suggest edit to existing mission | `myte suggestions create` with `change_type: update` and `mission_id` | Creates or appends to an active review thread; live mission is unchanged until approval. |
|
|
100
|
-
| Suggest new mission | `myte suggestions create` with `change_type: create` | Requires `change_set.title` and `change_set.description`; creates a review thread only; the mission card is created only after approval. |
|
|
101
|
-
| Revise a suggestion | `myte suggestions revise` with `suggestion_id` | Adds another revision to the same thread. Do not include `change_type`. |
|
|
102
|
-
| Review a suggestion | `myte suggestions review` with `review_action: approve|request_changes|reject` | Project Owner or elevated mission-review delegate required. Approval mutates/creates the mission once; reject archives the thread only; request_changes keeps it actionable. |
|
|
103
|
-
| Update mission status | `myte mission status --mission-ids "M001" --status todo|in_progress|done` | Project-key surface updates canonical mission status for active cards
|
|
104
|
-
| Archive mission | `myte mission archive --mission-ids "M001[,M002]" --reason "..."` | Project Owner or elevated delegate required. Sets `Archived`, removes cards from normal bootstrap/board state, writes mission activity, and refreshes local bootstrap + mission-ops by default. |
|
|
120
|
+
| Suggest edit to existing mission | `myte suggestions create --file ./create.yml --confirm-write --approval-artifact ./create.yml` with `change_type: update` and `mission_id` | Creates or appends to an active review thread; live mission is unchanged until approval. |
|
|
121
|
+
| Suggest new mission | `myte suggestions create --file ./create.yml --confirm-write --approval-artifact ./create.yml` with `change_type: create` | Requires `change_set.title` and `change_set.description`; creates a review thread only; the mission card is created only after approval. |
|
|
122
|
+
| Revise a suggestion | `myte suggestions revise --file ./revise.yml --confirm-write --approval-artifact ./revise.yml` with `suggestion_id` | Adds another revision to the same thread. Do not include `change_type`. |
|
|
123
|
+
| Review a suggestion | `myte suggestions review` with `review_action: approve|request_changes|reject` | Project Owner or elevated mission-review delegate required; no approval artifact required. Approval mutates/creates the mission once; reject archives the thread only; request_changes keeps it actionable. |
|
|
124
|
+
| Update mission status | `myte mission status --mission-ids "M001" --status todo|in_progress|done` | Project-key surface updates canonical mission status for active cards; no approval artifact required; refreshes local bootstrap + mission-ops by default. |
|
|
125
|
+
| Archive mission | `myte mission archive --mission-ids "M001[,M002]" --reason "..."` | Project Owner or elevated delegate required; no approval artifact required. Sets `Archived`, removes cards from normal bootstrap/board state, writes mission activity, and refreshes local bootstrap + mission-ops by default. |
|
|
105
126
|
|
|
106
127
|
Create payloads:
|
|
107
128
|
|
|
@@ -167,18 +188,18 @@ Agent rule: never guess `suggestion_id`. If `mission-ops.yml` is missing or stal
|
|
|
167
188
|
| `feedback edit` / `feedback refine` | Creates a local YAML proposal for title, description/body, priority, due date, tags, or notes. | Content changes go through owner-review membrane. |
|
|
168
189
|
| `feedback assign` | Creates a local YAML proposal to change assignee. | Goes through review unless applied through owner-direct path. |
|
|
169
190
|
| `feedback archive` | Creates a local YAML proposal to archive. | Archive is governed by backend owner/delegate capability. |
|
|
170
|
-
| `feedback submit` | Sends a local proposal artifact to the backend as a review request. |
|
|
171
|
-
| `feedback revise` | Resubmits the original submitter's request after `request_changes`. |
|
|
191
|
+
| `feedback submit` | Sends a local proposal artifact to the backend as a review request. | Requires `--confirm-write --approval-artifact <path>`; does not mutate live feedback before approval. |
|
|
192
|
+
| `feedback revise` | Resubmits the original submitter's request after `request_changes`. | Requires `--confirm-write --approval-artifact <path>`; only valid for the original submitter and `needs_changes` requests. |
|
|
172
193
|
| `feedback reviews` | Lists review requests or fetches one request by `--request-id`. | Read-only; response includes backend permissions. |
|
|
173
|
-
| `feedback review` | Approves, rejects, requests changes, or cancels one review request, or a batch with `--request-ids`. |
|
|
174
|
-
| `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. |
|
|
175
|
-
| `feedback comment` | Creates a text-only comment on one Feedback item. |
|
|
176
|
-
| `feedback undo` | Reverses an audited board event when there is no conflict. |
|
|
194
|
+
| `feedback review` | Approves, rejects, requests changes, or cancels one review request, or a batch with `--request-ids`. | No approval artifact required; backend restricts approval/review decisions to Project Owner or elevated delegate for Feedback scope; batch review uses one grouped notification path. |
|
|
195
|
+
| `feedback move` | Moves a card or batch of cards across allowed board states directly with an audit event. | No approval artifact required. `--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. |
|
|
196
|
+
| `feedback comment` | Creates a text-only comment on one Feedback item. | Requires `--confirm-write --approval-artifact <path>`; backend checks project-key access, owner/assigned permission, idempotency, and the 500,000-character content cap. Attachments remain web UI only. |
|
|
197
|
+
| `feedback undo` | Reverses an audited board event when there is no conflict. | No approval artifact required; backend validates event ownership/project scope and conflict state. |
|
|
177
198
|
| `feedback prd-versions` | Lists retained PRD baselines/revisions for a feedback item. | Read-only; old S3 objects are retained by reference. |
|
|
178
199
|
| `feedback prd-diff` | Fetches backend-generated text diff for PRD versions. | Read-only; backend controls version access. |
|
|
179
200
|
| `feedback history` | Lists audited feedback board/refinement events. | Read-only; backend checks project access. |
|
|
180
201
|
| `feedback validate` | Sends an artifact to backend validation without mutation. | Useful before submit or owner-direct apply. |
|
|
181
|
-
| `feedback apply` | Applies an artifact through the owner-direct/emergency path. |
|
|
202
|
+
| `feedback apply` | Applies an artifact through the owner-direct/emergency path. | No approval artifact required; not the normal collaborator flow; normal flow is `submit` -> `review`. |
|
|
182
203
|
|
|
183
204
|
Canonical feedback lifecycle states are `frozen`, `todo`, `in_progress`, `in_review`, `completed`, `deployed`, `rejected`, and `archived`.
|
|
184
205
|
|
|
@@ -190,13 +211,16 @@ node ./scripts/feedback-live-full-harness.js --confirm-live --base-url https://a
|
|
|
190
211
|
|
|
191
212
|
The harness creates five disposable `TEST` feedback items from markdown, verifies batch review and batch board movement, batch archives the disposable items, verifies normal `feedback-sync` excludes archived items, and verifies the project-key surface does not expose Feedback unarchive/restore.
|
|
192
213
|
|
|
193
|
-
## Direct Project API Surface
|
|
194
|
-
|
|
195
|
-
All routes use `Authorization: Bearer <MYTE_API_KEY>`. The CLI adds idempotency and client-session headers on mutation routes.
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
214
|
+
## Direct Project API Surface
|
|
215
|
+
|
|
216
|
+
All routes use `Authorization: Bearer <MYTE_API_KEY>`. The CLI adds idempotency and client-session headers on mutation routes.
|
|
217
|
+
|
|
218
|
+
`myte ai` is separate from this project-scoped surface. It uses `MYTEAI_API_KEY` and calls `POST https://api.myte.ai/v1/chat/completions`, or `${MYTEAI_API_BASE}/v1/chat/completions` when that base is configured.
|
|
219
|
+
|
|
220
|
+
Read/sync routes:
|
|
221
|
+
|
|
222
|
+
- `GET /api/project-assistant/query/<job_id>`
|
|
223
|
+
- `GET /api/project-assistant/config`
|
|
200
224
|
- `GET /api/project-assistant/bootstrap`
|
|
201
225
|
- `GET /api/project-assistant/qaqc-sync`
|
|
202
226
|
- `GET /api/project-assistant/feedback-sync`
|
|
@@ -209,11 +233,10 @@ Read/sync routes:
|
|
|
209
233
|
- `GET /api/project-assistant/feedback/<feedback_id>/prd/versions/<version_id>/diff`
|
|
210
234
|
- `GET /api/project-assistant/suggestions`
|
|
211
235
|
- `GET /api/project-assistant/run-qaqc/<batch_id>`
|
|
212
|
-
- `POST /api/project-assistant/query`
|
|
213
|
-
- `POST /api/project-assistant/feedback/<feedback_id>/refinement/validate`
|
|
214
236
|
|
|
215
|
-
|
|
237
|
+
Mutation routes:
|
|
216
238
|
|
|
239
|
+
- `POST /api/project-assistant/query`
|
|
217
240
|
- `POST /api/project-assistant/run-qaqc`
|
|
218
241
|
- `POST /api/project-assistant/mission-status-update`
|
|
219
242
|
- `POST /api/project-assistant/mission-archive`
|
|
@@ -222,6 +245,7 @@ Live project-content mutation routes:
|
|
|
222
245
|
- `POST /api/project-assistant/client-update-drafts`
|
|
223
246
|
- `POST /api/project-assistant/create-prd`
|
|
224
247
|
- `POST /api/project-assistant/create-prds`
|
|
248
|
+
- `POST /api/project-assistant/feedback/<feedback_id>/refinement/validate`
|
|
225
249
|
- `POST /api/project-assistant/feedback/<feedback_id>/refinement/requests`
|
|
226
250
|
- `POST /api/project-assistant/feedback-review-requests/<request_id>/revise`
|
|
227
251
|
- `POST /api/project-assistant/feedback/<feedback_id>/refinement/apply`
|
package/THIRD_PARTY_NOTICES.md
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
# Third-Party Notices
|
|
2
|
-
|
|
3
|
-
This package includes the Myte CLI launcher and MyteCody distribution client.
|
|
4
|
-
|
|
5
|
-
The branded MyteCody engine installed by the launcher is derived from the
|
|
6
|
-
OpenAI Codex open-source project. OpenAI Codex is licensed under the
|
|
7
|
-
Apache License, Version 2.0.
|
|
8
|
-
|
|
9
|
-
Source lineage tracked for this slice:
|
|
10
|
-
|
|
11
|
-
- Project: OpenAI Codex
|
|
12
|
-
- Version baseline: `0.139.0`
|
|
13
|
-
- License: Apache-2.0
|
|
14
|
-
- Upstream: https://github.com/openai/codex
|
|
15
|
-
|
|
16
|
-
The MyteCody engine and signed client assets are distributed separately from
|
|
17
|
-
this npm package through a Myte release manifest. This package verifies release
|
|
18
|
-
artifacts before installing them into the user's Myte-owned local cache.
|
|
19
|
-
|
|
20
|
-
Myte names, marks, logos, terminal branding, and product design are not part of
|
|
21
|
-
the OpenAI Codex project and remain Myte-owned brand assets.
|
|
1
|
+
# Third-Party Notices
|
|
2
|
+
|
|
3
|
+
This package includes the Myte CLI launcher and MyteCody distribution client.
|
|
4
|
+
|
|
5
|
+
The branded MyteCody engine installed by the launcher is derived from the
|
|
6
|
+
OpenAI Codex open-source project. OpenAI Codex is licensed under the
|
|
7
|
+
Apache License, Version 2.0.
|
|
8
|
+
|
|
9
|
+
Source lineage tracked for this slice:
|
|
10
|
+
|
|
11
|
+
- Project: OpenAI Codex
|
|
12
|
+
- Version baseline: `0.139.0`
|
|
13
|
+
- License: Apache-2.0
|
|
14
|
+
- Upstream: https://github.com/openai/codex
|
|
15
|
+
|
|
16
|
+
The MyteCody engine and signed client assets are distributed separately from
|
|
17
|
+
this npm package through a Myte release manifest. This package verifies release
|
|
18
|
+
artifacts before installing them into the user's Myte-owned local cache.
|
|
19
|
+
|
|
20
|
+
Myte names, marks, logos, terminal branding, and product design are not part of
|
|
21
|
+
the OpenAI Codex project and remain Myte-owned brand assets.
|
package/TRADEMARKS.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Trademarks
|
|
2
|
-
|
|
3
|
-
Myte, Myte AI, MyteCody, "MYTE CODY - Your Tech Your Way", logo assets, terminal
|
|
4
|
-
animation assets, and related product branding are Myte-owned marks and brand
|
|
5
|
-
assets.
|
|
6
|
-
|
|
7
|
-
OpenAI and Codex are trademarks or project names of their respective owners.
|
|
8
|
-
MyteCody uses a Codex-derived open-source engine under the applicable open
|
|
9
|
-
source license, but MyteCody is a Myte product surface and is not presented as
|
|
10
|
-
an official OpenAI product.
|
|
1
|
+
# Trademarks
|
|
2
|
+
|
|
3
|
+
Myte, Myte AI, MyteCody, "MYTE CODY - Your Tech Your Way", logo assets, terminal
|
|
4
|
+
animation assets, and related product branding are Myte-owned marks and brand
|
|
5
|
+
assets.
|
|
6
|
+
|
|
7
|
+
OpenAI and Codex are trademarks or project names of their respective owners.
|
|
8
|
+
MyteCody uses a Codex-derived open-source engine under the applicable open
|
|
9
|
+
source license, but MyteCody is a Myte product surface and is not presented as
|
|
10
|
+
an official OpenAI product.
|