mindweave 0.0.1
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 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Mindweave
|
|
2
|
+
|
|
3
|
+
**This package is not released yet.** Installing it does nothing useful.
|
|
4
|
+
|
|
5
|
+
Mindweave is a coding agent that lives in your terminal and works inside your
|
|
6
|
+
repository: reading, searching, editing, running commands, and checking its own work.
|
|
7
|
+
It runs entirely on your machine. There is no backend, no telemetry, and no account.
|
|
8
|
+
|
|
9
|
+
It is being built in the open. The first installable release will land here.
|
|
10
|
+
|
|
11
|
+
**Source, documentation, and how to run it today:**
|
|
12
|
+
https://github.com/mindweave-cli/Mindweave
|
|
13
|
+
|
|
14
|
+
Licensed under Apache-2.0.
|
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mindweave",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "A fast, model-adaptive terminal coding agent. Not yet released — see the repository.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"homepage": "https://github.com/mindweave-cli/Mindweave#readme",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/mindweave-cli/Mindweave.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/mindweave-cli/Mindweave/issues"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"cli",
|
|
16
|
+
"coding-agent",
|
|
17
|
+
"terminal",
|
|
18
|
+
"ai",
|
|
19
|
+
"llm",
|
|
20
|
+
"developer-tools"
|
|
21
|
+
],
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=20"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"README.md"
|
|
27
|
+
]
|
|
28
|
+
}
|