Skip to content
Merged
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ node_modules
dist
coverage
.artifacts
.repos/effect
*.log
.DS_Store
4 changes: 2 additions & 2 deletions docs/ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This repository is being refactored toward an agent-first, deeply Effect-native

## North Star

- Thin `@effect/cli` command adapters
- Thin Effect CLI command adapters from `effect/unstable/cli`
- Explicit services and layers for runtime, output, config, state, SDK access, and workflows
- Schema-backed request and response boundaries
- Tagged errors for recoverable failures
Expand Down Expand Up @@ -42,7 +42,7 @@ flowchart TD
- Runtime and terminal capabilities
- Output rendering and structured writes
- Config resolution and persisted state
- Authenticated and unauthenticated SDK access
- SDK access through the SDK-owned live layer and portable fetch transport

## Invariants

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"check": "vp check .",
"coverage": "vp test --coverage",
"dev": "vp pack --watch",
"prepare": "./scripts/prepare-effect.sh",
"prepack": "vp pack",
"smoke:pack": "node ./scripts/smoke-packed-install.mjs",
"test": "vp test",
Expand All @@ -42,18 +43,17 @@
"verify": "vp check . && vp pack && vp test && vp test --coverage"
},
"dependencies": {
"@effect/cli": "^0.73.2",
"@effect/platform": "0.94.5",
"@effect/platform-node": "0.104.1",
"@putdotio/sdk": "^9.1.0",
"@effect/platform-node": "4.0.0-beta.66",
"@putdotio/sdk": "^9.3.0",
"cli-table3": "^0.6.5",
"effect": "3.19.19",
"effect": "4.0.0-beta.66",
"i18next": "^25.5.2"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.1.5",
"esbuild": "^0.27.0",
"is-ci": "^4.1.0",
"postject": "^1.0.0-alpha.6",
"typescript": "^5.9.3",
"vite-plus": "0.1.20"
Expand Down
Loading