agent-flutter 0.1.8 → 0.1.9

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 (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/src/cli.js +1 -1
package/README.md CHANGED
@@ -70,7 +70,7 @@ npm run release:major
70
70
 
71
71
  ## Installed files
72
72
 
73
- - Workspace utilities: `spec/`, `tool/`, `tools/`, `.vscode/tasks.json`
73
+ - Workspace utilities: `tool/`, `tools/`, `.vscode/tasks.json`
74
74
  - Trae: `.trae/` (skills/rules/scripts)
75
75
  - Codex: `.codex/` (skills/rules/scripts) + `AGENTS.md`
76
76
  - Cursor: `.cursor/skills/`, `.cursor/rules/shared/`, `.cursor/scripts/`, `.cursor/rules/agent-flutter.mdc`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-flutter",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Portable Flutter skill/rule pack initializer for multiple AI IDEs.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -142,7 +142,7 @@ async function applyPack({
142
142
  mode,
143
143
  }) {
144
144
  const verb = mode === 'sync' ? 'Synced' : 'Installed';
145
- const sharedUtilityDirs = ['spec', 'tool', 'tools'];
145
+ const sharedUtilityDirs = ['tool', 'tools'];
146
146
  const syncDirectory = async ({ sourceDir, destinationDir, label }) => {
147
147
  if ((await exists(destinationDir)) && !force) {
148
148
  console.log(`Skipped ${label} (exists): ${destinationDir}`);