farmwork 1.4.1 → 1.4.5

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/package.json +2 -2
  2. package/src/doctor.js +4 -1
  3. package/src/init.js +803 -431
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "farmwork",
3
- "version": "1.4.1",
3
+ "version": "1.4.5",
4
4
  "type": "module",
5
5
  "description": "Farmwork - A workflow framework for Claude Code by Wynter Jones",
6
6
  "main": "src/index.js",
@@ -42,5 +42,5 @@
42
42
  "type": "git",
43
43
  "url": "https://github.com/wynterjones/farmwork"
44
44
  },
45
- "homepage": "https://farmwork.wynter.ai"
45
+ "homepage": "https://farmwork.dev"
46
46
  }
package/src/doctor.js CHANGED
@@ -175,7 +175,10 @@ export async function doctor() {
175
175
  checkExists(path.join(cwd, "_OFFICE"), "_OFFICE/ directory exists"),
176
176
  );
177
177
  checks[4].items.push(
178
- checkExists(path.join(cwd, "_OFFICE", "CORE_LOOP.md"), "CORE_LOOP.md exists"),
178
+ checkExists(path.join(cwd, "_OFFICE", "GREENFIELD.md"), "GREENFIELD.md exists"),
179
+ );
180
+ checks[4].items.push(
181
+ checkExists(path.join(cwd, "_OFFICE", "BROWNFIELD.md"), "BROWNFIELD.md exists"),
179
182
  );
180
183
  checks[4].items.push(
181
184
  checkExists(path.join(cwd, "_OFFICE", "ONBOARDING.md"), "ONBOARDING.md exists"),