@leejungkiin/awkit 1.1.7 → 1.1.9

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.
Files changed (48) hide show
  1. package/README.md +36 -1
  2. package/bin/awk.js +2 -2
  3. package/package.json +6 -3
  4. package/skill-packs/neural-memory/skills/nm-memory-sync/SKILL.md +14 -1
  5. package/skills/gitnexus-intelligence/SKILL.md +224 -0
  6. package/skills/orchestrator/SKILL.md +9 -0
  7. package/skills/symphony-orchestrator/SKILL.md +9 -7
  8. package/workflows/gitnexus.md +123 -0
  9. package/symphony/LICENSE +0 -21
  10. package/symphony/README.md +0 -178
  11. package/symphony/app/api/agents/route.js +0 -152
  12. package/symphony/app/api/events/route.js +0 -22
  13. package/symphony/app/api/knowledge/route.js +0 -253
  14. package/symphony/app/api/locks/route.js +0 -29
  15. package/symphony/app/api/notes/route.js +0 -125
  16. package/symphony/app/api/preflight/route.js +0 -23
  17. package/symphony/app/api/projects/route.js +0 -116
  18. package/symphony/app/api/roles/route.js +0 -134
  19. package/symphony/app/api/skills/route.js +0 -82
  20. package/symphony/app/api/status/route.js +0 -18
  21. package/symphony/app/api/tasks/route.js +0 -157
  22. package/symphony/app/api/workflows/route.js +0 -61
  23. package/symphony/app/api/workspaces/route.js +0 -15
  24. package/symphony/app/globals.css +0 -2605
  25. package/symphony/app/layout.js +0 -20
  26. package/symphony/app/page.js +0 -2122
  27. package/symphony/cli/index.js +0 -1060
  28. package/symphony/core/agent-manager.js +0 -357
  29. package/symphony/core/context-bus.js +0 -100
  30. package/symphony/core/db.js +0 -223
  31. package/symphony/core/file-lock-manager.js +0 -154
  32. package/symphony/core/merge-pipeline.js +0 -234
  33. package/symphony/core/orchestrator.js +0 -236
  34. package/symphony/core/task-manager.js +0 -335
  35. package/symphony/core/workspace-manager.js +0 -168
  36. package/symphony/jsconfig.json +0 -7
  37. package/symphony/lib/core.mjs +0 -1034
  38. package/symphony/mcp/index.js +0 -29
  39. package/symphony/mcp/server.js +0 -110
  40. package/symphony/mcp/tools/context.js +0 -80
  41. package/symphony/mcp/tools/locks.js +0 -99
  42. package/symphony/mcp/tools/status.js +0 -82
  43. package/symphony/mcp/tools/tasks.js +0 -216
  44. package/symphony/mcp/tools/workspace.js +0 -143
  45. package/symphony/next.config.mjs +0 -7
  46. package/symphony/package.json +0 -53
  47. package/symphony/scripts/postinstall.js +0 -49
  48. package/symphony/symphony.config.js +0 -41
@@ -1,61 +0,0 @@
1
- /**
2
- * Workflows Discovery API — Scans ~/.gemini/antigravity/global_workflows/
3
- * GET /api/workflows — list all available workflows with descriptions
4
- */
5
- import { NextResponse } from 'next/server';
6
- import { readdirSync, readFileSync, existsSync } from 'fs';
7
- import { join } from 'path';
8
- import { homedir } from 'os';
9
-
10
- const WORKFLOWS_DIR = join(homedir(), '.gemini', 'antigravity', 'global_workflows');
11
-
12
- function parseWorkflowMeta(content) {
13
- const match = content.match(/^---\n([\s\S]*?)\n---/);
14
- if (!match) return {};
15
- const fm = {};
16
- match[1].split('\n').forEach(line => {
17
- const idx = line.indexOf(':');
18
- if (idx > 0) {
19
- const key = line.substring(0, idx).trim();
20
- let val = line.substring(idx + 1).trim();
21
- if ((val.startsWith('"') && val.endsWith('"')) ||
22
- (val.startsWith("'") && val.endsWith("'"))) {
23
- val = val.slice(1, -1);
24
- }
25
- if (val !== '>-' && val !== '|') {
26
- fm[key] = val;
27
- }
28
- }
29
- });
30
- return fm;
31
- }
32
-
33
- export async function GET() {
34
- try {
35
- if (!existsSync(WORKFLOWS_DIR)) {
36
- return NextResponse.json({ workflows: [], total: 0 });
37
- }
38
-
39
- const files = readdirSync(WORKFLOWS_DIR).filter(f => f.endsWith('.md') && f !== 'README.md' && f !== 'AGENTS.md');
40
- const workflows = [];
41
-
42
- for (const file of files) {
43
- const content = readFileSync(join(WORKFLOWS_DIR, file), 'utf-8');
44
- const fm = parseWorkflowMeta(content);
45
- const command = '/' + file.replace('.md', '');
46
-
47
- workflows.push({
48
- id: file.replace('.md', ''),
49
- command,
50
- description: fm.description || '',
51
- file: file,
52
- });
53
- }
54
-
55
- workflows.sort((a, b) => a.command.localeCompare(b.command));
56
-
57
- return NextResponse.json({ workflows, total: workflows.length });
58
- } catch (err) {
59
- return NextResponse.json({ error: err.message }, { status: 500 });
60
- }
61
- }
@@ -1,15 +0,0 @@
1
- import { NextResponse } from 'next/server';
2
- import { listActiveWorkspaces } from '../../../lib/core.mjs';
3
-
4
- // GET /api/workspaces — List active workspaces
5
- export async function GET() {
6
- try {
7
- const workspaces = listActiveWorkspaces();
8
- return NextResponse.json({ workspaces });
9
- } catch (error) {
10
- return NextResponse.json(
11
- { error: error.message },
12
- { status: 500 }
13
- );
14
- }
15
- }