@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.
- package/README.md +51 -1
- package/bin/awk.js +2 -2
- package/core/GEMINI.md +45 -7
- package/package.json +8 -5
- package/skill-packs/neural-memory/skills/nm-memory-sync/SKILL.md +14 -1
- package/skills/ab-test-store-listing/SKILL.md +220 -0
- package/skills/android-aso/SKILL.md +197 -0
- package/skills/app-analytics/SKILL.md +210 -0
- package/skills/app-clips/SKILL.md +163 -0
- package/skills/app-icon-optimization/SKILL.md +170 -0
- package/skills/app-launch/SKILL.md +153 -0
- package/skills/app-marketing-context/SKILL.md +129 -0
- package/skills/app-store-featured/SKILL.md +213 -0
- package/skills/apple-search-ads/SKILL.md +205 -0
- package/skills/asc-metrics/SKILL.md +157 -0
- package/skills/aso-audit/SKILL.md +179 -0
- package/skills/competitor-analysis/SKILL.md +163 -0
- package/skills/competitor-tracking/SKILL.md +185 -0
- package/skills/crash-analytics/SKILL.md +181 -0
- package/skills/gitnexus-intelligence/SKILL.md +224 -0
- package/skills/in-app-events/SKILL.md +176 -0
- package/skills/keyword-research/SKILL.md +141 -0
- package/skills/localization/SKILL.md +165 -0
- package/skills/market-movers/SKILL.md +137 -0
- package/skills/market-pulse/SKILL.md +170 -0
- package/skills/metadata-optimization/SKILL.md +170 -0
- package/skills/monetization-strategy/SKILL.md +175 -0
- package/skills/onboarding-optimization/SKILL.md +194 -0
- package/skills/orchestrator/SKILL.md +306 -25
- package/skills/press-and-pr/SKILL.md +204 -0
- package/skills/rating-prompt-strategy/SKILL.md +184 -0
- package/skills/retention-optimization/SKILL.md +165 -0
- package/skills/review-management/SKILL.md +154 -0
- package/skills/screenshot-optimization/SKILL.md +167 -0
- package/skills/seasonal-aso/SKILL.md +141 -0
- package/skills/spec-gate/SKILL.md +312 -0
- package/skills/subscription-lifecycle/SKILL.md +206 -0
- package/skills/swiftui-pro/references/design.md +44 -0
- package/skills/symphony-enforcer/SKILL.md +92 -11
- package/skills/symphony-orchestrator/SKILL.md +9 -7
- package/skills/systematic-debugging/SKILL.md +32 -7
- package/skills/ua-campaign/SKILL.md +207 -0
- package/skills/verification-gate/SKILL.md +23 -2
- package/workflows/gitnexus.md +123 -0
- package/symphony/LICENSE +0 -21
- package/symphony/README.md +0 -178
- package/symphony/app/api/agents/route.js +0 -152
- package/symphony/app/api/events/route.js +0 -22
- package/symphony/app/api/knowledge/route.js +0 -253
- package/symphony/app/api/locks/route.js +0 -29
- package/symphony/app/api/notes/route.js +0 -125
- package/symphony/app/api/preflight/route.js +0 -23
- package/symphony/app/api/projects/route.js +0 -116
- package/symphony/app/api/roles/route.js +0 -134
- package/symphony/app/api/skills/route.js +0 -82
- package/symphony/app/api/status/route.js +0 -18
- package/symphony/app/api/tasks/route.js +0 -157
- package/symphony/app/api/workflows/route.js +0 -61
- package/symphony/app/api/workspaces/route.js +0 -15
- package/symphony/app/globals.css +0 -2605
- package/symphony/app/layout.js +0 -20
- package/symphony/app/page.js +0 -2122
- package/symphony/cli/index.js +0 -1060
- package/symphony/core/agent-manager.js +0 -357
- package/symphony/core/context-bus.js +0 -100
- package/symphony/core/db.js +0 -223
- package/symphony/core/file-lock-manager.js +0 -154
- package/symphony/core/merge-pipeline.js +0 -234
- package/symphony/core/orchestrator.js +0 -236
- package/symphony/core/task-manager.js +0 -335
- package/symphony/core/workspace-manager.js +0 -168
- package/symphony/jsconfig.json +0 -7
- package/symphony/lib/core.mjs +0 -1034
- package/symphony/mcp/index.js +0 -29
- package/symphony/mcp/server.js +0 -110
- package/symphony/mcp/tools/context.js +0 -80
- package/symphony/mcp/tools/locks.js +0 -99
- package/symphony/mcp/tools/status.js +0 -82
- package/symphony/mcp/tools/tasks.js +0 -216
- package/symphony/mcp/tools/workspace.js +0 -143
- package/symphony/next.config.mjs +0 -7
- package/symphony/package.json +0 -53
- package/symphony/scripts/postinstall.js +0 -49
- 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
|
-
}
|