myte 0.0.15 → 0.0.17
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 +5 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -88,6 +88,8 @@ Run this first when onboarding on a new machine:
|
|
|
88
88
|
|
|
89
89
|
Use `myte ai` as the thin inference gateway client. The npm package does not ship models or backend internals; it sends your request to `api.myte.ai` with `MYTEAI_API_KEY`.
|
|
90
90
|
|
|
91
|
+
`--json-response` asks for strict JSON and now sends both `myte_json_response: true` and the OpenAI-compatible `response_format: { type: "json_object" }` shape. On the public developer API, that strict-JSON path also defaults to `medium` reasoning unless the caller explicitly overrides reasoning.
|
|
92
|
+
|
|
91
93
|
Examples:
|
|
92
94
|
|
|
93
95
|
- `npx myte ai "Explain what this repository does"`
|
|
@@ -189,13 +191,15 @@ What it does:
|
|
|
189
191
|
- fetches a project-scoped feedback snapshot from the API using your project key
|
|
190
192
|
- defaults to open `Pending` feedback
|
|
191
193
|
- writes one deterministic feedback snapshot under `MyteCommandCenter/data/feedback.yml`
|
|
192
|
-
-
|
|
194
|
+
- keeps feedback metadata plus conversation turns in `feedback.yml`
|
|
195
|
+
- writes full PRD markdown/text into `MyteCommandCenter/PRD/feedback-sync/*.md` and stores a pointer in `feedback.yml`
|
|
193
196
|
- fully replaces the aggregated feedback sync file so stale feedback does not accumulate locally
|
|
194
197
|
- does not delete `MyteCommandCenter/data/missions/*.yml`
|
|
195
198
|
|
|
196
199
|
Files written:
|
|
197
200
|
- `MyteCommandCenter/data/project.yml`
|
|
198
201
|
- `MyteCommandCenter/data/feedback.yml`
|
|
202
|
+
- `MyteCommandCenter/PRD/feedback-sync/*.md`
|
|
199
203
|
|
|
200
204
|
Useful forms:
|
|
201
205
|
- `npx myte feedback-sync --json`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "myte",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17",
|
|
4
4
|
"description": "Myte developer CLI (Project Assistant + Myte AI gateway).",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"license": "MIT",
|
|
@@ -16,6 +16,6 @@
|
|
|
16
16
|
"node": ">=18"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@mytegroupinc/myte-core": "0.0.
|
|
19
|
+
"@mytegroupinc/myte-core": "0.0.17"
|
|
20
20
|
}
|
|
21
21
|
}
|