motifcode 0.2.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/LICENSE +202 -0
- package/README.md +39 -0
- package/dist/build-info.json +5 -0
- package/dist/motif.js +9981 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "motifcode",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Unofficial coding agent harness built for Motif-3: a Claude Code-style terminal session over the hosted endpoint",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"motif",
|
|
8
|
+
"motif-3",
|
|
9
|
+
"coding-agent",
|
|
10
|
+
"agent",
|
|
11
|
+
"cli",
|
|
12
|
+
"terminal",
|
|
13
|
+
"harness",
|
|
14
|
+
"llm",
|
|
15
|
+
"infron"
|
|
16
|
+
],
|
|
17
|
+
"homepage": "https://github.com/TaewoooPark/Motifcode#readme",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/TaewoooPark/Motifcode.git",
|
|
21
|
+
"directory": "packages/cli"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/TaewoooPark/Motifcode/issues"
|
|
25
|
+
},
|
|
26
|
+
"author": "Taewoo Park",
|
|
27
|
+
"license": "Apache-2.0",
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">=20"
|
|
30
|
+
},
|
|
31
|
+
"bin": {
|
|
32
|
+
"motif": "dist/motif.js",
|
|
33
|
+
"motifcode": "dist/motif.js"
|
|
34
|
+
},
|
|
35
|
+
"main": "./src/index.ts",
|
|
36
|
+
"exports": {
|
|
37
|
+
".": "./src/index.ts"
|
|
38
|
+
},
|
|
39
|
+
"files": [
|
|
40
|
+
"dist/motif.js",
|
|
41
|
+
"dist/build-info.json"
|
|
42
|
+
],
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@motifcode/agents": "workspace:*",
|
|
49
|
+
"@motifcode/core": "workspace:*",
|
|
50
|
+
"@motifcode/eval": "workspace:*",
|
|
51
|
+
"@motifcode/hooks": "workspace:*",
|
|
52
|
+
"@motifcode/journal": "workspace:*",
|
|
53
|
+
"@motifcode/protocol": "workspace:*",
|
|
54
|
+
"@motifcode/skills": "workspace:*",
|
|
55
|
+
"@motifcode/tools": "workspace:*",
|
|
56
|
+
"@motifcode/tui": "workspace:*"
|
|
57
|
+
}
|
|
58
|
+
}
|