{
  "name": "@hassangameryt/freeflow",
  "version": "0.7.1",
  "description": "Feedback-based control system for coding agents.",
  "publishConfig": {
    "access": "public"
  },
  "author": {
    "name": "Hassan Mohiddin"
  },
  "homepage": "https://github.com/hassan-mohiddin/freeflow",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hassan-mohiddin/freeflow.git"
  },
  "license": "MIT",
  "type": "module",
  "scripts": {
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "format:pi-extension-dist": "prettier --write pi-extension/dist",
    "build:pi-extension": "tsc -p pi-extension/tsconfig.json && npm run format:pi-extension-dist",
    "build": "npm run build:pi-extension",
    "typecheck": "tsc -p pi-extension/tsconfig.json --noEmit",
    "check": "npm run typecheck && npm run check:source && npm run check:host-manifests && npm run check:changelog && npm run check:release-workflow && npm run check:docs && npm run format:check && npm run check:release-version && npm run check:commands && npm run check:activation && npm run check:runtime && npm run check:package",
    "check:source": "node scripts/validation/check-source-files.mjs",
    "check:host-manifests": "node scripts/validation/check-host-manifests.mjs",
    "check:changelog": "node scripts/validation/check-changelog.mjs --structure",
    "check:release-workflow": "node scripts/validation/check-release-workflow.mjs",
    "check:docs": "node scripts/validation/check-docs.mjs",
    "check:release-version": "node scripts/validation/check-release-version.mjs",
    "check:commands": "scripts/validation/audit-command-surface.sh",
    "check:activation": "scripts/validation/check-activation-contract.sh",
    "check:runtime": "hooks/tests/check-runtime-context-hook.sh",
    "check:package": "node scripts/validation/check-package.mjs",
    "check:release-metadata": "scripts/validation/validate-release-metadata.sh --mode prepublish",
    "test:pi-extension": "npm run build && node --test $(find pi-extension/tests -name '*.test.js' | sort)",
    "test:host-manifests": "node --test scripts/validation/check-host-manifests.test.mjs hooks/tests/check-host-adapters.test.mjs",
    "test:skill-author": "node --test $(find .skill-eval/write-skill/tests -name '*.test.mjs' | sort)",
    "test:skill-eval": "node --test $(find .skill-eval/evaluate-skill/tests -name '*.test.mjs' | sort)",
    "test:track-work": "node --test .skill-eval/track-work/tests/*.test.mjs",
    "test:freeflow-snapshot": "node --test scripts/freeflow-snapshot.test.mjs",
    "test:release-utils": "node --test scripts/release-utils.test.mjs",
    "test:changelog": "node --test scripts/validation/check-changelog.test.mjs",
    "test:release-workflow": "node --test scripts/validation/check-release-workflow.test.mjs",
    "test:docs": "node --test scripts/validation/check-docs.test.mjs",
    "release:prepare": "node scripts/release.mjs",
    "release:notes": "node scripts/release-notes.mjs",
    "snapshot:refresh": "node scripts/freeflow-snapshot.mjs"
  },
  "keywords": [
    "pi-package",
    "agent-skills",
    "workflow",
    "skills",
    "agents",
    "feedback-loop",
    "task-memory",
    "planning",
    "verification",
    "review",
    "codex",
    "claude",
    "pi",
    "agent-plugins",
    "gemini",
    "cursor",
    "copilot",
    "vscode",
    "kiro",
    "opencode",
    "hermes"
  ],
  "pi": {
    "skills": [],
    "extensions": [
      "pi-extension/freeflow/index.js"
    ],
    "image": "https://raw.githubusercontent.com/hassan-mohiddin/freeflow/main/assets/freeflow-plugin-icon-transparent.png"
  },
  "files": [
    "plugin.json",
    "gemini-extension.json",
    ".agents/**",
    ".claude-plugin/**",
    ".codex-plugin/**",
    ".cursor-plugin/**",
    "com.github.copilot/**",
    "LICENSE",
    "README.md",
    "assets/**",
    "capabilities/**",
    "runtime/**",
    "command-surface.json",
    "hooks/**",
    "pi-extension/**",
    "skills/**"
  ],
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": "*",
    "@earendil-works/pi-tui": "*"
  },
  "devDependencies": {
    "@earendil-works/pi-coding-agent": "0.84.4",
    "@earendil-works/pi-tui": "0.84.4",
    "@types/node": "^22.15.30",
    "prettier": "3.9.5",
    "typescript": "^5.8.3"
  }
}
