abtars 0.1.0-alpha.4 → 0.1.0-alpha.5

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.
@@ -0,0 +1,148 @@
1
+ {
2
+ "manifestVersion": 2,
3
+ "directories": [
4
+ {
5
+ "path": "config",
6
+ "mode": "0700"
7
+ },
8
+ {
9
+ "path": "logs"
10
+ },
11
+ {
12
+ "path": "scripts"
13
+ },
14
+ {
15
+ "path": "bin"
16
+ },
17
+ {
18
+ "path": "releases"
19
+ },
20
+ {
21
+ "path": "skills/core"
22
+ },
23
+ {
24
+ "path": "skills/custom"
25
+ },
26
+ {
27
+ "path": "skills/downloaded"
28
+ },
29
+ {
30
+ "path": "skills/self"
31
+ },
32
+ {
33
+ "path": "secret",
34
+ "mode": "0700"
35
+ }
36
+ ],
37
+ "lazyRoots": [
38
+ "memory",
39
+ "workspace",
40
+ "reports",
41
+ "received",
42
+ "backup",
43
+ "skills",
44
+ "agents",
45
+ "tasks",
46
+ "prompts",
47
+ "core",
48
+ "secret",
49
+ "overflow",
50
+ "state"
51
+ ],
52
+ "configSeeds": [
53
+ {
54
+ "source": ".env.example",
55
+ "dest": "config/.env",
56
+ "mode": "0600"
57
+ },
58
+ {
59
+ "source": ".env.skills.example",
60
+ "dest": "config/.env.skills",
61
+ "mode": "0600"
62
+ },
63
+ {
64
+ "source": "models.default.json",
65
+ "dest": "config/models.json"
66
+ },
67
+ {
68
+ "source": "config/transport.json.example",
69
+ "dest": "config/transport.json"
70
+ },
71
+ {
72
+ "source": "config/users.json.example",
73
+ "dest": "config/users.json"
74
+ },
75
+ {
76
+ "source": "tasks.default.json",
77
+ "dest": "state/tasks.json"
78
+ },
79
+ {
80
+ "source": "config/peers.json.example",
81
+ "dest": "config/peers.json",
82
+ "mode": "0600"
83
+ }
84
+ ],
85
+ "requiredConfigs": [
86
+ {
87
+ "path": "config/transport.json",
88
+ "remediation": "run 'abtars onboard'"
89
+ },
90
+ {
91
+ "path": "config/models.json",
92
+ "remediation": "copy from a reference install or run 'abtars onboard'"
93
+ },
94
+ {
95
+ "path": "config/users.json",
96
+ "remediation": "run 'abtars onboard'"
97
+ }
98
+ ],
99
+ "scripts": {
100
+ "include": [
101
+ "*.sh",
102
+ "*.py",
103
+ "*.plist",
104
+ "*.service"
105
+ ],
106
+ "executable": "*.sh"
107
+ },
108
+ "services": {
109
+ "supervised": {
110
+ "macos": {
111
+ "plist": "com.abtars.watchdog.plist",
112
+ "placeholders": [
113
+ "{{HOME}}"
114
+ ]
115
+ },
116
+ "linux": {
117
+ "units": [
118
+ "abtars@.service",
119
+ "abtars-watchdog.service"
120
+ ]
121
+ }
122
+ }
123
+ },
124
+ "cliWrappers": [
125
+ "abtars",
126
+ "abtars-browser",
127
+ "abtars-restart",
128
+ "abtars-task",
129
+ "abtars-tweet"
130
+ ],
131
+ "postInstall": [
132
+ {
133
+ "id": "001-env-memory-to-config",
134
+ "run": "migration",
135
+ "when": "update"
136
+ },
137
+ {
138
+ "id": "002-env-skills-to-config",
139
+ "run": "migration",
140
+ "when": "update"
141
+ },
142
+ {
143
+ "id": "003-flat-to-releases",
144
+ "run": "migration",
145
+ "when": "install-upgrade"
146
+ }
147
+ ]
148
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "abtars",
3
- "version": "0.1.0-alpha.4",
3
+ "version": "0.1.0-alpha.5",
4
4
  "description": "Standalone agent bridging Telegram to Kiro CLI via tmux/ACP",
5
5
  "type": "module",
6
6
  "main": "bundle/abtars.js",
@@ -54,6 +54,7 @@
54
54
  "scripts/",
55
55
  "README.md",
56
56
  "LICENSE",
57
- "CHANGELOG.md"
57
+ "CHANGELOG.md",
58
+ "install-manifest.json"
58
59
  ]
59
60
  }