@fernado03/zoo-flow 0.7.11 → 0.7.12

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/bin/zoo-flow.js +2 -2
  2. package/package.json +1 -1
package/bin/zoo-flow.js CHANGED
@@ -131,7 +131,7 @@ const ZOO_FLOW_GITIGNORE_MARKER = "# Zoo Flow — generated config (never commit
131
131
 
132
132
  function appendZooFlowToGitignore(projectRoot) {
133
133
  const gi = path.join(projectRoot, ".gitignore");
134
- const entries = [".roomodes", ".roo/", ".zoo-flow/"];
134
+ const entries = [".roomodes", ".roo/", ".zoo-flow/", "docs/agents/", "AGENTS.md"];
135
135
 
136
136
  if (pathExists(gi)) {
137
137
  const content = fs.readFileSync(gi, "utf8");
@@ -632,7 +632,7 @@ function doctor() {
632
632
  if (pathExists(gi)) {
633
633
  const giContent = fs.readFileSync(gi, "utf8");
634
634
  if (!giContent.includes(ZOO_FLOW_GITIGNORE_MARKER)) {
635
- optionalInfo.push("info: .gitignore does not contain Zoo Flow entries (.roomodes, .roo/, .zoo-flow/)");
635
+ optionalInfo.push("info: .gitignore does not contain Zoo Flow entries (.roomodes, .roo/, .zoo-flow/, docs/agents/, AGENTS.md)");
636
636
  }
637
637
  } else {
638
638
  optionalInfo.push("info: .gitignore missing — run `npx @fernado03/zoo-flow@latest init` to create it");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fernado03/zoo-flow",
3
3
  "description": "Workflow control plane for Zoo Code.",
4
- "version": "0.7.11",
4
+ "version": "0.7.12",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "zoo-flow": "bin/zoo-flow.js"