@atolis-hq/wake 0.1.17 → 0.1.18
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/README.md +14 -9
- package/dist/src/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
# Wake
|
|
2
2
|
|
|
3
|
-
Wake is a
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
Wake is a control plane for autonomous software engineering. It watches the
|
|
4
|
+
channels your team already uses, coordinates agent activity and involves humans
|
|
5
|
+
when needed, and keeps the durable record attached to the work instead of the
|
|
6
|
+
terminal session that happened to run it.
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
Create an issue, assign Wake, and keep doing your own work. Wake investigates,
|
|
9
|
+
asks for input when human judgment matters, proposes a plan, launches local
|
|
10
|
+
coding-agent CLIs to implement changes, opens pull requests, and carries the
|
|
11
|
+
conversation forward wherever the work is already happening.
|
|
12
|
+
|
|
13
|
+
Wake owns coordination. Coding agents execute the work.
|
|
10
14
|
|
|
11
15
|
## The Problem
|
|
12
16
|
|
|
@@ -27,10 +31,11 @@ out of the token-burning path wherever possible.
|
|
|
27
31
|
|
|
28
32
|
## Vision
|
|
29
33
|
|
|
30
|
-
Wake should make reliable, resumable, token-aware
|
|
34
|
+
Wake should make reliable, resumable, token-aware autonomous engineering
|
|
31
35
|
practical. The default operating model is asynchronous and channel-driven: work
|
|
32
|
-
enters
|
|
33
|
-
locally in an inspectable workspace or
|
|
36
|
+
enters through durable external systems, Wake keeps humans in the loop at useful
|
|
37
|
+
decision points, and execution happens locally in an inspectable workspace or
|
|
38
|
+
sandbox.
|
|
34
39
|
|
|
35
40
|
Wake is not trying to replace coding agents, issue trackers, or source control.
|
|
36
41
|
It coordinates across them. Over time it should become the layer that picks
|
package/dist/src/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const wakeVersion = "0.1.
|
|
1
|
+
export const wakeVersion = "0.1.18+g6b6248c";
|