Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

55 changes: 44 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,56 @@
{
"name": "haflow",
"private": true,
"version": "1.0.0",
"version": "0.0.1",
"type": "module",
"description": "Local-first orchestrator for AI-assisted missions with human gates and ephemeral sandboxes",
"author": "oxedom",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/oxedom/haflow.git"
},
"description": "",
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/oxedom/haflow/issues"
},
"homepage": "https://github.com/oxedom/haflow#readme",
"keywords": [
"haflow",
"claude",
"ai",
"orchestrator",
"missions"
],
"files": [
"packages/shared/dist",
"packages/backend/dist",
"packages/frontend/dist"
],
"main": "./packages/backend/dist/index.js",
"exports": {
".": {
"import": "./packages/backend/dist/index.js"
},
"./shared": {
"import": "./packages/shared/dist/index.js"
},
"./frontend": {
"import": "./packages/frontend/dist"
}
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.28.0",
"scripts": {
"dev": "pnpm --filter @haflow/shared build && pnpm --parallel --filter @haflow/backend --filter frontend dev",
"build:all": "pnpm --filter @haflow/shared build && pnpm --filter @haflow/backend build && pnpm --filter frontend build && pnpm --filter @haflow/cli build && pnpm --filter site build",
"test": "pnpm --filter @haflow/backend test && pnpm --filter @haflow/cli test && pnpm --filter frontend test:e2e",
"dev": "pnpm --filter @haflow/shared build && pnpm --parallel --filter @haflow/backend --filter @haflow/frontend dev",
"build:all": "pnpm --filter @haflow/shared build && pnpm --filter @haflow/backend build && pnpm --filter @haflow/frontend build && pnpm --filter @haflow/cli build && pnpm --filter site build",
"test": "pnpm --filter @haflow/backend test && pnpm --filter @haflow/cli test && pnpm --filter @haflow/frontend test:e2e",
"site:dev": "pnpm --filter site dev",
"site:build": "pnpm --filter site build",
"site:preview": "pnpm --filter site preview"
"site:preview": "pnpm --filter site preview",
"prepublishOnly": "pnpm --filter @haflow/shared build && pnpm --filter @haflow/backend build && pnpm --filter @haflow/frontend build"
},
"publishConfig": {
"access": "public"
}
}
}
1 change: 1 addition & 0 deletions packages/backend/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@haflow/backend",
"private": true,
"version": "0.0.1",
"type": "module",
"description": "Backend server for Haflow - multi-project Claude Code orchestrator",
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/services/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -323,12 +323,12 @@ async function* startClaudeStreaming(options: ClaudeSandboxOptions): AsyncGenera
// In codegen mode: /workspace/artifacts (overlays clone's artifacts if any)
// In document mode: /mission/artifacts
args.push('-v', `${artifactsPath}:${workingDir}/artifacts`);
// '--model', 'claude-haiku-4-5',

args.push(
'-w', workingDir,
defaultImage,
'claude',
'--model', 'claude-haiku-4-5',
'--verbose',
'--print',
'--output-format', 'stream-json',
Expand Down
28 changes: 26 additions & 2 deletions packages/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,32 @@
{
"name": "frontend",
"name": "@haflow/frontend",
"private": true,
"version": "0.0.0",
"version": "0.0.1",
"type": "module",
"description": "Frontend UI for Haflow - multi-project Claude Code orchestrator",
"author": "oxedom",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/oxedom/haflow.git",
"directory": "packages/frontend"
},
"bugs": {
"url": "https://github.com/oxedom/haflow/issues"
},
"homepage": "https://github.com/oxedom/haflow#readme",
"keywords": [
"haflow",
"claude",
"frontend",
"ui"
],
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "tsc -b && vite build",
Expand Down
1 change: 1 addition & 0 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@haflow/shared",
"private": true,
"version": "0.0.1",
"type": "module",
"description": "Shared utilities for Haflow - multi-project Claude Code orchestrator",
Expand Down
Loading