@daemux/store-automator 0.10.60 → 0.10.61

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.
@@ -5,14 +5,14 @@
5
5
  },
6
6
  "metadata": {
7
7
  "description": "App Store & Google Play automation for Flutter apps",
8
- "version": "0.10.60"
8
+ "version": "0.10.61"
9
9
  },
10
10
  "plugins": [
11
11
  {
12
12
  "name": "store-automator",
13
13
  "source": "./plugins/store-automator",
14
14
  "description": "3 agents for app store publishing: reviewer, meta-creator, media-designer",
15
- "version": "0.10.60",
15
+ "version": "0.10.61",
16
16
  "keywords": [
17
17
  "flutter",
18
18
  "app-store",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daemux/store-automator",
3
- "version": "0.10.60",
3
+ "version": "0.10.61",
4
4
  "description": "Full App Store & Google Play automation for Flutter apps with Claude Code agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "store-automator",
3
- "version": "0.10.60",
3
+ "version": "0.10.61",
4
4
  "description": "App Store & Google Play automation agents for Flutter app publishing",
5
5
  "author": {
6
6
  "name": "Daemux"
@@ -134,7 +134,7 @@ Include in blueprint output:
134
134
 
135
135
  ## Large Task Batching
136
136
 
137
- If a `.claude/.tasks/` file path is provided, read ONLY that file for requirements.
137
+ If a `.tasks/` file path is provided, read ONLY that file for requirements.
138
138
  Scan the codebase for already-implemented items. Pick 3-5 UNIMPLEMENTED
139
139
  related requirements. Design only those. Report: "Batch: N of ~M remaining."
140
140
 
@@ -203,7 +203,7 @@ Simplicity is a feature:
203
203
 
204
204
  ## Large Task Completion Check
205
205
 
206
- If a `.claude/.tasks/` file path is provided, read it and compare all requirements against
206
+ If a `.tasks/` file path is provided, read it and compare all requirements against
207
207
  the codebase. NEVER declare COMPLETE while unimplemented requirements remain.
208
208
  When all requirements are implemented: delete the task file.
209
209
  Output: "Remaining: N requirements" or "All requirements implemented -- task file deleted."
@@ -315,7 +315,7 @@ appstore-meta-creator generates texts. Fill fastlane/iap_config.json if needed.
315
315
  app-designer designs marketing page in Stitch MCP. Develop web pages. Deploy via Cloudflare Pages (*.account-subdomain.workers.dev domain sufficient).
316
316
 
317
317
  ### Phase 5: Finalize and CI/CD
318
- Create .gitignore (.claude/.tasks/, Flutter ignores; do NOT ignore *.g.dart). Push to private repo. GitHub Actions auto-triggers on push.
318
+ Create .gitignore (.tasks/, Flutter ignores; do NOT ignore *.g.dart). Push to private repo. GitHub Actions auto-triggers on push.
319
319
 
320
320
  ### Phase 6: First Publish
321
321
  iOS: create app record locally first (`fastlane create_app_ios` + `upload_privacy_ios`, see "New App Setup" above), then CI is fully automated. Android: first build creates AAB + manual steps guide; subsequent builds fully automated.
@@ -411,15 +411,15 @@ Spawn each teammate with detailed prompt including:
411
411
 
412
412
  For tasks with 5+ requirements:
413
413
 
414
- 1. **Save requirements** to `.claude/.tasks/{short-topic}.md` before starting any agent (create `.claude/.tasks/` directory if it doesn't exist)
415
- 2. **Each session:** pass the exact file path (e.g., `.claude/.tasks/auth-system.md`) to architect and product-manager
414
+ 1. **Save requirements** to `.tasks/{short-topic}.md` before starting any agent (create `.tasks/` directory if it doesn't exist)
415
+ 2. **Each session:** pass the exact file path (e.g., `.tasks/auth-system.md`) to architect and product-manager
416
416
  3. **After each batch:** `/clear` and continue — tell user which task file to reference
417
417
  4. **Done when:** product-manager confirms zero remaining and deletes the task file
418
418
 
419
419
  Rules:
420
- - ALWAYS pass the exact `.claude/.tasks/` file path when calling architect and product-manager agents
420
+ - ALWAYS pass the exact `.tasks/` file path when calling architect and product-manager agents
421
421
  - Architect and product-manager will read ONLY the specified file — never guess the filename
422
- - Add `.claude/.tasks/` to `.gitignore`
422
+ - Add `.tasks/` to `.gitignore`
423
423
 
424
424
  ### Output Format and Continuation
425
425