feedeas 0.1.0-alpha.14 → 0.1.0-alpha.15
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 +13 -2
- package/dist/cli/index.js +1022 -331
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -145,6 +145,15 @@ feedeas taste
|
|
|
145
145
|
# Generate fresh ideas from taste/taste.md + taste/memory.md
|
|
146
146
|
feedeas taste generate -n 3 --mode sequential --json
|
|
147
147
|
|
|
148
|
+
# Save reviewer feedback into taste/memory.md
|
|
149
|
+
feedeas taste feedback --decision accepted --title "Cinematic forest reel" --tags forest,cinematic
|
|
150
|
+
|
|
151
|
+
# Create pending taste suggestions from memory patterns
|
|
152
|
+
feedeas taste suggest --json
|
|
153
|
+
|
|
154
|
+
# Apply a suggestion to taste/taste.md
|
|
155
|
+
feedeas taste apply --suggestion sug_2026-01-01_123456
|
|
156
|
+
|
|
148
157
|
# Query memory history
|
|
149
158
|
feedeas taste memory query --tag podcast --limit 10
|
|
150
159
|
```
|
|
@@ -152,12 +161,14 @@ feedeas taste memory query --tag podcast --limit 10
|
|
|
152
161
|
Default files:
|
|
153
162
|
- `taste/taste.md` - Prompt blueprint (brand identity, focus areas, negatives, instructions)
|
|
154
163
|
- `taste/memory.md` - Structured `taste-memory` blocks used for freshness checks
|
|
164
|
+
- `taste/suggestions.md` - Pending/applied/rejected taste update proposals
|
|
155
165
|
|
|
156
166
|
CI/automation flow:
|
|
157
167
|
1. Prepare `GEMINI_API_KEY`.
|
|
158
168
|
2. Run `feedeas taste generate --taste-file taste/taste.md --memory-file taste/memory.md -n 1 --mode sequential --save --json`.
|
|
159
|
-
3.
|
|
160
|
-
4.
|
|
169
|
+
3. Append review outcomes with `feedeas taste feedback ...`.
|
|
170
|
+
4. Run `feedeas taste suggest` and review proposals.
|
|
171
|
+
5. Apply approved proposals using `feedeas taste apply --suggestion <id>`.
|
|
161
172
|
|
|
162
173
|
## Documentation
|
|
163
174
|
|