-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
534 lines (534 loc) · 16 KB
/
Copy pathpackage.json
File metadata and controls
534 lines (534 loc) · 16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
{
"name": "aios-glass",
"displayName": "AIOS Glass",
"description": "A friendly glass layer over the AIOS — run rituals, browse agents, manage spaces, all from inside Antigravity. Glass, not engine.",
"version": "0.2.1",
"publisher": "the-aios",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/The-AIOS/aios-glass.git"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other",
"Notebooks"
],
"keywords": [
"aios",
"obsidian",
"foam",
"notes",
"pkm",
"antigravity"
],
"icon": "media/icon.png",
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"themes": [
{
"label": "AIOS Dark",
"uiTheme": "vs-dark",
"path": "./themes/aios-dark-color-theme.json"
},
{
"label": "AIOS Light",
"uiTheme": "vs",
"path": "./themes/aios-light-color-theme.json"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "aios-glass",
"title": "AIOS Glass",
"icon": "media/aios.svg"
},
{
"id": "aios-files",
"title": "AIOS Explorer",
"icon": "media/files.svg"
}
]
},
"views": {
"aios-glass": [
{
"id": "aios.home",
"name": "AIOS Glass",
"type": "webview"
}
],
"aios-files": [
{
"id": "aios.files",
"name": "AIOS Explorer",
"type": "webview"
}
]
},
"icons": {
"aios-mark": {
"description": "AIOS mark",
"default": {
"fontPath": "media/font/aios-icons.woff",
"fontCharacter": "\\F101"
}
}
},
"commands": [
{
"command": "aios.openHome",
"title": "AIOS: Open Home",
"icon": {
"light": "media/aios-color.svg",
"dark": "media/aios-color.svg"
}
},
{
"command": "aios.openWalkthrough",
"title": "AIOS: Open Getting Started"
},
{
"command": "aios.openReadme",
"title": "AIOS: Open README",
"icon": "$(book)"
},
{
"command": "aios.openFiles",
"title": "AIOS: Browse Files (Finder)",
"icon": "$(folder-opened)"
},
{
"command": "aios.filesCollapseAll",
"title": "AIOS: Collapse Explorer",
"icon": "$(collapse-all)"
},
{
"command": "aios.filesRefresh",
"title": "AIOS: Refresh Explorer",
"icon": "$(refresh)"
},
{
"command": "aios.openConfigMenu",
"title": "AIOS: Config",
"icon": "$(gear)"
},
{
"command": "aios.runRitualPicker",
"title": "AIOS: Run a Command"
},
{
"command": "aios.openSource",
"title": "AIOS: Open Source of Preview"
},
{
"command": "aios.skillsPicker",
"title": "AIOS: Browse Skills"
},
{
"command": "aios.createCustom",
"title": "AIOS: Create Custom (agent / skill / plugin)",
"icon": "$(add)"
},
{
"command": "aios.showGraph",
"title": "AIOS: Open Vault Graph",
"icon": "$(type-hierarchy)"
},
{
"command": "aios.cheatsheet",
"title": "AIOS: Cheatsheet",
"icon": "$(question)"
},
{
"command": "aios.onboarding",
"title": "AIOS: Onboarding Guide",
"icon": "$(question)"
},
{
"command": "aios.runRitual",
"title": "AIOS: Run Ritual"
},
{
"command": "aios.spawnAgent",
"title": "AIOS: Spawn Agent"
},
{
"command": "aios.spawnWorker",
"title": "AIOS: Spawn Worker (adjective-animal)"
},
{
"command": "aios.openCapability",
"title": "AIOS: Open Capability"
},
{
"command": "aios.companyAction",
"title": "AIOS: Company Actions"
},
{
"command": "aios.collaborateAction",
"title": "AIOS: Collaborate Actions"
},
{
"command": "aios.updateFramework",
"title": "AIOS: Update Framework"
},
{
"command": "aios.setFrameworkPath",
"title": "AIOS: Set Framework Path"
},
{
"command": "aios.showLogs",
"title": "AIOS: Show Logs"
},
{
"command": "aios.askAios",
"title": "AIOS: Ask AIOS",
"icon": "$(sparkle)"
},
{
"command": "aios.frequentMenu",
"title": "AIOS: Frequent Tasks & Routines"
},
{
"command": "aios.palette",
"title": "AIOS: Search Everything (Palette)"
}
],
"keybindings": [
{
"command": "aios.palette",
"mac": "cmd+alt+g shift+8",
"key": "ctrl+alt+g shift+8"
},
{
"command": "aios.askAios",
"mac": "cmd+alt+g q",
"key": "ctrl+alt+g q"
},
{
"command": "aios.frequentMenu",
"mac": "cmd+alt+g f",
"key": "ctrl+alt+g f"
},
{
"command": "aios.spawnAgent",
"mac": "cmd+alt+g a",
"key": "ctrl+alt+g a"
},
{
"command": "aios.spawnWorker",
"mac": "cmd+alt+g s",
"key": "ctrl+alt+g s"
},
{
"command": "aios.newTerminal",
"mac": "cmd+alt+g t",
"key": "ctrl+alt+g t"
},
{
"command": "aios.skillsPicker",
"mac": "cmd+alt+g k",
"key": "ctrl+alt+g k"
},
{
"command": "aios.runRitualPicker",
"mac": "cmd+alt+g c",
"key": "ctrl+alt+g c"
},
{
"command": "aios.ingest",
"mac": "cmd+alt+g i",
"key": "ctrl+alt+g i"
},
{
"command": "aios.runningPicker",
"mac": "cmd+alt+g r",
"key": "ctrl+alt+g r"
},
{
"command": "aios.dailyPicker",
"mac": "cmd+alt+g d",
"key": "ctrl+alt+g d"
},
{
"command": "aios.workspacesPicker",
"mac": "cmd+alt+g w",
"key": "ctrl+alt+g w"
},
{
"command": "aios.personalizationsPicker",
"mac": "cmd+alt+g p",
"key": "ctrl+alt+g p"
},
{
"command": "aios.goWithAgents",
"mac": "cmd+alt+g g",
"key": "ctrl+alt+g g"
},
{
"command": "aios.minimizeCards",
"mac": "cmd+alt+g m",
"key": "ctrl+alt+g m"
},
{
"command": "aios.toggleHome",
"mac": "cmd+alt+g h",
"key": "ctrl+alt+g h"
},
{
"command": "aios.contextPicker",
"mac": "cmd+alt+g x",
"key": "ctrl+alt+g x"
},
{
"command": "aios.reports",
"mac": "cmd+alt+g e",
"key": "ctrl+alt+g e"
},
{
"command": "aios.openConfigMenu",
"mac": "cmd+alt+g ,",
"key": "ctrl+alt+g ,"
},
{
"command": "aios.openToday",
"mac": "cmd+alt+g y",
"key": "ctrl+alt+g y"
},
{
"command": "aios.openFiles",
"mac": "cmd+alt+g b",
"key": "ctrl+alt+g b"
}
],
"menus": {
"editor/title": [
{
"command": "aios.openHome",
"group": "navigation"
}
],
"view/title": [
{
"command": "aios.openReadme",
"when": "view == aios.home",
"group": "navigation@0"
},
{
"command": "aios.onboarding",
"when": "view == aios.home",
"group": "navigation@1"
},
{
"command": "aios.filesRefresh",
"when": "view == aios.files",
"group": "navigation@0"
},
{
"command": "aios.filesCollapseAll",
"when": "view == aios.files",
"group": "navigation@1"
}
],
"commandPalette": [
{
"command": "aios.runRitual",
"when": "false"
},
{
"command": "aios.openCapability",
"when": "false"
}
]
},
"configuration": {
"title": "AIOS Glass",
"properties": {
"aiosGlass.frameworkPath": {
"type": "string",
"default": "~/aios",
"markdownDescription": "Path to your AIOS framework root (the folder containing `plugins/aios/commands/`). `~` is expanded to your home directory. If empty, AIOS Glass falls back to the open workspace root."
},
"aiosGlass.claudeCommand": {
"type": "string",
"default": "claude",
"markdownDescription": "The command used to launch native Claude Code. Rituals run as `<claudeCommand> \"/aios:<ritual>\"` in an integrated terminal."
},
"aiosGlass.openNotesIn": {
"type": "string",
"enum": [
"preview",
"editor",
"previewToSide"
],
"enumDescriptions": [
"Rendered Markdown preview (Foam renders [[wikilinks]]) — Obsidian-style reading view",
"Source editor (raw Markdown)",
"Preview opened beside the source editor"
],
"default": "preview",
"markdownDescription": "How clicking a day in the Calendar opens its note. ⌘/Ctrl-click always opens the source editor; newly-created notes always open in the editor."
},
"aiosGlass.terminalMode": {
"type": "string",
"enum": [
"ask",
"active"
],
"enumDescriptions": [
"Ask each time which terminal to use (existing ones, or a new one)",
"Use the focused terminal (assumed to have a live Claude session), else open a new one"
],
"default": "ask",
"markdownDescription": "Where commands & skills run. (Agents, workers, and resume always open a new terminal.) A new terminal runs `claude \"/slash\"`; an existing/active one gets the bare `/slash` typed into the Claude session there."
},
"aiosGlass.showHidden": {
"type": "boolean",
"default": false,
"markdownDescription": "Show hidden dotfiles (`.gitignore`, `.vscode`, `.github`, …) in the AIOS Explorer. `node_modules`, `.git`, build dirs, and `.DS_Store` stay hidden regardless. Toggle from the cog menu."
},
"aiosGlass.autoReveal": {
"type": "boolean",
"default": true,
"markdownDescription": "Auto-reveal the active file in the AIOS Explorer — when you switch editor tabs (source, PDF, image, or markdown preview), the tree expands to and selects that file. Toggle from the cog menu."
},
"aiosGlass.showMemory": {
"type": "boolean",
"default": true,
"markdownDescription": "Show each running session's process-tree RAM (RSS) in the Sessions card. Toggle from the cog menu."
},
"aiosGlass.fileIcons": {
"type": "string",
"enum": [
"enhanced",
"plain"
],
"enumDescriptions": [
"Colorful file-type icons (md, json, code, images, …) in the explorer",
"A single neutral document icon for every file"
],
"default": "enhanced",
"markdownDescription": "File icons in the AIOS Explorer — `enhanced` (colorful per-type) or `plain` (one neutral doc icon). Toggle from the cog menu."
},
"aiosGlass.theme": {
"type": "string",
"enum": [
"dark",
"light"
],
"enumDescriptions": [
"Deep black canvas with the coral accent — the default Glass look",
"Paper-light canvas (The-AIOS light), same coral accent — legible in bright rooms / on projectors"
],
"default": "dark",
"markdownDescription": "Visual theme for the Glass surfaces (Home panel + Files explorer). Toggle from the header sun/moon button or the cog menu. Terminals always stay dark."
},
"aiosGlass.showHints": {
"type": "boolean",
"default": true,
"markdownDescription": "Show the secondary hint texts in the Home panel — button hints (e.g. `browse · task`) and header subtitles (e.g. `discipline compounds`). Turn off for a cleaner, label-only view. Toggle from the cog menu. Counts and helper lines are unaffected."
},
"aiosGlass.showNudges": {
"type": "boolean",
"default": true,
"markdownDescription": "Show the contextual ritual nudge banner at the top of Home — morning (the day's suggested ritual), daytime (wrap open sessions), evening (close the day). Each nudge can be dismissed for the day; turn this off to hide them entirely."
}
}
},
"walkthroughs": [
{
"id": "aios.gettingStarted",
"title": "Get started with AIOS Glass",
"description": "Your AIOS, clickable — six steps from install to operating.",
"steps": [
{
"id": "dock",
"title": "Open your panel",
"description": "The Glass panel is home — rituals, sessions, tasks, calendar.\n[Open AIOS Glass](command:aios.openHome)",
"media": {
"markdown": "media/walkthrough/dock.md"
},
"completionEvents": [
"onCommand:aios.openHome"
]
},
{
"id": "vault",
"title": "Point Glass at your AIOS",
"description": "Glass reads your framework live from ~/aios. If the panel counters show numbers, you are connected.\n[Check the setting](command:toSide:workbench.action.openSettings?%5B%22aiosGlass.frameworkPath%22%5D)",
"media": {
"markdown": "media/walkthrough/vault.md"
},
"completionEvents": [
"onCommand:workbench.action.openSettings",
"onSettingChanged:aiosGlass.frameworkPath"
]
},
{
"id": "daily",
"title": "Run your first ritual",
"description": "Plan my day in the morning, Close the day in the evening — the rhythm everything else compounds on.\n[Daily rituals](command:aios.dailyPicker)",
"media": {
"markdown": "media/walkthrough/daily.md"
},
"completionEvents": [
"onCommand:aios.dailyPicker"
]
},
{
"id": "ask",
"title": "Ask AIOS anything",
"description": "Type what you need — Claude matches it to the right context & tools and puts them to work.\n[Ask AIOS](command:aios.askAios)",
"media": {
"markdown": "media/walkthrough/ask.md"
},
"completionEvents": [
"onCommand:aios.askAios"
]
},
{
"id": "agents",
"title": "Launch an agent",
"description": "Wear a specialist hat — lawyer, content-writer, researcher — or spawn parallel workers and watch them in the Running card.\n[Browse agents](command:aios.spawnAgent)",
"media": {
"markdown": "media/walkthrough/agents.md"
},
"completionEvents": [
"onCommand:aios.spawnAgent"
]
},
{
"id": "chords",
"title": "Learn the chords",
"description": "⌘⌥G then a key — twenty actions behind one leader. Q asks, D plans, * searches everything.\n[Open the cheatsheet](command:aios.cheatsheet)",
"media": {
"markdown": "media/walkthrough/chords.md"
},
"completionEvents": [
"onCommand:aios.cheatsheet"
]
}
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"smoke": "node scripts/smoke.mjs",
"test": "npm run compile && node --test out/test/*.test.js"
},
"devDependencies": {
"@types/node": "^20.x",
"@types/vscode": "^1.85.0",
"typescript": "^5.4.0"
}
}