myte 0.0.15 → 0.0.16

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 +3 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -189,13 +189,15 @@ What it does:
189
189
  - fetches a project-scoped feedback snapshot from the API using your project key
190
190
  - defaults to open `Pending` feedback
191
191
  - writes one deterministic feedback snapshot under `MyteCommandCenter/data/feedback.yml`
192
- - includes readable PRD markdown inline when available
192
+ - keeps feedback metadata plus conversation turns in `feedback.yml`
193
+ - writes full PRD markdown/text into `MyteCommandCenter/PRD/feedback-sync/*.md` and stores a pointer in `feedback.yml`
193
194
  - fully replaces the aggregated feedback sync file so stale feedback does not accumulate locally
194
195
  - does not delete `MyteCommandCenter/data/missions/*.yml`
195
196
 
196
197
  Files written:
197
198
  - `MyteCommandCenter/data/project.yml`
198
199
  - `MyteCommandCenter/data/feedback.yml`
200
+ - `MyteCommandCenter/PRD/feedback-sync/*.md`
199
201
 
200
202
  Useful forms:
201
203
  - `npx myte feedback-sync --json`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myte",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
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.15"
19
+ "@mytegroupinc/myte-core": "0.0.16"
20
20
  }
21
21
  }