wakeloop 0.1.0

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.
package/package.json ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "$schema": "https://www.schemastore.org/package.json",
3
+ "name": "wakeloop",
4
+ "version": "0.1.0",
5
+ "wakeLoopReleaseDate": "2026-07-04",
6
+ "description": "WakeLoop CLI - https://wakeloop.ai",
7
+ "license": "MIT",
8
+ "type": "module",
9
+ "bin": {
10
+ "wakeloop": "dist/wakeloop.js"
11
+ },
12
+ "private": false,
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "engines": {
17
+ "node": ">=20"
18
+ },
19
+ "files": [
20
+ "README.md",
21
+ "dist",
22
+ "skills"
23
+ ],
24
+ "scripts": {
25
+ "build": "tsdown",
26
+ "prepack": "pnpm -C ../.. run verify:release-ready -- --force && pnpm run verify:pack-readme",
27
+ "deploy": "pnpm -C ../.. run release:cli",
28
+ "publish:npm": "npm publish",
29
+ "prepublishOnly": "pnpm run verify:pack-readme",
30
+ "verify:pack-readme": "node scripts/verify-npm-pack-readme.mjs",
31
+ "typecheck": "tsc -p tsconfig.json --noEmit",
32
+ "check": "ultracite check && tsc -p tsconfig.json --noEmit",
33
+ "test": "vitest run --config vitest.config.ts",
34
+ "test:integration": "node scripts/run-integration-tests.mjs",
35
+ "test:full": "pnpm run test && pnpm run test:integration",
36
+ "test:local-service": "vitest run --config vitest.integration.config.ts tests/local-service-state.integration.test.ts tests/local-service-command.integration.test.ts tests/local-service-menu.integration.test.ts tests/local-service-run.integration.test.ts tests/local-service-bootstrap-recommendation.test.ts",
37
+ "test:watch": "vitest"
38
+ },
39
+ "dependencies": {
40
+ "@anthropic-ai/claude-agent-sdk": "^0.3.195",
41
+ "@anthropic-ai/sdk": "^0.93.0",
42
+ "@clack/prompts": "^1.0.1",
43
+ "@mariozechner/pi-tui": "0.57.1",
44
+ "@modelcontextprotocol/sdk": "^1.29.0",
45
+ "@opencode-ai/sdk": "^1.17.11",
46
+ "commander": "^14.0.0",
47
+ "picocolors": "^1.1.1",
48
+ "string-width": "^8.1.0",
49
+ "wrap-ansi": "10.0.0",
50
+ "ws": "^8.18.3",
51
+ "zod": "^4.3.6"
52
+ },
53
+ "devDependencies": {
54
+ "@types/node": "^24.3.0",
55
+ "@types/ws": "^8.18.1",
56
+ "@wakeloop/adapter-claude-code": "workspace:*",
57
+ "@wakeloop/adapter-codex": "workspace:*",
58
+ "@wakeloop/adapter-core": "workspace:*",
59
+ "@wakeloop/adapter-openclaw": "workspace:*",
60
+ "@wakeloop/adapter-opencode": "workspace:*",
61
+ "@wakeloop/agent-runtime": "workspace:*",
62
+ "@wakeloop/api-client": "workspace:*",
63
+ "@wakeloop/gateway-contract": "workspace:*",
64
+ "@wakeloop/local-execution": "workspace:*",
65
+ "@wakeloop/local-service": "workspace:*",
66
+ "@wakeloop/protocol": "workspace:*",
67
+ "@wakeloop/schemas": "workspace:*",
68
+ "@wakeloop/space": "workspace:*",
69
+ "@wakeloop/space-mesh": "workspace:*",
70
+ "@wakeloop/start": "workspace:*",
71
+ "@wakeloop/utils": "workspace:*",
72
+ "oxc-resolver": "^11.0.0",
73
+ "tsdown": "^0.20.3",
74
+ "typescript": "^5.9.3",
75
+ "unplugin-lightningcss": "^0.4.0",
76
+ "vitest": "~3.2.0"
77
+ },
78
+ "wakeloop": {
79
+ "releaseLine": "wakeloop-greenfield-2026-07"
80
+ }
81
+ }
@@ -0,0 +1,27 @@
1
+ # WakeLoop Local Skills
2
+
3
+ This directory stores WakeLoop-compatible Skills for local installation.
4
+
5
+ Current layout:
6
+
7
+ - `skills/wakeloop-cli/SKILL.md` — WakeLoop CLI skill for local setup and skills workflow.
8
+
9
+ By design, WakeLoop CLI installs bundled skills from the packaged `skills/` directory.
10
+
11
+ ## Maintenance Rule
12
+
13
+ When WakeLoop CLI adds or changes command behavior, update `skills/wakeloop-cli/SKILL.md` in the same PR:
14
+
15
+ 1. Command list (added/removed/renamed commands).
16
+ 2. Option list (new flags, defaults, and constraints).
17
+ 3. Runtime behavior that impacts agents (replay semantics, interactive behavior, output mode differences).
18
+
19
+ Verification checklist before merging:
20
+
21
+ - `wakeloop --help`
22
+ - `wakeloop agents --help`
23
+ - `wakeloop agents custom --help`
24
+ - `wakeloop space --help`
25
+ - `wakeloop space join --help`
26
+ - `wakeloop space watch --help`
27
+ - `wakeloop skills --help`