rahman-resources 1.4.0 → 1.5.1
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/lib/manifest.json +201 -263
- package/package.json +1 -1
package/lib/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 2,
|
|
3
|
-
"generatedAt": "2026-05-
|
|
3
|
+
"generatedAt": "2026-05-16T15:42:08.348Z",
|
|
4
4
|
"repo": "rahmanef63/resource-site",
|
|
5
5
|
"branch": "main",
|
|
6
6
|
"layouts": [
|
|
@@ -1342,31 +1342,10 @@
|
|
|
1342
1342
|
]
|
|
1343
1343
|
},
|
|
1344
1344
|
{
|
|
1345
|
-
"slug": "ai-
|
|
1346
|
-
"title": "AI
|
|
1347
|
-
"category": "ai",
|
|
1348
|
-
"description": "Backend infrastructure slice. Tier-routed LLM access — nano (Haiku) for classification, mid (Sonnet) for chat, flagship (Opus) for deep reasoning. Per-call usage log + cost guard. Works with direct Anthropic/OpenAI/Google keys or OpenRouter umbrella key. Every other AI slice calls through it.",
|
|
1349
|
-
"source": "rahmanef63/resource-site",
|
|
1350
|
-
"docsUrl": "https://sdk.vercel.ai/docs",
|
|
1351
|
-
"install": "npm i ai @openrouter/ai-sdk-provider",
|
|
1352
|
-
"npmPackages": [
|
|
1353
|
-
"ai",
|
|
1354
|
-
"@openrouter/ai-sdk-provider"
|
|
1355
|
-
],
|
|
1356
|
-
"exampleCode": "",
|
|
1357
|
-
"agentRecipe": "Wrap every AI call through ai-router action. Pick tier based on workload: nano for spam-flag/headline-suggest, mid for chat/draft, flagship for methodology-review. Log token usage to ai_usage table for cost dashboard.",
|
|
1358
|
-
"tags": [
|
|
1359
|
-
"ai",
|
|
1360
|
-
"ai:backend",
|
|
1361
|
-
"tier-routing",
|
|
1362
|
-
"cost-guard"
|
|
1363
|
-
]
|
|
1364
|
-
},
|
|
1365
|
-
{
|
|
1366
|
-
"slug": "ai-chatbot",
|
|
1367
|
-
"title": "AI Chatbot — Three-Column Workbench",
|
|
1345
|
+
"slug": "ai-chat",
|
|
1346
|
+
"title": "AI Chat — Workbench / Sidebar / Search",
|
|
1368
1347
|
"category": "ai",
|
|
1369
|
-
"description": "Claude.ai / ChatGPT
|
|
1348
|
+
"description": "One conversational AI feature, three render modes. Same Convex backend (threads + streaming + tool calls + RAG), pick the surface via prop:\n\n • workbench — Claude.ai / ChatGPT three-column page (default)\n • sidebar — collapsible copilot panel inside another CRUD app\n • search — single-question + answer + citations (Perplexity)\n\nUse cases:\n – Customer-support chatbot embedded in your marketing site\n – Developer copilot in your PR/docs admin\n – Knowledge-base search over your blog + docs corpus\n – Internal AI assistant in your dashboard\n\nWhat it ships: multi-provider (Anthropic / OpenAI / Google / Mistral / Ollama), multimodal (text + image + PDF + audio), typed tool calls with inline inspector, agent mode (plan→execute→reflect), branching threads, RAG citations, resumable streams, usage telemetry. Public surface = consumer chat; admin surface = persona, fallback, guardrails per-bot.",
|
|
1370
1349
|
"source": "rahmanef63/resource-site",
|
|
1371
1350
|
"docsUrl": "https://sdk.vercel.ai/docs",
|
|
1372
1351
|
"install": "npm i ai @ai-sdk/anthropic @ai-sdk/openai",
|
|
@@ -1376,10 +1355,10 @@
|
|
|
1376
1355
|
"@ai-sdk/openai"
|
|
1377
1356
|
],
|
|
1378
1357
|
"exampleCode": "",
|
|
1379
|
-
"agentRecipe": "Run `npx rr add ai-
|
|
1358
|
+
"agentRecipe": "Run `npx rr add ai-chat`. Pick `mode=\"workbench\" | \"sidebar\" | \"search\"` on `<AIChat />` (or use the convenience exports `<AIChatWorkbench />`, `<AIChatSidebar />`, `<AIChatSearch />`). Same backend tables + streaming action for all three.",
|
|
1380
1359
|
"tags": [
|
|
1381
1360
|
"ai",
|
|
1382
|
-
"ai:
|
|
1361
|
+
"ai:chat",
|
|
1383
1362
|
"streaming",
|
|
1384
1363
|
"multimodal",
|
|
1385
1364
|
"tool-calls",
|
|
@@ -1391,18 +1370,18 @@
|
|
|
1391
1370
|
]
|
|
1392
1371
|
},
|
|
1393
1372
|
{
|
|
1394
|
-
"slug": "ai-
|
|
1395
|
-
"title": "AI
|
|
1373
|
+
"slug": "ai-studio",
|
|
1374
|
+
"title": "AI Studio — Generation Canvas",
|
|
1396
1375
|
"category": "ai",
|
|
1397
|
-
"description": "AI is the primary UI — single big prompt input → live-streaming
|
|
1376
|
+
"description": "AI is the primary UI — single big prompt input → live-streaming output → variation grid → version tree. Suno / Midjourney / Lovable / v0 pattern. Output kinds: text, code, image, audio (configurable per template).\n\nUse cases:\n – AI image generation product (creative output)\n – AI logo / banner / social-post studio\n – AI code-snippet generator (component scaffolder)\n – AI music / voiceover producer\n – AI blog-draft factory (text)\n\nFeatures: prompt history, branch + compare outputs, like + favorite, share-to-link, templates from ai-admin.",
|
|
1398
1377
|
"source": "rahmanef63/resource-site",
|
|
1399
1378
|
"install": "",
|
|
1400
1379
|
"npmPackages": [],
|
|
1401
1380
|
"exampleCode": "",
|
|
1402
|
-
"agentRecipe": "Run `npx rr add ai-
|
|
1381
|
+
"agentRecipe": "Run `npx rr add ai-studio`. Mount `<GeneratorCanvas />` at /. Use case: prompt → output IS the entire product. Wire your output renderer (text/image/code/audio) via the OutputSlot adapter. Templates loaded from ai-admin.studio.templates.",
|
|
1403
1382
|
"tags": [
|
|
1404
1383
|
"ai",
|
|
1405
|
-
"ai:
|
|
1384
|
+
"ai:studio",
|
|
1406
1385
|
"generation",
|
|
1407
1386
|
"streaming",
|
|
1408
1387
|
"history",
|
|
@@ -1411,37 +1390,18 @@
|
|
|
1411
1390
|
]
|
|
1412
1391
|
},
|
|
1413
1392
|
{
|
|
1414
|
-
"slug": "ai-
|
|
1415
|
-
"title": "AI
|
|
1393
|
+
"slug": "ai-agents",
|
|
1394
|
+
"title": "AI Agents — Autonomous Workers",
|
|
1416
1395
|
"category": "ai",
|
|
1417
|
-
"description": "AI
|
|
1396
|
+
"description": "Background AI workers. Define an agent (skill × model × tools × max-iter), trigger it on-demand or on a cron schedule, watch the step-by-step trace as it runs. Devin / Replit-Agent / Manus pattern.\n\nUse cases:\n – Nightly audit-bp on the codebase (PR-reviewer style)\n – Weekly SEO crawl + content suggestions\n – Auto-moderate comment queue\n – Scheduled data ingestion + summarization\n – Long-form research task with multi-source citations\n\nFeatures: queue + live trace, per-step retry policy, hard cost cap, shareable trace URLs, full audit-log integration.",
|
|
1418
1397
|
"source": "rahmanef63/resource-site",
|
|
1419
1398
|
"install": "",
|
|
1420
1399
|
"npmPackages": [],
|
|
1421
1400
|
"exampleCode": "",
|
|
1422
|
-
"agentRecipe": "Run `npx rr add ai-
|
|
1401
|
+
"agentRecipe": "Run `npx rr add ai-agents`. Mount `<RunnerDashboard />` at /agents. Trigger runs via `runAgent({agentSlug, input, scheduleAt?})`. Cron scheduler via Convex cron — wire if you need scheduled runs. Agent definitions managed in ai-admin.",
|
|
1423
1402
|
"tags": [
|
|
1424
1403
|
"ai",
|
|
1425
|
-
"ai:
|
|
1426
|
-
"streaming",
|
|
1427
|
-
"tool-calls",
|
|
1428
|
-
"suggestions",
|
|
1429
|
-
"context-aware"
|
|
1430
|
-
]
|
|
1431
|
-
},
|
|
1432
|
-
{
|
|
1433
|
-
"slug": "ai-agent-runner",
|
|
1434
|
-
"title": "AI Agent Runner — Async Worker Dashboard",
|
|
1435
|
-
"category": "ai",
|
|
1436
|
-
"description": "Autonomous background agents. Public surface = task queue + run results dashboard with step-by-step traces (Devin/Replit-Agent style). Admin surface = agent registry (skill + model + tool subset + max-iter + schedule + concurrency caps) + retry/backoff policy. Each run produces an audit-log entry, cost tally, and shareable trace URL.",
|
|
1437
|
-
"source": "rahmanef63/resource-site",
|
|
1438
|
-
"install": "",
|
|
1439
|
-
"npmPackages": [],
|
|
1440
|
-
"exampleCode": "",
|
|
1441
|
-
"agentRecipe": "Run `npx rr add ai-agent-runner`. Mount `<RunnerDashboard />` at /agents. Trigger runs via `runAgent({agentSlug, input, scheduleAt?})`. Cron scheduler optional via Convex cron — wire if you need scheduled runs.",
|
|
1442
|
-
"tags": [
|
|
1443
|
-
"ai",
|
|
1444
|
-
"ai:agent",
|
|
1404
|
+
"ai:agents",
|
|
1445
1405
|
"agent-mode",
|
|
1446
1406
|
"tool-calls",
|
|
1447
1407
|
"async",
|
|
@@ -1450,44 +1410,47 @@
|
|
|
1450
1410
|
]
|
|
1451
1411
|
},
|
|
1452
1412
|
{
|
|
1453
|
-
"slug": "ai-
|
|
1454
|
-
"title": "AI
|
|
1413
|
+
"slug": "ai-admin",
|
|
1414
|
+
"title": "AI Admin — Console (Instructions · Skills · Tools · Agents · Providers)",
|
|
1455
1415
|
"category": "ai",
|
|
1456
|
-
"description": "
|
|
1416
|
+
"description": "Central operator console for the whole AI stack. Every other ai-* feature reads its registries from here. Tabs ordered to match the build-flow:\n\n 1. Providers — register Anthropic / OpenAI / Google / Mistral / Ollama (API keys AES-encrypted at rest)\n 2. Models — per-provider catalog (capabilities, context window, pricing)\n 3. Instructions — custom system-prompt library (Claude Projects-style)\n 4. Skills — named instruction + model default + tool defaults (consumed by chat + studio)\n 5. Tools — JSON-schema function specs + impl (http / convex / shell) + sandbox flag\n 6. Agents — skill × model × tools × max-iter (consumed by ai-agents)\n 7. Budgets — per-workspace cost caps + alerts + hard kill\n 8. Audit — every AI call: actor / agent / tokens / cost / latency / outcome\n\nIncludes Create-Agent / Create-Skill / Create-Tool / Create-Instruction wizards.",
|
|
1457
1417
|
"source": "rahmanef63/resource-site",
|
|
1458
1418
|
"install": "",
|
|
1459
1419
|
"npmPackages": [],
|
|
1460
1420
|
"exampleCode": "",
|
|
1461
|
-
"agentRecipe": "Run `npx rr add ai-
|
|
1421
|
+
"agentRecipe": "Run `npx rr add ai-admin`. Adds an `AI` section to the admin-panel ADMIN_SECTIONS registry. Sub-tabs ordered to match build-flow: Providers → Models → Instructions → Skills → Tools → Agents → Budgets → Audit. Includes Create-* wizards for instructions / skills / tools / agents. API keys AES-encrypted via AI_ADMIN_ENCRYPTION_KEY env. The instruction / skill / tool / agent registries are SSOTs consumed by every ai-* consumer slice (chat + studio + agents).",
|
|
1462
1422
|
"tags": [
|
|
1463
1423
|
"ai",
|
|
1464
|
-
"ai:
|
|
1465
|
-
"
|
|
1466
|
-
"
|
|
1467
|
-
"
|
|
1468
|
-
"
|
|
1424
|
+
"ai:admin",
|
|
1425
|
+
"instructions",
|
|
1426
|
+
"skills",
|
|
1427
|
+
"tools",
|
|
1428
|
+
"agents",
|
|
1429
|
+
"providers",
|
|
1430
|
+
"models",
|
|
1431
|
+
"budgets",
|
|
1432
|
+
"audit"
|
|
1469
1433
|
]
|
|
1470
1434
|
},
|
|
1471
1435
|
{
|
|
1472
|
-
"slug": "ai-
|
|
1473
|
-
"title": "AI
|
|
1436
|
+
"slug": "ai-router",
|
|
1437
|
+
"title": "AI Router — Backend Provider Proxy",
|
|
1474
1438
|
"category": "ai",
|
|
1475
|
-
"description": "
|
|
1439
|
+
"description": "Backend infrastructure (no UI). Single proxy that every other ai-* feature calls. Tier-routed — nano (Haiku) for classification, mid (Sonnet) for chat, flagship (Opus) for deep reasoning. Per-call usage log + cost guard. Works with direct provider keys or OpenRouter umbrella.\n\nNot something you mount — installed automatically as a peer when you add ai-chat / ai-studio / ai-agents.",
|
|
1476
1440
|
"source": "rahmanef63/resource-site",
|
|
1477
|
-
"
|
|
1478
|
-
"
|
|
1441
|
+
"docsUrl": "https://sdk.vercel.ai/docs",
|
|
1442
|
+
"install": "npm i ai @openrouter/ai-sdk-provider",
|
|
1443
|
+
"npmPackages": [
|
|
1444
|
+
"ai",
|
|
1445
|
+
"@openrouter/ai-sdk-provider"
|
|
1446
|
+
],
|
|
1479
1447
|
"exampleCode": "",
|
|
1480
|
-
"agentRecipe": "
|
|
1448
|
+
"agentRecipe": "Wrap every AI call through ai-router. Tiers: nano = quick classification (spam-flag, headline-suggest), mid = chat / draft, flagship = methodology-review / deep-think. Token usage logs to ai_usage table for the cost dashboard.",
|
|
1481
1449
|
"tags": [
|
|
1482
1450
|
"ai",
|
|
1483
|
-
"ai:
|
|
1484
|
-
"
|
|
1485
|
-
"
|
|
1486
|
-
"models",
|
|
1487
|
-
"skills",
|
|
1488
|
-
"tools",
|
|
1489
|
-
"agents",
|
|
1490
|
-
"budgets"
|
|
1451
|
+
"ai:backend",
|
|
1452
|
+
"tier-routing",
|
|
1453
|
+
"cost-guard"
|
|
1491
1454
|
]
|
|
1492
1455
|
},
|
|
1493
1456
|
{
|
|
@@ -1896,6 +1859,28 @@
|
|
|
1896
1859
|
"backend"
|
|
1897
1860
|
]
|
|
1898
1861
|
},
|
|
1862
|
+
{
|
|
1863
|
+
"slug": "create-your-mcp",
|
|
1864
|
+
"title": "Create Your MCP",
|
|
1865
|
+
"category": "ai",
|
|
1866
|
+
"description": "Turn any rr-based app into an MCP server that ChatGPT custom apps, Claude.ai connectors, Cursor MCP, and other AI clients authenticate to. OAuth 2.1 + PKCE flow with code → bearer exchange, env-configured vendor-host allowlist, single-use codes, 1-year bearer tokens, scope-tagged tools, opaque error collapsing, constant-time token compare. Static MCP_API_KEY fallback for service-account / CI scripts. Sanitized 2026-05-16 from rahmanef.com's production MCP integration — vendor literals (chatgpt.com / OpenAI paths) replaced with MCP_OAUTH_ALLOWED_HOSTS + MCP_OAUTH_ALLOWED_PATH_PREFIXES env vars so the slice ships portable.",
|
|
1867
|
+
"source": "rahmanef.com",
|
|
1868
|
+
"install": "npx rahman-resources add create-your-mcp",
|
|
1869
|
+
"npmPackages": [],
|
|
1870
|
+
"exampleCode": "",
|
|
1871
|
+
"agentRecipe": "Run `npx rr add create-your-mcp`. Compose `createYourMcpTables` into root schema. Move `slices/create-your-mcp/routes/mcp.route.ts` → `app/api/mcp/route.ts` and `oauth-token.route.ts` → `app/api/oauth/token/route.ts`. Set MCP_OAUTH_ALLOWED_HOSTS (CSV vendor domains). Mount `<McpAdminView />` at /admin/mcp. Connect ChatGPT/Claude/Cursor via the setup form rendered by the admin view.",
|
|
1872
|
+
"tags": [
|
|
1873
|
+
"ai",
|
|
1874
|
+
"mcp",
|
|
1875
|
+
"oauth",
|
|
1876
|
+
"pkce",
|
|
1877
|
+
"chatgpt",
|
|
1878
|
+
"claude",
|
|
1879
|
+
"cursor",
|
|
1880
|
+
"convex",
|
|
1881
|
+
"integration"
|
|
1882
|
+
]
|
|
1883
|
+
},
|
|
1899
1884
|
{
|
|
1900
1885
|
"slug": "contact-form-resend",
|
|
1901
1886
|
"title": "Contact Form + Resend",
|
|
@@ -2240,52 +2225,16 @@
|
|
|
2240
2225
|
"agentRecipe": "Use Resend Audiences API for newsletter — store subscriber emails in Convex too for segmentation. Double opt-in: subscriber.create with status 'pending' → click link → status 'confirmed'."
|
|
2241
2226
|
},
|
|
2242
2227
|
{
|
|
2243
|
-
"slug": "ai-
|
|
2244
|
-
"title": "AI
|
|
2245
|
-
"category": "ai",
|
|
2246
|
-
"kind": "backend",
|
|
2247
|
-
"version": "0.1.0",
|
|
2248
|
-
"description": "Backend infrastructure slice. Tier-routed LLM access — nano (Haiku) for classification, mid (Sonnet) for chat, flagship (Opus) for deep reasoning. Per-call usage log + cost guard. Works with direct Anthropic/OpenAI/Google keys or OpenRouter umbrella key. Every other AI slice calls through it.",
|
|
2249
|
-
"source": "rahmanef63/resource-site",
|
|
2250
|
-
"slicePath": "frontend/slices/ai-router",
|
|
2251
|
-
"convexPaths": [
|
|
2252
|
-
"convex/features/ai"
|
|
2253
|
-
],
|
|
2254
|
-
"npm": [
|
|
2255
|
-
"ai@^4.0.0",
|
|
2256
|
-
"@openrouter/ai-sdk-provider@^0.0.5"
|
|
2257
|
-
],
|
|
2258
|
-
"shadcn": [
|
|
2259
|
-
"button"
|
|
2260
|
-
],
|
|
2261
|
-
"env": [
|
|
2262
|
-
{
|
|
2263
|
-
"name": "OPENROUTER_API_KEY",
|
|
2264
|
-
"scope": "convex",
|
|
2265
|
-
"required": true
|
|
2266
|
-
}
|
|
2267
|
-
],
|
|
2268
|
-
"peers": [],
|
|
2269
|
-
"providers": [],
|
|
2270
|
-
"tags": [
|
|
2271
|
-
"ai",
|
|
2272
|
-
"ai:backend",
|
|
2273
|
-
"tier-routing",
|
|
2274
|
-
"cost-guard"
|
|
2275
|
-
],
|
|
2276
|
-
"agentRecipe": "Wrap every AI call through ai-router action. Pick tier based on workload: nano for spam-flag/headline-suggest, mid for chat/draft, flagship for methodology-review. Log token usage to ai_usage table for cost dashboard."
|
|
2277
|
-
},
|
|
2278
|
-
{
|
|
2279
|
-
"slug": "ai-chatbot",
|
|
2280
|
-
"title": "AI Chatbot — Three-Column Workbench",
|
|
2228
|
+
"slug": "ai-chat",
|
|
2229
|
+
"title": "AI Chat — Workbench / Sidebar / Search",
|
|
2281
2230
|
"category": "ai",
|
|
2282
2231
|
"kind": "full",
|
|
2283
2232
|
"version": "0.1.0",
|
|
2284
|
-
"description": "Claude.ai / ChatGPT
|
|
2233
|
+
"description": "One conversational AI feature, three render modes. Same Convex backend (threads + streaming + tool calls + RAG), pick the surface via prop:\n\n • workbench — Claude.ai / ChatGPT three-column page (default)\n • sidebar — collapsible copilot panel inside another CRUD app\n • search — single-question + answer + citations (Perplexity)\n\nUse cases:\n – Customer-support chatbot embedded in your marketing site\n – Developer copilot in your PR/docs admin\n – Knowledge-base search over your blog + docs corpus\n – Internal AI assistant in your dashboard\n\nWhat it ships: multi-provider (Anthropic / OpenAI / Google / Mistral / Ollama), multimodal (text + image + PDF + audio), typed tool calls with inline inspector, agent mode (plan→execute→reflect), branching threads, RAG citations, resumable streams, usage telemetry. Public surface = consumer chat; admin surface = persona, fallback, guardrails per-bot.",
|
|
2285
2234
|
"source": "rahmanef63/resource-site",
|
|
2286
|
-
"slicePath": "frontend/slices/ai-
|
|
2235
|
+
"slicePath": "frontend/slices/ai-chat",
|
|
2287
2236
|
"convexPaths": [
|
|
2288
|
-
"convex/features/ai-
|
|
2237
|
+
"convex/features/ai-chat"
|
|
2289
2238
|
],
|
|
2290
2239
|
"npm": [
|
|
2291
2240
|
"ai@^4.0.0",
|
|
@@ -2303,7 +2252,9 @@
|
|
|
2303
2252
|
"slider",
|
|
2304
2253
|
"switch",
|
|
2305
2254
|
"textarea",
|
|
2306
|
-
"tabs"
|
|
2255
|
+
"tabs",
|
|
2256
|
+
"command",
|
|
2257
|
+
"sheet"
|
|
2307
2258
|
],
|
|
2308
2259
|
"env": [
|
|
2309
2260
|
{
|
|
@@ -2336,18 +2287,18 @@
|
|
|
2336
2287
|
{
|
|
2337
2288
|
"slug": "ai-admin",
|
|
2338
2289
|
"range": "^0.1",
|
|
2339
|
-
"reason": "Reads skills/tools/models from ai-admin registry."
|
|
2290
|
+
"reason": "Reads instructions / skills / tools / models from ai-admin registry."
|
|
2340
2291
|
},
|
|
2341
2292
|
{
|
|
2342
2293
|
"slug": "vector-search",
|
|
2343
2294
|
"range": "^0.1",
|
|
2344
|
-
"reason": "Optional — RAG
|
|
2295
|
+
"reason": "Optional — RAG / search modes pull workspace embeddings."
|
|
2345
2296
|
}
|
|
2346
2297
|
],
|
|
2347
2298
|
"providers": [],
|
|
2348
2299
|
"tags": [
|
|
2349
2300
|
"ai",
|
|
2350
|
-
"ai:
|
|
2301
|
+
"ai:chat",
|
|
2351
2302
|
"streaming",
|
|
2352
2303
|
"multimodal",
|
|
2353
2304
|
"tool-calls",
|
|
@@ -2357,19 +2308,19 @@
|
|
|
2357
2308
|
"branching",
|
|
2358
2309
|
"history"
|
|
2359
2310
|
],
|
|
2360
|
-
"agentRecipe": "Run `npx rr add ai-
|
|
2311
|
+
"agentRecipe": "Run `npx rr add ai-chat`. Pick `mode=\"workbench\" | \"sidebar\" | \"search\"` on `<AIChat />` (or use the convenience exports `<AIChatWorkbench />`, `<AIChatSidebar />`, `<AIChatSearch />`). Same backend tables + streaming action for all three."
|
|
2361
2312
|
},
|
|
2362
2313
|
{
|
|
2363
|
-
"slug": "ai-
|
|
2364
|
-
"title": "AI
|
|
2314
|
+
"slug": "ai-studio",
|
|
2315
|
+
"title": "AI Studio — Generation Canvas",
|
|
2365
2316
|
"category": "ai",
|
|
2366
2317
|
"kind": "full",
|
|
2367
2318
|
"version": "0.1.0",
|
|
2368
|
-
"description": "AI is the primary UI — single big prompt input → live-streaming
|
|
2319
|
+
"description": "AI is the primary UI — single big prompt input → live-streaming output → variation grid → version tree. Suno / Midjourney / Lovable / v0 pattern. Output kinds: text, code, image, audio (configurable per template).\n\nUse cases:\n – AI image generation product (creative output)\n – AI logo / banner / social-post studio\n – AI code-snippet generator (component scaffolder)\n – AI music / voiceover producer\n – AI blog-draft factory (text)\n\nFeatures: prompt history, branch + compare outputs, like + favorite, share-to-link, templates from ai-admin.",
|
|
2369
2320
|
"source": "rahmanef63/resource-site",
|
|
2370
|
-
"slicePath": "frontend/slices/ai-
|
|
2321
|
+
"slicePath": "frontend/slices/ai-studio",
|
|
2371
2322
|
"convexPaths": [
|
|
2372
|
-
"convex/features/ai-
|
|
2323
|
+
"convex/features/ai-studio"
|
|
2373
2324
|
],
|
|
2374
2325
|
"npm": [
|
|
2375
2326
|
"ai@^4.0.0"
|
|
@@ -2399,86 +2350,32 @@
|
|
|
2399
2350
|
{
|
|
2400
2351
|
"slug": "ai-admin",
|
|
2401
2352
|
"range": "^0.1",
|
|
2402
|
-
"reason": "Templates + moderation rules live in ai-admin."
|
|
2353
|
+
"reason": "Templates + few-shot library + moderation rules live in ai-admin."
|
|
2403
2354
|
}
|
|
2404
2355
|
],
|
|
2405
2356
|
"providers": [],
|
|
2406
2357
|
"tags": [
|
|
2407
2358
|
"ai",
|
|
2408
|
-
"ai:
|
|
2359
|
+
"ai:studio",
|
|
2409
2360
|
"generation",
|
|
2410
2361
|
"streaming",
|
|
2411
2362
|
"history",
|
|
2412
2363
|
"branching",
|
|
2413
2364
|
"image-gen"
|
|
2414
2365
|
],
|
|
2415
|
-
"agentRecipe": "Run `npx rr add ai-
|
|
2366
|
+
"agentRecipe": "Run `npx rr add ai-studio`. Mount `<GeneratorCanvas />` at /. Use case: prompt → output IS the entire product. Wire your output renderer (text/image/code/audio) via the OutputSlot adapter. Templates loaded from ai-admin.studio.templates."
|
|
2416
2367
|
},
|
|
2417
2368
|
{
|
|
2418
|
-
"slug": "ai-
|
|
2419
|
-
"title": "AI
|
|
2369
|
+
"slug": "ai-agents",
|
|
2370
|
+
"title": "AI Agents — Autonomous Workers",
|
|
2420
2371
|
"category": "ai",
|
|
2421
2372
|
"kind": "full",
|
|
2422
2373
|
"version": "0.1.0",
|
|
2423
|
-
"description": "AI
|
|
2374
|
+
"description": "Background AI workers. Define an agent (skill × model × tools × max-iter), trigger it on-demand or on a cron schedule, watch the step-by-step trace as it runs. Devin / Replit-Agent / Manus pattern.\n\nUse cases:\n – Nightly audit-bp on the codebase (PR-reviewer style)\n – Weekly SEO crawl + content suggestions\n – Auto-moderate comment queue\n – Scheduled data ingestion + summarization\n – Long-form research task with multi-source citations\n\nFeatures: queue + live trace, per-step retry policy, hard cost cap, shareable trace URLs, full audit-log integration.",
|
|
2424
2375
|
"source": "rahmanef63/resource-site",
|
|
2425
|
-
"slicePath": "frontend/slices/ai-
|
|
2376
|
+
"slicePath": "frontend/slices/ai-agents",
|
|
2426
2377
|
"convexPaths": [
|
|
2427
|
-
"convex/features/ai-
|
|
2428
|
-
],
|
|
2429
|
-
"npm": [
|
|
2430
|
-
"ai@^4.0.0"
|
|
2431
|
-
],
|
|
2432
|
-
"shadcn": [
|
|
2433
|
-
"button",
|
|
2434
|
-
"card",
|
|
2435
|
-
"badge",
|
|
2436
|
-
"command",
|
|
2437
|
-
"scroll-area",
|
|
2438
|
-
"sheet",
|
|
2439
|
-
"separator",
|
|
2440
|
-
"tooltip"
|
|
2441
|
-
],
|
|
2442
|
-
"env": [],
|
|
2443
|
-
"peers": [
|
|
2444
|
-
{
|
|
2445
|
-
"slug": "convex-auth",
|
|
2446
|
-
"range": "^0.1",
|
|
2447
|
-
"reason": "Suggestions scoped to authed user."
|
|
2448
|
-
},
|
|
2449
|
-
{
|
|
2450
|
-
"slug": "ai-router",
|
|
2451
|
-
"range": "^0.1",
|
|
2452
|
-
"reason": "Inference via tiered router."
|
|
2453
|
-
},
|
|
2454
|
-
{
|
|
2455
|
-
"slug": "ai-admin",
|
|
2456
|
-
"range": "^0.1",
|
|
2457
|
-
"reason": "Trigger rules + personas live in ai-admin."
|
|
2458
|
-
}
|
|
2459
|
-
],
|
|
2460
|
-
"providers": [],
|
|
2461
|
-
"tags": [
|
|
2462
|
-
"ai",
|
|
2463
|
-
"ai:copilot",
|
|
2464
|
-
"streaming",
|
|
2465
|
-
"tool-calls",
|
|
2466
|
-
"suggestions",
|
|
2467
|
-
"context-aware"
|
|
2468
|
-
],
|
|
2469
|
-
"agentRecipe": "Run `npx rr add ai-copilot`. Wrap your host app in `<CopilotProvider>` and mount `<CopilotPanel />` in the page shell. Register entity → prompt mappings in ai-admin.copilot.triggers."
|
|
2470
|
-
},
|
|
2471
|
-
{
|
|
2472
|
-
"slug": "ai-agent-runner",
|
|
2473
|
-
"title": "AI Agent Runner — Async Worker Dashboard",
|
|
2474
|
-
"category": "ai",
|
|
2475
|
-
"kind": "full",
|
|
2476
|
-
"version": "0.1.0",
|
|
2477
|
-
"description": "Autonomous background agents. Public surface = task queue + run results dashboard with step-by-step traces (Devin/Replit-Agent style). Admin surface = agent registry (skill + model + tool subset + max-iter + schedule + concurrency caps) + retry/backoff policy. Each run produces an audit-log entry, cost tally, and shareable trace URL.",
|
|
2478
|
-
"source": "rahmanef63/resource-site",
|
|
2479
|
-
"slicePath": "frontend/slices/ai-agent-runner",
|
|
2480
|
-
"convexPaths": [
|
|
2481
|
-
"convex/features/ai-agent-runner"
|
|
2378
|
+
"convex/features/ai-agents"
|
|
2482
2379
|
],
|
|
2483
2380
|
"npm": [
|
|
2484
2381
|
"ai@^4.0.0"
|
|
@@ -2507,7 +2404,7 @@
|
|
|
2507
2404
|
{
|
|
2508
2405
|
"slug": "ai-admin",
|
|
2509
2406
|
"range": "^0.1",
|
|
2510
|
-
"reason": "
|
|
2407
|
+
"reason": "Agent definitions live in ai-admin → Agents."
|
|
2511
2408
|
},
|
|
2512
2409
|
{
|
|
2513
2410
|
"slug": "audit-log",
|
|
@@ -2518,80 +2415,22 @@
|
|
|
2518
2415
|
"providers": [],
|
|
2519
2416
|
"tags": [
|
|
2520
2417
|
"ai",
|
|
2521
|
-
"ai:
|
|
2418
|
+
"ai:agents",
|
|
2522
2419
|
"agent-mode",
|
|
2523
2420
|
"tool-calls",
|
|
2524
2421
|
"async",
|
|
2525
2422
|
"queue",
|
|
2526
2423
|
"traces"
|
|
2527
2424
|
],
|
|
2528
|
-
"agentRecipe": "Run `npx rr add ai-
|
|
2529
|
-
},
|
|
2530
|
-
{
|
|
2531
|
-
"slug": "ai-search",
|
|
2532
|
-
"title": "AI Search — Ask with Citations",
|
|
2533
|
-
"category": "ai",
|
|
2534
|
-
"kind": "full",
|
|
2535
|
-
"version": "0.1.0",
|
|
2536
|
-
"description": "Perplexity-style answer engine over a workspace corpus. Public surface = ask box + streaming answer with inline numbered citations + source cards strip. Admin surface = corpus ingestion (URLs / files / Notion / Slack) + crawl schedule + reranker tuning + per-source weight.",
|
|
2537
|
-
"source": "rahmanef63/resource-site",
|
|
2538
|
-
"slicePath": "frontend/slices/ai-search",
|
|
2539
|
-
"convexPaths": [
|
|
2540
|
-
"convex/features/ai-search"
|
|
2541
|
-
],
|
|
2542
|
-
"npm": [
|
|
2543
|
-
"ai@^4.0.0"
|
|
2544
|
-
],
|
|
2545
|
-
"shadcn": [
|
|
2546
|
-
"button",
|
|
2547
|
-
"card",
|
|
2548
|
-
"badge",
|
|
2549
|
-
"input",
|
|
2550
|
-
"tabs",
|
|
2551
|
-
"scroll-area",
|
|
2552
|
-
"separator"
|
|
2553
|
-
],
|
|
2554
|
-
"env": [],
|
|
2555
|
-
"peers": [
|
|
2556
|
-
{
|
|
2557
|
-
"slug": "convex-auth",
|
|
2558
|
-
"range": "^0.1",
|
|
2559
|
-
"reason": "Per-workspace corpus scoping."
|
|
2560
|
-
},
|
|
2561
|
-
{
|
|
2562
|
-
"slug": "ai-router",
|
|
2563
|
-
"range": "^0.1",
|
|
2564
|
-
"reason": "Answer synthesis via router."
|
|
2565
|
-
},
|
|
2566
|
-
{
|
|
2567
|
-
"slug": "ai-admin",
|
|
2568
|
-
"range": "^0.1",
|
|
2569
|
-
"reason": "Reranker + source weights tunable in ai-admin."
|
|
2570
|
-
},
|
|
2571
|
-
{
|
|
2572
|
-
"slug": "vector-search",
|
|
2573
|
-
"range": "^0.1",
|
|
2574
|
-
"reason": "Embeddings index for retrieval."
|
|
2575
|
-
}
|
|
2576
|
-
],
|
|
2577
|
-
"providers": [],
|
|
2578
|
-
"tags": [
|
|
2579
|
-
"ai",
|
|
2580
|
-
"ai:search",
|
|
2581
|
-
"rag",
|
|
2582
|
-
"citations",
|
|
2583
|
-
"streaming",
|
|
2584
|
-
"corpus"
|
|
2585
|
-
],
|
|
2586
|
-
"agentRecipe": "Run `npx rr add ai-search`. Mount `<AskBox />` at /ask. Ingestion runs in ai-admin → AI Search → Sources. Wire vector-search slice for embedding store."
|
|
2425
|
+
"agentRecipe": "Run `npx rr add ai-agents`. Mount `<RunnerDashboard />` at /agents. Trigger runs via `runAgent({agentSlug, input, scheduleAt?})`. Cron scheduler via Convex cron — wire if you need scheduled runs. Agent definitions managed in ai-admin."
|
|
2587
2426
|
},
|
|
2588
2427
|
{
|
|
2589
2428
|
"slug": "ai-admin",
|
|
2590
|
-
"title": "AI Admin —
|
|
2429
|
+
"title": "AI Admin — Console (Instructions · Skills · Tools · Agents · Providers)",
|
|
2591
2430
|
"category": "ai",
|
|
2592
2431
|
"kind": "full",
|
|
2593
|
-
"version": "0.
|
|
2594
|
-
"description": "
|
|
2432
|
+
"version": "0.2.0",
|
|
2433
|
+
"description": "Central operator console for the whole AI stack. Every other ai-* feature reads its registries from here. Tabs ordered to match the build-flow:\n\n 1. Providers — register Anthropic / OpenAI / Google / Mistral / Ollama (API keys AES-encrypted at rest)\n 2. Models — per-provider catalog (capabilities, context window, pricing)\n 3. Instructions — custom system-prompt library (Claude Projects-style)\n 4. Skills — named instruction + model default + tool defaults (consumed by chat + studio)\n 5. Tools — JSON-schema function specs + impl (http / convex / shell) + sandbox flag\n 6. Agents — skill × model × tools × max-iter (consumed by ai-agents)\n 7. Budgets — per-workspace cost caps + alerts + hard kill\n 8. Audit — every AI call: actor / agent / tokens / cost / latency / outcome\n\nIncludes Create-Agent / Create-Skill / Create-Tool / Create-Instruction wizards.",
|
|
2595
2434
|
"source": "rahmanef63/resource-site",
|
|
2596
2435
|
"slicePath": "frontend/slices/ai-admin",
|
|
2597
2436
|
"convexPaths": [
|
|
@@ -2609,7 +2448,8 @@
|
|
|
2609
2448
|
"label",
|
|
2610
2449
|
"select",
|
|
2611
2450
|
"textarea",
|
|
2612
|
-
"switch"
|
|
2451
|
+
"switch",
|
|
2452
|
+
"command"
|
|
2613
2453
|
],
|
|
2614
2454
|
"env": [
|
|
2615
2455
|
{
|
|
@@ -2628,7 +2468,7 @@
|
|
|
2628
2468
|
{
|
|
2629
2469
|
"slug": "rbac-roles",
|
|
2630
2470
|
"range": "^0.1",
|
|
2631
|
-
"reason": "Section gated by
|
|
2471
|
+
"reason": "Section gated by ai.* permissions (manage_providers, manage_skills, etc)."
|
|
2632
2472
|
},
|
|
2633
2473
|
{
|
|
2634
2474
|
"slug": "admin-panel",
|
|
@@ -2645,15 +2485,52 @@
|
|
|
2645
2485
|
"tags": [
|
|
2646
2486
|
"ai",
|
|
2647
2487
|
"ai:admin",
|
|
2648
|
-
"
|
|
2649
|
-
"providers",
|
|
2650
|
-
"models",
|
|
2488
|
+
"instructions",
|
|
2651
2489
|
"skills",
|
|
2652
2490
|
"tools",
|
|
2653
2491
|
"agents",
|
|
2654
|
-
"
|
|
2492
|
+
"providers",
|
|
2493
|
+
"models",
|
|
2494
|
+
"budgets",
|
|
2495
|
+
"audit"
|
|
2496
|
+
],
|
|
2497
|
+
"agentRecipe": "Run `npx rr add ai-admin`. Adds an `AI` section to the admin-panel ADMIN_SECTIONS registry. Sub-tabs ordered to match build-flow: Providers → Models → Instructions → Skills → Tools → Agents → Budgets → Audit. Includes Create-* wizards for instructions / skills / tools / agents. API keys AES-encrypted via AI_ADMIN_ENCRYPTION_KEY env. The instruction / skill / tool / agent registries are SSOTs consumed by every ai-* consumer slice (chat + studio + agents)."
|
|
2498
|
+
},
|
|
2499
|
+
{
|
|
2500
|
+
"slug": "ai-router",
|
|
2501
|
+
"title": "AI Router — Backend Provider Proxy",
|
|
2502
|
+
"category": "ai",
|
|
2503
|
+
"kind": "backend",
|
|
2504
|
+
"version": "0.1.0",
|
|
2505
|
+
"description": "Backend infrastructure (no UI). Single proxy that every other ai-* feature calls. Tier-routed — nano (Haiku) for classification, mid (Sonnet) for chat, flagship (Opus) for deep reasoning. Per-call usage log + cost guard. Works with direct provider keys or OpenRouter umbrella.\n\nNot something you mount — installed automatically as a peer when you add ai-chat / ai-studio / ai-agents.",
|
|
2506
|
+
"source": "rahmanef63/resource-site",
|
|
2507
|
+
"slicePath": "frontend/slices/ai-router",
|
|
2508
|
+
"convexPaths": [
|
|
2509
|
+
"convex/features/ai"
|
|
2510
|
+
],
|
|
2511
|
+
"npm": [
|
|
2512
|
+
"ai@^4.0.0",
|
|
2513
|
+
"@openrouter/ai-sdk-provider@^0.0.5"
|
|
2514
|
+
],
|
|
2515
|
+
"shadcn": [
|
|
2516
|
+
"button"
|
|
2517
|
+
],
|
|
2518
|
+
"env": [
|
|
2519
|
+
{
|
|
2520
|
+
"name": "OPENROUTER_API_KEY",
|
|
2521
|
+
"scope": "convex",
|
|
2522
|
+
"required": true
|
|
2523
|
+
}
|
|
2655
2524
|
],
|
|
2656
|
-
"
|
|
2525
|
+
"peers": [],
|
|
2526
|
+
"providers": [],
|
|
2527
|
+
"tags": [
|
|
2528
|
+
"ai",
|
|
2529
|
+
"ai:backend",
|
|
2530
|
+
"tier-routing",
|
|
2531
|
+
"cost-guard"
|
|
2532
|
+
],
|
|
2533
|
+
"agentRecipe": "Wrap every AI call through ai-router. Tiers: nano = quick classification (spam-flag, headline-suggest), mid = chat / draft, flagship = methodology-review / deep-think. Token usage logs to ai_usage table for the cost dashboard."
|
|
2657
2534
|
},
|
|
2658
2535
|
{
|
|
2659
2536
|
"slug": "vector-search",
|
|
@@ -3328,6 +3205,67 @@
|
|
|
3328
3205
|
],
|
|
3329
3206
|
"agentRecipe": "Run `npx rr add socials`. Compose `socialsTables` into root schema. Bootstrap with `npx convex run internal.features.socials.mutations.seed '{\"items\":[{\"platform\":\"github\",\"url\":\"https://github.com/<you>\",\"order\":1,\"visible\":true,\"featured\":true,\"sameAs\":true,\"relMe\":true}]}'`. Wire `useQuery(api.features.socials.queries.listVisible)` into footer for entity-graph SEO."
|
|
3330
3207
|
},
|
|
3208
|
+
{
|
|
3209
|
+
"slug": "create-your-mcp",
|
|
3210
|
+
"title": "Create Your MCP",
|
|
3211
|
+
"category": "ai",
|
|
3212
|
+
"kind": "full",
|
|
3213
|
+
"version": "0.1.0",
|
|
3214
|
+
"description": "Turn any rr-based app into an MCP server that ChatGPT custom apps, Claude.ai connectors, Cursor MCP, and other AI clients authenticate to. OAuth 2.1 + PKCE flow with code → bearer exchange, env-configured vendor-host allowlist, single-use codes, 1-year bearer tokens, scope-tagged tools, opaque error collapsing, constant-time token compare. Static MCP_API_KEY fallback for service-account / CI scripts. Sanitized 2026-05-16 from rahmanef.com's production MCP integration — vendor literals (chatgpt.com / OpenAI paths) replaced with MCP_OAUTH_ALLOWED_HOSTS + MCP_OAUTH_ALLOWED_PATH_PREFIXES env vars so the slice ships portable.",
|
|
3215
|
+
"source": "rahmanef.com",
|
|
3216
|
+
"slicePath": "frontend/slices/create-your-mcp",
|
|
3217
|
+
"convexPaths": [
|
|
3218
|
+
"convex/features/create-your-mcp"
|
|
3219
|
+
],
|
|
3220
|
+
"npm": [],
|
|
3221
|
+
"shadcn": [],
|
|
3222
|
+
"env": [
|
|
3223
|
+
{
|
|
3224
|
+
"name": "MCP_API_KEY",
|
|
3225
|
+
"scope": "server",
|
|
3226
|
+
"required": false,
|
|
3227
|
+
"description": "Static bearer for service-account / CI access. Min 32 chars. Must match Convex env."
|
|
3228
|
+
},
|
|
3229
|
+
{
|
|
3230
|
+
"name": "MCP_OAUTH_ALLOWED_HOSTS",
|
|
3231
|
+
"scope": "convex",
|
|
3232
|
+
"required": false,
|
|
3233
|
+
"description": "CSV vendor domains for redirect_uri (chatgpt.com,claude.ai,cursor.sh)."
|
|
3234
|
+
},
|
|
3235
|
+
{
|
|
3236
|
+
"name": "MCP_OAUTH_ALLOWED_PATH_PREFIXES",
|
|
3237
|
+
"scope": "convex",
|
|
3238
|
+
"required": false,
|
|
3239
|
+
"description": "CSV path prefixes under allowed hosts (/aip/,/connector/,/oauth/)."
|
|
3240
|
+
},
|
|
3241
|
+
{
|
|
3242
|
+
"name": "NEXT_PUBLIC_SITE_URL",
|
|
3243
|
+
"scope": "next-public",
|
|
3244
|
+
"required": true,
|
|
3245
|
+
"description": "Public site origin for WWW-Authenticate challenge."
|
|
3246
|
+
}
|
|
3247
|
+
],
|
|
3248
|
+
"peers": [
|
|
3249
|
+
{
|
|
3250
|
+
"slug": "convex-auth",
|
|
3251
|
+
"range": "^0.1",
|
|
3252
|
+
"reason": "requireAdmin uses getAuthUserId from @convex-dev/auth."
|
|
3253
|
+
}
|
|
3254
|
+
],
|
|
3255
|
+
"providers": [],
|
|
3256
|
+
"tags": [
|
|
3257
|
+
"ai",
|
|
3258
|
+
"mcp",
|
|
3259
|
+
"oauth",
|
|
3260
|
+
"pkce",
|
|
3261
|
+
"chatgpt",
|
|
3262
|
+
"claude",
|
|
3263
|
+
"cursor",
|
|
3264
|
+
"convex",
|
|
3265
|
+
"integration"
|
|
3266
|
+
],
|
|
3267
|
+
"agentRecipe": "Run `npx rr add create-your-mcp`. Compose `createYourMcpTables` into root schema. Move `slices/create-your-mcp/routes/mcp.route.ts` → `app/api/mcp/route.ts` and `oauth-token.route.ts` → `app/api/oauth/token/route.ts`. Set MCP_OAUTH_ALLOWED_HOSTS (CSV vendor domains). Mount `<McpAdminView />` at /admin/mcp. Connect ChatGPT/Claude/Cursor via the setup form rendered by the admin view."
|
|
3268
|
+
},
|
|
3331
3269
|
{
|
|
3332
3270
|
"slug": "contact-form-resend",
|
|
3333
3271
|
"title": "Contact Form + Resend",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rahman-resources",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "Rahman Resources (rr) — shadcn-style installer for vertical slices. `npx resources add <slug>` copies slice into your project's `slices/<slug>/`. You own the files.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|