rahman-resources 1.16.0 → 1.16.2
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 +63 -186
- package/package.json +1 -1
package/lib/manifest.json
CHANGED
|
@@ -26,7 +26,10 @@
|
|
|
26
26
|
"notion-database": "notion-ui",
|
|
27
27
|
"notion-sidebar": "notion-ui",
|
|
28
28
|
"notion": "notion-app",
|
|
29
|
-
"admin-console": "admin"
|
|
29
|
+
"admin-console": "admin",
|
|
30
|
+
"ai-chat": "ai-workspace",
|
|
31
|
+
"ai-studio": "ai-workspace",
|
|
32
|
+
"ai-agents": "ai-workspace"
|
|
30
33
|
},
|
|
31
34
|
"layouts": [],
|
|
32
35
|
"recipes": [],
|
|
@@ -435,10 +438,10 @@
|
|
|
435
438
|
]
|
|
436
439
|
},
|
|
437
440
|
{
|
|
438
|
-
"slug": "ai-
|
|
439
|
-
"title": "AI
|
|
441
|
+
"slug": "ai-workspace",
|
|
442
|
+
"title": "AI Workspace — chat · studio · agents",
|
|
440
443
|
"category": "ai",
|
|
441
|
-
"description": "
|
|
444
|
+
"description": "Three AI surfaces as shadcn-style variants — `npx rr add ai-workspace <variant>` for one, or `npx rr add ai-workspace` for all + a switcher. Only the chat variant pulls a Convex backend (per-variant convex gating).\n\n • chat — floating <AiChatFab /> + createAgenticChatSend: real function-calling over any ToolHost (@/shared/agentic), key-guarded, over convex/features/aiChat.\n • studio — <AiStudioPage /> single-prompt generation canvas (variation grid + version tree, Suno / Midjourney / Lovable pattern) + aiStudioTools so a shared agent can drive generations.\n • agents — <AiAgentsPage /> autonomous-worker run dashboard + createAgentRunner(host) which drives the shared function-calling loop and records each tool_use as a RunStep trace.\n\nUse cases: support chatbot in a marketing site, AI generation product (image / code / text / audio), background workers (nightly audits, scheduled crawls, moderation). studio + agents are frontend-only — wire your own persistence.",
|
|
442
445
|
"source": "rahmanef63/resource-site",
|
|
443
446
|
"docsUrl": "https://sdk.vercel.ai/docs",
|
|
444
447
|
"install": "npm i ai @ai-sdk/anthropic @ai-sdk/openai",
|
|
@@ -448,58 +451,19 @@
|
|
|
448
451
|
"@ai-sdk/openai"
|
|
449
452
|
],
|
|
450
453
|
"exampleCode": "",
|
|
451
|
-
"agentRecipe": "Run `npx rr add ai-chat
|
|
452
|
-
"tags": [
|
|
453
|
-
"ai",
|
|
454
|
-
"ai:chat",
|
|
455
|
-
"streaming",
|
|
456
|
-
"multimodal",
|
|
457
|
-
"tool-calls",
|
|
458
|
-
"agent-mode",
|
|
459
|
-
"rag",
|
|
460
|
-
"citations",
|
|
461
|
-
"branching",
|
|
462
|
-
"history"
|
|
463
|
-
]
|
|
464
|
-
},
|
|
465
|
-
{
|
|
466
|
-
"slug": "ai-studio",
|
|
467
|
-
"title": "AI Studio — Generation Canvas",
|
|
468
|
-
"category": "ai",
|
|
469
|
-
"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.",
|
|
470
|
-
"source": "rahmanef63/resource-site",
|
|
471
|
-
"install": "",
|
|
472
|
-
"npmPackages": [],
|
|
473
|
-
"exampleCode": "",
|
|
474
|
-
"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.",
|
|
454
|
+
"agentRecipe": "Run `npx rr add ai-workspace <chat|studio|agents>` for one surface, or `npx rr add ai-workspace` for all. chat: mount <AiChatFab chat={useAction(api.features.aiChat.action.chat)} />. studio: mount <AiStudioPage /> + drive via aiStudioTools. agents: mount <AiAgentsPage /> + trigger via createAgentRunner(host).",
|
|
475
455
|
"tags": [
|
|
476
456
|
"ai",
|
|
457
|
+
"ai:chatbot",
|
|
477
458
|
"ai:studio",
|
|
478
|
-
"
|
|
479
|
-
"streaming",
|
|
480
|
-
"history",
|
|
481
|
-
"branching",
|
|
482
|
-
"image-gen"
|
|
483
|
-
]
|
|
484
|
-
},
|
|
485
|
-
{
|
|
486
|
-
"slug": "ai-agents",
|
|
487
|
-
"title": "AI Agents — Autonomous Workers",
|
|
488
|
-
"category": "ai",
|
|
489
|
-
"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.",
|
|
490
|
-
"source": "rahmanef63/resource-site",
|
|
491
|
-
"install": "",
|
|
492
|
-
"npmPackages": [],
|
|
493
|
-
"exampleCode": "",
|
|
494
|
-
"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.",
|
|
495
|
-
"tags": [
|
|
496
|
-
"ai",
|
|
497
|
-
"ai:agents",
|
|
459
|
+
"ai:agent",
|
|
498
460
|
"agent-mode",
|
|
499
461
|
"tool-calls",
|
|
462
|
+
"streaming",
|
|
463
|
+
"generation",
|
|
500
464
|
"async",
|
|
501
|
-
"
|
|
502
|
-
"
|
|
465
|
+
"traces",
|
|
466
|
+
"multimodal"
|
|
503
467
|
]
|
|
504
468
|
},
|
|
505
469
|
{
|
|
@@ -529,7 +493,7 @@
|
|
|
529
493
|
"slug": "ai-router",
|
|
530
494
|
"title": "AI Router — Backend Provider Proxy",
|
|
531
495
|
"category": "ai",
|
|
532
|
-
"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-
|
|
496
|
+
"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-workspace.",
|
|
533
497
|
"source": "rahmanef63/resource-site",
|
|
534
498
|
"docsUrl": "https://sdk.vercel.ai/docs",
|
|
535
499
|
"install": "npm i ai @openrouter/ai-sdk-provider",
|
|
@@ -2331,16 +2295,16 @@
|
|
|
2331
2295
|
"agentRecipe": "Run `npx rr add resend-newsletter`. 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'."
|
|
2332
2296
|
},
|
|
2333
2297
|
{
|
|
2334
|
-
"slug": "ai-
|
|
2335
|
-
"title": "AI
|
|
2298
|
+
"slug": "ai-workspace",
|
|
2299
|
+
"title": "AI Workspace — chat · studio · agents",
|
|
2336
2300
|
"category": "ai",
|
|
2337
2301
|
"kind": "full",
|
|
2338
2302
|
"version": "0.3.0",
|
|
2339
|
-
"description": "
|
|
2303
|
+
"description": "Three AI surfaces as shadcn-style variants — `npx rr add ai-workspace <variant>` for one, or `npx rr add ai-workspace` for all + a switcher. Only the chat variant pulls a Convex backend (per-variant convex gating).\n\n • chat — floating <AiChatFab /> + createAgenticChatSend: real function-calling over any ToolHost (@/shared/agentic), key-guarded, over convex/features/aiChat.\n • studio — <AiStudioPage /> single-prompt generation canvas (variation grid + version tree, Suno / Midjourney / Lovable pattern) + aiStudioTools so a shared agent can drive generations.\n • agents — <AiAgentsPage /> autonomous-worker run dashboard + createAgentRunner(host) which drives the shared function-calling loop and records each tool_use as a RunStep trace.\n\nUse cases: support chatbot in a marketing site, AI generation product (image / code / text / audio), background workers (nightly audits, scheduled crawls, moderation). studio + agents are frontend-only — wire your own persistence.",
|
|
2340
2304
|
"source": "rahmanef63/resource-site",
|
|
2341
|
-
"slicePath": "frontend/slices/ai-
|
|
2305
|
+
"slicePath": "frontend/slices/ai-workspace",
|
|
2342
2306
|
"convexPaths": [
|
|
2343
|
-
"convex/features/
|
|
2307
|
+
"convex/features/aiChat"
|
|
2344
2308
|
],
|
|
2345
2309
|
"npm": [
|
|
2346
2310
|
"ai@^4.0.0",
|
|
@@ -2348,19 +2312,20 @@
|
|
|
2348
2312
|
"@ai-sdk/openai@^0.0.60"
|
|
2349
2313
|
],
|
|
2350
2314
|
"shadcn": [
|
|
2315
|
+
"avatar",
|
|
2316
|
+
"badge",
|
|
2351
2317
|
"button",
|
|
2352
2318
|
"card",
|
|
2353
|
-
"
|
|
2354
|
-
"avatar",
|
|
2319
|
+
"progress",
|
|
2355
2320
|
"scroll-area",
|
|
2356
2321
|
"select",
|
|
2357
2322
|
"separator",
|
|
2358
2323
|
"slider",
|
|
2359
2324
|
"switch",
|
|
2360
|
-
"
|
|
2325
|
+
"table",
|
|
2361
2326
|
"tabs",
|
|
2362
|
-
"
|
|
2363
|
-
"
|
|
2327
|
+
"textarea",
|
|
2328
|
+
"tooltip"
|
|
2364
2329
|
],
|
|
2365
2330
|
"env": [
|
|
2366
2331
|
{
|
|
@@ -2383,152 +2348,64 @@
|
|
|
2383
2348
|
{
|
|
2384
2349
|
"slug": "convex-auth",
|
|
2385
2350
|
"range": "^0.1",
|
|
2386
|
-
"reason": "
|
|
2351
|
+
"reason": "chat/studio/agents ownership requires an authenticated user."
|
|
2387
2352
|
},
|
|
2388
2353
|
{
|
|
2389
2354
|
"slug": "ai-router",
|
|
2390
2355
|
"range": "^0.1",
|
|
2391
|
-
"reason": "Routes provider calls through tiered proxy."
|
|
2356
|
+
"reason": "Routes provider calls through the tiered proxy."
|
|
2392
2357
|
},
|
|
2393
2358
|
{
|
|
2394
2359
|
"slug": "ai-admin",
|
|
2395
2360
|
"range": "^0.1",
|
|
2396
|
-
"reason": "Reads instructions / skills / tools / models from ai-admin registry."
|
|
2361
|
+
"reason": "Reads instructions / skills / tools / models / agent defs from the ai-admin registry."
|
|
2397
2362
|
},
|
|
2398
2363
|
{
|
|
2399
2364
|
"slug": "vector-search",
|
|
2400
2365
|
"range": "^0.1",
|
|
2401
|
-
"reason": "Optional — RAG
|
|
2402
|
-
}
|
|
2403
|
-
],
|
|
2404
|
-
"providers": [],
|
|
2405
|
-
"tags": [
|
|
2406
|
-
"ai",
|
|
2407
|
-
"ai:chat",
|
|
2408
|
-
"streaming",
|
|
2409
|
-
"multimodal",
|
|
2410
|
-
"tool-calls",
|
|
2411
|
-
"agent-mode",
|
|
2412
|
-
"rag",
|
|
2413
|
-
"citations",
|
|
2414
|
-
"branching",
|
|
2415
|
-
"history"
|
|
2416
|
-
],
|
|
2417
|
-
"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."
|
|
2418
|
-
},
|
|
2419
|
-
{
|
|
2420
|
-
"slug": "ai-studio",
|
|
2421
|
-
"title": "AI Studio — Generation Canvas",
|
|
2422
|
-
"category": "ai",
|
|
2423
|
-
"kind": "full",
|
|
2424
|
-
"version": "0.2.0",
|
|
2425
|
-
"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.",
|
|
2426
|
-
"source": "rahmanef63/resource-site",
|
|
2427
|
-
"slicePath": "frontend/slices/ai-studio",
|
|
2428
|
-
"convexPaths": [
|
|
2429
|
-
"convex/features/ai"
|
|
2430
|
-
],
|
|
2431
|
-
"npm": [
|
|
2432
|
-
"ai@^4.0.0"
|
|
2433
|
-
],
|
|
2434
|
-
"shadcn": [
|
|
2435
|
-
"button",
|
|
2436
|
-
"card",
|
|
2437
|
-
"badge",
|
|
2438
|
-
"textarea",
|
|
2439
|
-
"tabs",
|
|
2440
|
-
"tooltip",
|
|
2441
|
-
"scroll-area",
|
|
2442
|
-
"select"
|
|
2443
|
-
],
|
|
2444
|
-
"env": [],
|
|
2445
|
-
"peers": [
|
|
2446
|
-
{
|
|
2447
|
-
"slug": "convex-auth",
|
|
2448
|
-
"range": "^0.1",
|
|
2449
|
-
"reason": "Generation history per user."
|
|
2450
|
-
},
|
|
2451
|
-
{
|
|
2452
|
-
"slug": "ai-router",
|
|
2453
|
-
"range": "^0.1",
|
|
2454
|
-
"reason": "All generation calls flow through router."
|
|
2455
|
-
},
|
|
2456
|
-
{
|
|
2457
|
-
"slug": "ai-admin",
|
|
2458
|
-
"range": "^0.1",
|
|
2459
|
-
"reason": "Templates + few-shot library + moderation rules live in ai-admin."
|
|
2366
|
+
"reason": "Optional — chat RAG mode pulls workspace embeddings."
|
|
2460
2367
|
}
|
|
2461
2368
|
],
|
|
2462
2369
|
"providers": [],
|
|
2463
2370
|
"tags": [
|
|
2464
2371
|
"ai",
|
|
2372
|
+
"ai:chatbot",
|
|
2465
2373
|
"ai:studio",
|
|
2466
|
-
"
|
|
2467
|
-
"streaming",
|
|
2468
|
-
"history",
|
|
2469
|
-
"branching",
|
|
2470
|
-
"image-gen"
|
|
2471
|
-
],
|
|
2472
|
-
"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."
|
|
2473
|
-
},
|
|
2474
|
-
{
|
|
2475
|
-
"slug": "ai-agents",
|
|
2476
|
-
"title": "AI Agents — Autonomous Workers",
|
|
2477
|
-
"category": "ai",
|
|
2478
|
-
"kind": "full",
|
|
2479
|
-
"version": "0.2.0",
|
|
2480
|
-
"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.",
|
|
2481
|
-
"source": "rahmanef63/resource-site",
|
|
2482
|
-
"slicePath": "frontend/slices/ai-agents",
|
|
2483
|
-
"convexPaths": [
|
|
2484
|
-
"convex/features/ai"
|
|
2485
|
-
],
|
|
2486
|
-
"npm": [
|
|
2487
|
-
"ai@^4.0.0"
|
|
2488
|
-
],
|
|
2489
|
-
"shadcn": [
|
|
2490
|
-
"button",
|
|
2491
|
-
"card",
|
|
2492
|
-
"badge",
|
|
2493
|
-
"table",
|
|
2494
|
-
"tabs",
|
|
2495
|
-
"scroll-area",
|
|
2496
|
-
"progress"
|
|
2497
|
-
],
|
|
2498
|
-
"env": [],
|
|
2499
|
-
"peers": [
|
|
2500
|
-
{
|
|
2501
|
-
"slug": "convex-auth",
|
|
2502
|
-
"range": "^0.1",
|
|
2503
|
-
"reason": "Per-user agent run ownership."
|
|
2504
|
-
},
|
|
2505
|
-
{
|
|
2506
|
-
"slug": "ai-router",
|
|
2507
|
-
"range": "^0.1",
|
|
2508
|
-
"reason": "Step calls flow through router."
|
|
2509
|
-
},
|
|
2510
|
-
{
|
|
2511
|
-
"slug": "ai-admin",
|
|
2512
|
-
"range": "^0.1",
|
|
2513
|
-
"reason": "Agent definitions live in ai-admin → Agents."
|
|
2514
|
-
},
|
|
2515
|
-
{
|
|
2516
|
-
"slug": "audit-log",
|
|
2517
|
-
"range": "^0.1",
|
|
2518
|
-
"reason": "Every step logged."
|
|
2519
|
-
}
|
|
2520
|
-
],
|
|
2521
|
-
"providers": [],
|
|
2522
|
-
"tags": [
|
|
2523
|
-
"ai",
|
|
2524
|
-
"ai:agents",
|
|
2374
|
+
"ai:agent",
|
|
2525
2375
|
"agent-mode",
|
|
2526
2376
|
"tool-calls",
|
|
2377
|
+
"streaming",
|
|
2378
|
+
"generation",
|
|
2527
2379
|
"async",
|
|
2528
|
-
"
|
|
2529
|
-
"
|
|
2380
|
+
"traces",
|
|
2381
|
+
"multimodal"
|
|
2530
2382
|
],
|
|
2531
|
-
"agentRecipe": "Run `npx rr add ai-agents
|
|
2383
|
+
"agentRecipe": "Run `npx rr add ai-workspace <chat|studio|agents>` for one surface, or `npx rr add ai-workspace` for all. chat: mount <AiChatFab chat={useAction(api.features.aiChat.action.chat)} />. studio: mount <AiStudioPage /> + drive via aiStudioTools. agents: mount <AiAgentsPage /> + trigger via createAgentRunner(host).",
|
|
2384
|
+
"variants": {
|
|
2385
|
+
"default": "chat",
|
|
2386
|
+
"items": [
|
|
2387
|
+
{
|
|
2388
|
+
"id": "chat",
|
|
2389
|
+
"title": "Chat",
|
|
2390
|
+
"description": "Floating assistant FAB with real function-calling over any ToolHost.",
|
|
2391
|
+
"convex": [
|
|
2392
|
+
"convex/features/aiChat"
|
|
2393
|
+
]
|
|
2394
|
+
},
|
|
2395
|
+
{
|
|
2396
|
+
"id": "studio",
|
|
2397
|
+
"title": "Studio",
|
|
2398
|
+
"description": "Single-prompt generation canvas + agentic generate tool.",
|
|
2399
|
+
"convex": []
|
|
2400
|
+
},
|
|
2401
|
+
{
|
|
2402
|
+
"id": "agents",
|
|
2403
|
+
"title": "Agents",
|
|
2404
|
+
"description": "Autonomous-worker run dashboard + createAgentRunner loop.",
|
|
2405
|
+
"convex": []
|
|
2406
|
+
}
|
|
2407
|
+
]
|
|
2408
|
+
}
|
|
2532
2409
|
},
|
|
2533
2410
|
{
|
|
2534
2411
|
"slug": "ai-admin",
|
|
@@ -2608,7 +2485,7 @@
|
|
|
2608
2485
|
"category": "ai",
|
|
2609
2486
|
"kind": "backend",
|
|
2610
2487
|
"version": "0.5.0",
|
|
2611
|
-
"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-
|
|
2488
|
+
"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-workspace.",
|
|
2612
2489
|
"source": "rahmanef63/resource-site",
|
|
2613
2490
|
"slicePath": "frontend/slices/ai-router",
|
|
2614
2491
|
"convexPaths": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rahman-resources",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.2",
|
|
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",
|