@leejungkiin/awkit 1.1.6 → 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 (84) hide show
  1. package/README.md +51 -1
  2. package/bin/awk.js +2 -2
  3. package/core/GEMINI.md +45 -7
  4. package/package.json +8 -5
  5. package/skill-packs/neural-memory/skills/nm-memory-sync/SKILL.md +14 -1
  6. package/skills/ab-test-store-listing/SKILL.md +220 -0
  7. package/skills/android-aso/SKILL.md +197 -0
  8. package/skills/app-analytics/SKILL.md +210 -0
  9. package/skills/app-clips/SKILL.md +163 -0
  10. package/skills/app-icon-optimization/SKILL.md +170 -0
  11. package/skills/app-launch/SKILL.md +153 -0
  12. package/skills/app-marketing-context/SKILL.md +129 -0
  13. package/skills/app-store-featured/SKILL.md +213 -0
  14. package/skills/apple-search-ads/SKILL.md +205 -0
  15. package/skills/asc-metrics/SKILL.md +157 -0
  16. package/skills/aso-audit/SKILL.md +179 -0
  17. package/skills/competitor-analysis/SKILL.md +163 -0
  18. package/skills/competitor-tracking/SKILL.md +185 -0
  19. package/skills/crash-analytics/SKILL.md +181 -0
  20. package/skills/gitnexus-intelligence/SKILL.md +224 -0
  21. package/skills/in-app-events/SKILL.md +176 -0
  22. package/skills/keyword-research/SKILL.md +141 -0
  23. package/skills/localization/SKILL.md +165 -0
  24. package/skills/market-movers/SKILL.md +137 -0
  25. package/skills/market-pulse/SKILL.md +170 -0
  26. package/skills/metadata-optimization/SKILL.md +170 -0
  27. package/skills/monetization-strategy/SKILL.md +175 -0
  28. package/skills/onboarding-optimization/SKILL.md +194 -0
  29. package/skills/orchestrator/SKILL.md +306 -25
  30. package/skills/press-and-pr/SKILL.md +204 -0
  31. package/skills/rating-prompt-strategy/SKILL.md +184 -0
  32. package/skills/retention-optimization/SKILL.md +165 -0
  33. package/skills/review-management/SKILL.md +154 -0
  34. package/skills/screenshot-optimization/SKILL.md +167 -0
  35. package/skills/seasonal-aso/SKILL.md +141 -0
  36. package/skills/spec-gate/SKILL.md +312 -0
  37. package/skills/subscription-lifecycle/SKILL.md +206 -0
  38. package/skills/swiftui-pro/references/design.md +44 -0
  39. package/skills/symphony-enforcer/SKILL.md +92 -11
  40. package/skills/symphony-orchestrator/SKILL.md +9 -7
  41. package/skills/systematic-debugging/SKILL.md +32 -7
  42. package/skills/ua-campaign/SKILL.md +207 -0
  43. package/skills/verification-gate/SKILL.md +23 -2
  44. package/workflows/gitnexus.md +123 -0
  45. package/symphony/LICENSE +0 -21
  46. package/symphony/README.md +0 -178
  47. package/symphony/app/api/agents/route.js +0 -152
  48. package/symphony/app/api/events/route.js +0 -22
  49. package/symphony/app/api/knowledge/route.js +0 -253
  50. package/symphony/app/api/locks/route.js +0 -29
  51. package/symphony/app/api/notes/route.js +0 -125
  52. package/symphony/app/api/preflight/route.js +0 -23
  53. package/symphony/app/api/projects/route.js +0 -116
  54. package/symphony/app/api/roles/route.js +0 -134
  55. package/symphony/app/api/skills/route.js +0 -82
  56. package/symphony/app/api/status/route.js +0 -18
  57. package/symphony/app/api/tasks/route.js +0 -157
  58. package/symphony/app/api/workflows/route.js +0 -61
  59. package/symphony/app/api/workspaces/route.js +0 -15
  60. package/symphony/app/globals.css +0 -2605
  61. package/symphony/app/layout.js +0 -20
  62. package/symphony/app/page.js +0 -2122
  63. package/symphony/cli/index.js +0 -1060
  64. package/symphony/core/agent-manager.js +0 -357
  65. package/symphony/core/context-bus.js +0 -100
  66. package/symphony/core/db.js +0 -223
  67. package/symphony/core/file-lock-manager.js +0 -154
  68. package/symphony/core/merge-pipeline.js +0 -234
  69. package/symphony/core/orchestrator.js +0 -236
  70. package/symphony/core/task-manager.js +0 -335
  71. package/symphony/core/workspace-manager.js +0 -168
  72. package/symphony/jsconfig.json +0 -7
  73. package/symphony/lib/core.mjs +0 -1034
  74. package/symphony/mcp/index.js +0 -29
  75. package/symphony/mcp/server.js +0 -110
  76. package/symphony/mcp/tools/context.js +0 -80
  77. package/symphony/mcp/tools/locks.js +0 -99
  78. package/symphony/mcp/tools/status.js +0 -82
  79. package/symphony/mcp/tools/tasks.js +0 -216
  80. package/symphony/mcp/tools/workspace.js +0 -143
  81. package/symphony/next.config.mjs +0 -7
  82. package/symphony/package.json +0 -53
  83. package/symphony/scripts/postinstall.js +0 -49
  84. 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
- }