@almadar/std 3.12.2 → 3.13.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/behaviors/exports/atoms/std-agent-activity-log.orb +559 -0
- package/behaviors/exports/atoms/std-agent-chat-thread.orb +774 -0
- package/behaviors/exports/atoms/std-agent-classifier.orb +871 -0
- package/behaviors/exports/atoms/std-agent-completion.orb +933 -0
- package/behaviors/exports/atoms/std-agent-context-window.orb +2294 -0
- package/behaviors/exports/atoms/std-agent-conversation.orb +1020 -0
- package/behaviors/exports/atoms/std-agent-memory.orb +879 -0
- package/behaviors/exports/atoms/std-agent-provider.orb +898 -0
- package/behaviors/exports/atoms/std-agent-search.orb +448 -0
- package/behaviors/exports/atoms/std-agent-session.orb +835 -0
- package/behaviors/exports/atoms/std-agent-step-progress.orb +850 -0
- package/behaviors/exports/atoms/std-agent-token-gauge.orb +1616 -0
- package/behaviors/exports/atoms/std-agent-tool-call.orb +1237 -0
- package/behaviors/exports/molecules/std-agent-fix-loop.orb +3177 -0
- package/behaviors/exports/molecules/std-agent-learner.orb +2950 -0
- package/behaviors/exports/molecules/std-agent-planner.orb +2655 -0
- package/behaviors/exports/molecules/std-agent-rag.orb +1871 -0
- package/behaviors/exports/molecules/std-agent-tool-loop.orb +4857 -0
- package/behaviors/exports/organisms/std-agent-assistant.orb +6440 -0
- package/behaviors/exports/organisms/std-agent-builder.orb +14863 -0
- package/behaviors/exports/organisms/std-agent-pipeline.orb +11950 -0
- package/behaviors/exports/organisms/std-agent-reviewer.orb +5405 -0
- package/behaviors/exports/organisms/std-agent-tutor.orb +5107 -0
- package/behaviors/exports/validation-report.json +2 -1099
- package/dist/behaviors/exports/atoms/std-agent-activity-log.orb +559 -0
- package/dist/behaviors/exports/atoms/std-agent-chat-thread.orb +774 -0
- package/dist/behaviors/exports/atoms/std-agent-classifier.orb +871 -0
- package/dist/behaviors/exports/atoms/std-agent-completion.orb +933 -0
- package/dist/behaviors/exports/atoms/std-agent-context-window.orb +2294 -0
- package/dist/behaviors/exports/atoms/std-agent-conversation.orb +1020 -0
- package/dist/behaviors/exports/atoms/std-agent-memory.orb +879 -0
- package/dist/behaviors/exports/atoms/std-agent-provider.orb +898 -0
- package/dist/behaviors/exports/atoms/std-agent-search.orb +448 -0
- package/dist/behaviors/exports/atoms/std-agent-session.orb +835 -0
- package/dist/behaviors/exports/atoms/std-agent-step-progress.orb +850 -0
- package/dist/behaviors/exports/atoms/std-agent-token-gauge.orb +1616 -0
- package/dist/behaviors/exports/atoms/std-agent-tool-call.orb +1237 -0
- package/dist/behaviors/exports/molecules/std-agent-fix-loop.orb +3177 -0
- package/dist/behaviors/exports/molecules/std-agent-learner.orb +2950 -0
- package/dist/behaviors/exports/molecules/std-agent-planner.orb +2655 -0
- package/dist/behaviors/exports/molecules/std-agent-rag.orb +1871 -0
- package/dist/behaviors/exports/molecules/std-agent-tool-loop.orb +4857 -0
- package/dist/behaviors/exports/organisms/std-agent-assistant.orb +6440 -0
- package/dist/behaviors/exports/organisms/std-agent-builder.orb +14863 -0
- package/dist/behaviors/exports/organisms/std-agent-pipeline.orb +11950 -0
- package/dist/behaviors/exports/organisms/std-agent-reviewer.orb +5405 -0
- package/dist/behaviors/exports/organisms/std-agent-tutor.orb +5107 -0
- package/dist/behaviors/exports/validation-report.json +2 -1099
- package/dist/behaviors/exports-reader.js +7156 -302
- package/dist/behaviors/exports-reader.js.map +1 -1
- package/dist/behaviors/functions/index.d.ts +781 -1
- package/dist/behaviors/functions/index.js +7080 -303
- package/dist/behaviors/functions/index.js.map +1 -1
- package/dist/behaviors/index.d.ts +1 -1
- package/dist/behaviors/index.js +7159 -305
- package/dist/behaviors/index.js.map +1 -1
- package/dist/behaviors/query.js +7158 -304
- package/dist/behaviors/query.js.map +1 -1
- package/dist/exports/atoms/std-agent-activity-log.orb +559 -0
- package/dist/exports/atoms/std-agent-chat-thread.orb +774 -0
- package/dist/exports/atoms/std-agent-classifier.orb +871 -0
- package/dist/exports/atoms/std-agent-completion.orb +933 -0
- package/dist/exports/atoms/std-agent-context-window.orb +2294 -0
- package/dist/exports/atoms/std-agent-conversation.orb +1020 -0
- package/dist/exports/atoms/std-agent-memory.orb +879 -0
- package/dist/exports/atoms/std-agent-provider.orb +898 -0
- package/dist/exports/atoms/std-agent-search.orb +448 -0
- package/dist/exports/atoms/std-agent-session.orb +835 -0
- package/dist/exports/atoms/std-agent-step-progress.orb +850 -0
- package/dist/exports/atoms/std-agent-token-gauge.orb +1616 -0
- package/dist/exports/atoms/std-agent-tool-call.orb +1237 -0
- package/dist/exports/molecules/std-agent-fix-loop.orb +3177 -0
- package/dist/exports/molecules/std-agent-learner.orb +2950 -0
- package/dist/exports/molecules/std-agent-planner.orb +2655 -0
- package/dist/exports/molecules/std-agent-rag.orb +1871 -0
- package/dist/exports/molecules/std-agent-tool-loop.orb +4857 -0
- package/dist/exports/organisms/std-agent-assistant.orb +6440 -0
- package/dist/exports/organisms/std-agent-builder.orb +14863 -0
- package/dist/exports/organisms/std-agent-pipeline.orb +11950 -0
- package/dist/exports/organisms/std-agent-reviewer.orb +5405 -0
- package/dist/exports/organisms/std-agent-tutor.orb +5107 -0
- package/dist/exports/validation-report.json +2 -1099
- package/dist/index.d.ts +1 -1
- package/dist/index.js +7159 -305
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -3312,6 +3312,786 @@ interface StdTradingDashboardParams {
|
|
|
3312
3312
|
}
|
|
3313
3313
|
declare function stdTradingDashboard(params: StdTradingDashboardParams): OrbitalSchema;
|
|
3314
3314
|
|
|
3315
|
+
/**
|
|
3316
|
+
* std-agent-assistant
|
|
3317
|
+
*
|
|
3318
|
+
* Full chat assistant organism. Composes molecule + atoms into a multi-turn
|
|
3319
|
+
* conversational agent with memory persistence, context compaction,
|
|
3320
|
+
* provider switching, tabbed views, and a memory sidebar drawer.
|
|
3321
|
+
*
|
|
3322
|
+
* Composed from:
|
|
3323
|
+
* - stdAgentConversation: multi-turn chat with generate + context tracking
|
|
3324
|
+
* - stdAgentMemory: memory lifecycle (memorize, recall, pin, forget, reinforce, decay)
|
|
3325
|
+
* - stdAgentContextWindow: token monitoring and auto-compaction
|
|
3326
|
+
* - stdAgentProvider: provider switching based on task complexity
|
|
3327
|
+
* - stdTabs: Chat / Memory / Settings tab navigation
|
|
3328
|
+
* - stdDrawer: memory sidebar for quick recall
|
|
3329
|
+
*
|
|
3330
|
+
* Cross-trait events:
|
|
3331
|
+
* - MEMORIZE_RESPONSE (Conversation -> Memory): auto-memorize important responses
|
|
3332
|
+
* - PROVIDER_CHANGED (Provider -> Conversation): notify conversation of provider switch
|
|
3333
|
+
*
|
|
3334
|
+
* Pages: /chat (initial), /memory, /settings
|
|
3335
|
+
*
|
|
3336
|
+
* @level organism
|
|
3337
|
+
* @family agent
|
|
3338
|
+
* @packageDocumentation
|
|
3339
|
+
*/
|
|
3340
|
+
|
|
3341
|
+
interface StdAgentAssistantParams {
|
|
3342
|
+
appName?: string;
|
|
3343
|
+
assistantFields?: EntityField[];
|
|
3344
|
+
memoryFields?: EntityField[];
|
|
3345
|
+
providerFields?: EntityField[];
|
|
3346
|
+
}
|
|
3347
|
+
declare function stdAgentAssistant(params?: StdAgentAssistantParams): OrbitalSchema;
|
|
3348
|
+
|
|
3349
|
+
/**
|
|
3350
|
+
* std-agent-builder
|
|
3351
|
+
*
|
|
3352
|
+
* Schema builder agent organism. Full build cycle that plans, generates,
|
|
3353
|
+
* validates, and fixes .orb programs. Composes planner + tool-loop +
|
|
3354
|
+
* fix-loop molecules with session management and tabbed views.
|
|
3355
|
+
*
|
|
3356
|
+
* Composed from:
|
|
3357
|
+
* - stdAgentPlanner (molecule): task planning with classification and memory
|
|
3358
|
+
* - stdAgentToolLoop (molecule): iterative tool execution
|
|
3359
|
+
* - stdAgentFixLoop (molecule): validation-fix cycle
|
|
3360
|
+
* - stdAgentSession: session forking and checkpointing
|
|
3361
|
+
* - stdTabs: Plan / Build / Validate / Fix tab navigation
|
|
3362
|
+
* - stdAgentStepProgress: overall build pipeline progress indicator
|
|
3363
|
+
*
|
|
3364
|
+
* Cross-trait events:
|
|
3365
|
+
* - PLAN_READY (Planner -> ToolLoop): plan complete, begin building
|
|
3366
|
+
* - TOOL_LOOP_DONE (ToolLoop -> FixLoop): schema generated, validate it
|
|
3367
|
+
* - FIX_SUCCEEDED (FixLoop -> Memory): record successful fix pattern
|
|
3368
|
+
*
|
|
3369
|
+
* Pages: /plan (initial), /build, /validate, /fix
|
|
3370
|
+
*
|
|
3371
|
+
* @level organism
|
|
3372
|
+
* @family agent
|
|
3373
|
+
* @packageDocumentation
|
|
3374
|
+
*/
|
|
3375
|
+
|
|
3376
|
+
interface StdAgentBuilderParams {
|
|
3377
|
+
appName?: string;
|
|
3378
|
+
taskFields?: EntityField[];
|
|
3379
|
+
fixFields?: EntityField[];
|
|
3380
|
+
memoryFields?: EntityField[];
|
|
3381
|
+
}
|
|
3382
|
+
declare function stdAgentBuilder(params?: StdAgentBuilderParams): OrbitalSchema;
|
|
3383
|
+
|
|
3384
|
+
/**
|
|
3385
|
+
* std-agent-reviewer
|
|
3386
|
+
*
|
|
3387
|
+
* Schema/code reviewer organism. Composes RAG molecule + classifier atom
|
|
3388
|
+
* to classify input, search for relevant patterns, recall best practices,
|
|
3389
|
+
* and generate structured review output with tabbed views and an issues browse.
|
|
3390
|
+
*
|
|
3391
|
+
* Composed from:
|
|
3392
|
+
* - stdAgentRag (molecule): retrieval-augmented generation pipeline
|
|
3393
|
+
* - stdAgentClassifier: classifies input type (schema, component, trait, etc.)
|
|
3394
|
+
* - stdAgentCompletion: generates review with scoring
|
|
3395
|
+
* - stdTabs: Input / Analysis / Review tab navigation
|
|
3396
|
+
* - stdBrowse: browsable issues list
|
|
3397
|
+
*
|
|
3398
|
+
* Cross-trait events:
|
|
3399
|
+
* - CLASSIFIED (Classifier -> Reviewer): input classified, begin review
|
|
3400
|
+
* - REVIEW_COMPLETE (Reviewer -> Memory): reinforce recalled best practices
|
|
3401
|
+
*
|
|
3402
|
+
* Pages: /review (initial), /analysis, /issues
|
|
3403
|
+
*
|
|
3404
|
+
* @level organism
|
|
3405
|
+
* @family agent
|
|
3406
|
+
* @packageDocumentation
|
|
3407
|
+
*/
|
|
3408
|
+
|
|
3409
|
+
interface StdAgentReviewerParams {
|
|
3410
|
+
appName?: string;
|
|
3411
|
+
reviewFields?: EntityField[];
|
|
3412
|
+
analysisFields?: EntityField[];
|
|
3413
|
+
memoryFields?: EntityField[];
|
|
3414
|
+
}
|
|
3415
|
+
declare function stdAgentReviewer(params?: StdAgentReviewerParams): OrbitalSchema;
|
|
3416
|
+
|
|
3417
|
+
/**
|
|
3418
|
+
* std-agent-pipeline
|
|
3419
|
+
*
|
|
3420
|
+
* Multi-step pipeline organism. Composes planner + tool-loop molecules with
|
|
3421
|
+
* session management, step progress tracking, and a session tree drawer.
|
|
3422
|
+
*
|
|
3423
|
+
* Composed from:
|
|
3424
|
+
* - stdAgentPlanner (molecule): breaks goal into ordered steps
|
|
3425
|
+
* - stdAgentToolLoop (molecule): executes steps with tool invocations
|
|
3426
|
+
* - stdAgentSession: forks sessions at checkpoints, supports rollback
|
|
3427
|
+
* - stdAgentStepProgress: visual pipeline step indicator
|
|
3428
|
+
* - stdDrawer: session tree sidebar for navigating branches
|
|
3429
|
+
*
|
|
3430
|
+
* Cross-trait events:
|
|
3431
|
+
* - PIPELINE_PLANNED (Planner -> ToolLoop): plan ready, start execution
|
|
3432
|
+
* - STEP_COMPLETE (ToolLoop -> Session): checkpoint after each step
|
|
3433
|
+
* - PIPELINE_FINISHED (ToolLoop -> Memory): pipeline done, archive results
|
|
3434
|
+
*
|
|
3435
|
+
* Pages: /pipeline (initial), /execution, /logs
|
|
3436
|
+
*
|
|
3437
|
+
* @level organism
|
|
3438
|
+
* @family agent
|
|
3439
|
+
* @packageDocumentation
|
|
3440
|
+
*/
|
|
3441
|
+
|
|
3442
|
+
interface StdAgentPipelineParams {
|
|
3443
|
+
appName?: string;
|
|
3444
|
+
pipelineFields?: EntityField[];
|
|
3445
|
+
executionFields?: EntityField[];
|
|
3446
|
+
memoryFields?: EntityField[];
|
|
3447
|
+
}
|
|
3448
|
+
declare function stdAgentPipeline(params?: StdAgentPipelineParams): OrbitalSchema;
|
|
3449
|
+
|
|
3450
|
+
/**
|
|
3451
|
+
* std-agent-tutor
|
|
3452
|
+
*
|
|
3453
|
+
* Teaching assistant organism. Composes conversation + memory + classifier
|
|
3454
|
+
* atoms with tabbed views and a concept browse list. Classifies student level,
|
|
3455
|
+
* recalls prior learning from memory, generates explanations with
|
|
3456
|
+
* context-aware difficulty, and tracks concept strength.
|
|
3457
|
+
*
|
|
3458
|
+
* Composed from:
|
|
3459
|
+
* - stdAgentConversation: multi-turn teaching interaction
|
|
3460
|
+
* - stdAgentMemory: tracks concept strength per student topic
|
|
3461
|
+
* - stdAgentClassifier: classifies student level
|
|
3462
|
+
* - stdTabs: Teach / Quiz / Progress tab navigation
|
|
3463
|
+
* - stdBrowse: browsable concepts list with strength tracking
|
|
3464
|
+
*
|
|
3465
|
+
* Cross-trait events:
|
|
3466
|
+
* - ASSESSMENT_DONE (Teaching -> Quiz): student assessed, generate quiz
|
|
3467
|
+
* - QUIZ_GRADED (Quiz -> Memory): reinforce or decay concept based on answer
|
|
3468
|
+
*
|
|
3469
|
+
* Pages: /teach (initial), /quiz, /concepts
|
|
3470
|
+
*
|
|
3471
|
+
* @level organism
|
|
3472
|
+
* @family agent
|
|
3473
|
+
* @packageDocumentation
|
|
3474
|
+
*/
|
|
3475
|
+
|
|
3476
|
+
interface StdAgentTutorParams {
|
|
3477
|
+
appName?: string;
|
|
3478
|
+
sessionFields?: EntityField[];
|
|
3479
|
+
quizFields?: EntityField[];
|
|
3480
|
+
memoryFields?: EntityField[];
|
|
3481
|
+
}
|
|
3482
|
+
declare function stdAgentTutor(params?: StdAgentTutorParams): OrbitalSchema;
|
|
3483
|
+
|
|
3484
|
+
/**
|
|
3485
|
+
* std-agent-memory
|
|
3486
|
+
*
|
|
3487
|
+
* Memory lifecycle atom for agent memory operations.
|
|
3488
|
+
* Composes UI atoms (stdBrowse for memory table, stdModal for memorize form)
|
|
3489
|
+
* with an agent trait that handles agent/memorize, agent/recall, agent/pin,
|
|
3490
|
+
* agent/forget, agent/reinforce, and agent/decay operators.
|
|
3491
|
+
*
|
|
3492
|
+
* @level atom
|
|
3493
|
+
* @family agent
|
|
3494
|
+
* @packageDocumentation
|
|
3495
|
+
*/
|
|
3496
|
+
|
|
3497
|
+
interface StdAgentMemoryParams {
|
|
3498
|
+
/** Entity name in PascalCase (default: "Memory") */
|
|
3499
|
+
entityName?: string;
|
|
3500
|
+
/** Extra entity fields (id is auto-added, memory fields are always included) */
|
|
3501
|
+
fields?: EntityField[];
|
|
3502
|
+
/** Persistence mode (default: "persistent") */
|
|
3503
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
3504
|
+
/** Page name override */
|
|
3505
|
+
pageName?: string;
|
|
3506
|
+
/** Page path override */
|
|
3507
|
+
pagePath?: string;
|
|
3508
|
+
/** Whether this page is the initial route */
|
|
3509
|
+
isInitial?: boolean;
|
|
3510
|
+
}
|
|
3511
|
+
declare function stdAgentMemoryEntity(params?: StdAgentMemoryParams): Entity;
|
|
3512
|
+
declare function stdAgentMemoryTrait(params?: StdAgentMemoryParams): Trait;
|
|
3513
|
+
declare function stdAgentMemoryPage(params?: StdAgentMemoryParams): Page;
|
|
3514
|
+
declare function stdAgentMemory(params?: StdAgentMemoryParams): OrbitalDefinition;
|
|
3515
|
+
|
|
3516
|
+
/**
|
|
3517
|
+
* std-agent-completion
|
|
3518
|
+
*
|
|
3519
|
+
* Completion flow atom for agent text generation.
|
|
3520
|
+
* Composes UI atoms (stdModal for prompt input, stdNotification for feedback)
|
|
3521
|
+
* with an agent trait that handles agent/generate and retry logic.
|
|
3522
|
+
*
|
|
3523
|
+
* @level atom
|
|
3524
|
+
* @family agent
|
|
3525
|
+
* @packageDocumentation
|
|
3526
|
+
*/
|
|
3527
|
+
|
|
3528
|
+
interface StdAgentCompletionParams {
|
|
3529
|
+
/** Entity name in PascalCase (default: "Completion") */
|
|
3530
|
+
entityName?: string;
|
|
3531
|
+
/** Extra entity fields (id is auto-added, completion fields are always included) */
|
|
3532
|
+
fields?: EntityField[];
|
|
3533
|
+
/** Persistence mode (default: "persistent") */
|
|
3534
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
3535
|
+
/** Page name override */
|
|
3536
|
+
pageName?: string;
|
|
3537
|
+
/** Page path override */
|
|
3538
|
+
pagePath?: string;
|
|
3539
|
+
/** Whether this page is the initial route */
|
|
3540
|
+
isInitial?: boolean;
|
|
3541
|
+
}
|
|
3542
|
+
declare function stdAgentCompletionEntity(params?: StdAgentCompletionParams): Entity;
|
|
3543
|
+
declare function stdAgentCompletionTrait(params?: StdAgentCompletionParams): Trait;
|
|
3544
|
+
declare function stdAgentCompletionPage(params?: StdAgentCompletionParams): Page;
|
|
3545
|
+
declare function stdAgentCompletion(params?: StdAgentCompletionParams): OrbitalDefinition;
|
|
3546
|
+
|
|
3547
|
+
/**
|
|
3548
|
+
* std-agent-conversation
|
|
3549
|
+
*
|
|
3550
|
+
* Conversation flow atom for multi-turn agent interactions.
|
|
3551
|
+
* Composes stdAgentChatThread (message display and compose) with an agent
|
|
3552
|
+
* trait that handles agent/generate for AI replies and TOKEN_UPDATE emitting.
|
|
3553
|
+
*
|
|
3554
|
+
* @level atom
|
|
3555
|
+
* @family agent
|
|
3556
|
+
* @packageDocumentation
|
|
3557
|
+
*/
|
|
3558
|
+
|
|
3559
|
+
interface StdAgentConversationParams {
|
|
3560
|
+
/** Entity name in PascalCase (default: "Conversation") */
|
|
3561
|
+
entityName?: string;
|
|
3562
|
+
/** Extra entity fields (id is auto-added, conversation fields are always included) */
|
|
3563
|
+
fields?: EntityField[];
|
|
3564
|
+
/** Persistence mode (default: "persistent") */
|
|
3565
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
3566
|
+
/** Page name override */
|
|
3567
|
+
pageName?: string;
|
|
3568
|
+
/** Page path override */
|
|
3569
|
+
pagePath?: string;
|
|
3570
|
+
/** Whether this page is the initial route */
|
|
3571
|
+
isInitial?: boolean;
|
|
3572
|
+
}
|
|
3573
|
+
declare function stdAgentConversationEntity(params?: StdAgentConversationParams): Entity;
|
|
3574
|
+
declare function stdAgentConversationTrait(params?: StdAgentConversationParams): Trait;
|
|
3575
|
+
declare function stdAgentConversationPage(params?: StdAgentConversationParams): Page;
|
|
3576
|
+
declare function stdAgentConversation(params?: StdAgentConversationParams): OrbitalDefinition;
|
|
3577
|
+
|
|
3578
|
+
/**
|
|
3579
|
+
* std-agent-tool-call
|
|
3580
|
+
*
|
|
3581
|
+
* Tool execution atom for agent tool invocation.
|
|
3582
|
+
* Composes UI atoms (stdModal for invoke form, stdAgentActivityLog for call history)
|
|
3583
|
+
* with an agent trait that handles agent/invoke and TOOL_STARTED/TOOL_COMPLETED emits.
|
|
3584
|
+
*
|
|
3585
|
+
* @level atom
|
|
3586
|
+
* @family agent
|
|
3587
|
+
* @packageDocumentation
|
|
3588
|
+
*/
|
|
3589
|
+
|
|
3590
|
+
interface StdAgentToolCallParams {
|
|
3591
|
+
/** Entity name in PascalCase (default: "ToolCall") */
|
|
3592
|
+
entityName?: string;
|
|
3593
|
+
/** Extra entity fields (id is auto-added, tool call fields are always included) */
|
|
3594
|
+
fields?: EntityField[];
|
|
3595
|
+
/** Persistence mode (default: "persistent") */
|
|
3596
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
3597
|
+
/** Page name override */
|
|
3598
|
+
pageName?: string;
|
|
3599
|
+
/** Page path override */
|
|
3600
|
+
pagePath?: string;
|
|
3601
|
+
/** Whether this page is the initial route */
|
|
3602
|
+
isInitial?: boolean;
|
|
3603
|
+
}
|
|
3604
|
+
declare function stdAgentToolCallEntity(params?: StdAgentToolCallParams): Entity;
|
|
3605
|
+
declare function stdAgentToolCallTrait(params?: StdAgentToolCallParams): Trait;
|
|
3606
|
+
declare function stdAgentToolCallPage(params?: StdAgentToolCallParams): Page;
|
|
3607
|
+
declare function stdAgentToolCall(params?: StdAgentToolCallParams): OrbitalDefinition;
|
|
3608
|
+
|
|
3609
|
+
/**
|
|
3610
|
+
* std-agent-context-window
|
|
3611
|
+
*
|
|
3612
|
+
* Context window management atom for agent token tracking.
|
|
3613
|
+
* Composes UI atoms (stdAgentTokenGauge for visual display,
|
|
3614
|
+
* stdNotification for threshold alerts) with an agent trait
|
|
3615
|
+
* that handles agent/compact, agent/token-count, and agent/context-usage.
|
|
3616
|
+
*
|
|
3617
|
+
* @level atom
|
|
3618
|
+
* @family agent
|
|
3619
|
+
* @packageDocumentation
|
|
3620
|
+
*/
|
|
3621
|
+
|
|
3622
|
+
interface StdAgentContextWindowParams {
|
|
3623
|
+
/** Entity name in PascalCase (default: "ContextWindow") */
|
|
3624
|
+
entityName?: string;
|
|
3625
|
+
/** Extra entity fields (id is auto-added, context window fields are always included) */
|
|
3626
|
+
fields?: EntityField[];
|
|
3627
|
+
/** Persistence mode (default: "persistent") */
|
|
3628
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
3629
|
+
/** Token threshold percentage for approaching_limit (default: 0.85) */
|
|
3630
|
+
warningThreshold?: number;
|
|
3631
|
+
/** Page name override */
|
|
3632
|
+
pageName?: string;
|
|
3633
|
+
/** Page path override */
|
|
3634
|
+
pagePath?: string;
|
|
3635
|
+
/** Whether this page is the initial route */
|
|
3636
|
+
isInitial?: boolean;
|
|
3637
|
+
}
|
|
3638
|
+
declare function stdAgentContextWindowEntity(params?: StdAgentContextWindowParams): Entity;
|
|
3639
|
+
declare function stdAgentContextWindowTrait(params?: StdAgentContextWindowParams): Trait;
|
|
3640
|
+
declare function stdAgentContextWindowPage(params?: StdAgentContextWindowParams): Page;
|
|
3641
|
+
declare function stdAgentContextWindow(params?: StdAgentContextWindowParams): OrbitalDefinition;
|
|
3642
|
+
|
|
3643
|
+
/**
|
|
3644
|
+
* std-agent-provider
|
|
3645
|
+
*
|
|
3646
|
+
* Provider routing atom for agent model/provider switching.
|
|
3647
|
+
* Composes UI atoms (stdModal for switch form, stdNotification for confirmation)
|
|
3648
|
+
* with an agent trait that handles agent/switch-provider, agent/provider,
|
|
3649
|
+
* and agent/model operators.
|
|
3650
|
+
*
|
|
3651
|
+
* @level atom
|
|
3652
|
+
* @family agent
|
|
3653
|
+
* @packageDocumentation
|
|
3654
|
+
*/
|
|
3655
|
+
|
|
3656
|
+
interface StdAgentProviderParams {
|
|
3657
|
+
/** Entity name in PascalCase (default: "ProviderState") */
|
|
3658
|
+
entityName?: string;
|
|
3659
|
+
/** Extra entity fields (id is auto-added, provider fields are always included) */
|
|
3660
|
+
fields?: EntityField[];
|
|
3661
|
+
/** Persistence mode (default: "persistent") */
|
|
3662
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
3663
|
+
/** Page name override */
|
|
3664
|
+
pageName?: string;
|
|
3665
|
+
/** Page path override */
|
|
3666
|
+
pagePath?: string;
|
|
3667
|
+
/** Whether this page is the initial route */
|
|
3668
|
+
isInitial?: boolean;
|
|
3669
|
+
}
|
|
3670
|
+
declare function stdAgentProviderEntity(params?: StdAgentProviderParams): Entity;
|
|
3671
|
+
declare function stdAgentProviderTrait(params?: StdAgentProviderParams): Trait;
|
|
3672
|
+
declare function stdAgentProviderPage(params?: StdAgentProviderParams): Page;
|
|
3673
|
+
declare function stdAgentProvider(params?: StdAgentProviderParams): OrbitalDefinition;
|
|
3674
|
+
|
|
3675
|
+
/**
|
|
3676
|
+
* std-agent-session
|
|
3677
|
+
*
|
|
3678
|
+
* Session lifecycle atom for agent session management.
|
|
3679
|
+
* Composes UI atoms (stdBrowse for session list, stdModal for fork label form)
|
|
3680
|
+
* with an agent trait that handles agent/fork, agent/label, and agent/session-id.
|
|
3681
|
+
*
|
|
3682
|
+
* @level atom
|
|
3683
|
+
* @family agent
|
|
3684
|
+
* @packageDocumentation
|
|
3685
|
+
*/
|
|
3686
|
+
|
|
3687
|
+
interface StdAgentSessionParams {
|
|
3688
|
+
/** Entity name in PascalCase (default: "Session") */
|
|
3689
|
+
entityName?: string;
|
|
3690
|
+
/** Extra entity fields (id is auto-added, session fields are always included) */
|
|
3691
|
+
fields?: EntityField[];
|
|
3692
|
+
/** Persistence mode (default: "persistent") */
|
|
3693
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
3694
|
+
/** Page name override */
|
|
3695
|
+
pageName?: string;
|
|
3696
|
+
/** Page path override */
|
|
3697
|
+
pagePath?: string;
|
|
3698
|
+
/** Whether this page is the initial route */
|
|
3699
|
+
isInitial?: boolean;
|
|
3700
|
+
}
|
|
3701
|
+
declare function stdAgentSessionEntity(params?: StdAgentSessionParams): Entity;
|
|
3702
|
+
declare function stdAgentSessionTrait(params?: StdAgentSessionParams): Trait;
|
|
3703
|
+
declare function stdAgentSessionPage(params?: StdAgentSessionParams): Page;
|
|
3704
|
+
declare function stdAgentSession(params?: StdAgentSessionParams): OrbitalDefinition;
|
|
3705
|
+
|
|
3706
|
+
/**
|
|
3707
|
+
* std-agent-classifier
|
|
3708
|
+
*
|
|
3709
|
+
* Classification flow atom for agent-powered text classification.
|
|
3710
|
+
* Composes UI atoms (stdModal for input form, stdNotification for result badge)
|
|
3711
|
+
* with an agent trait that uses agent/generate with a classification prompt.
|
|
3712
|
+
*
|
|
3713
|
+
* @level atom
|
|
3714
|
+
* @family agent
|
|
3715
|
+
* @packageDocumentation
|
|
3716
|
+
*/
|
|
3717
|
+
|
|
3718
|
+
interface StdAgentClassifierParams {
|
|
3719
|
+
/** Entity name in PascalCase (default: "Classification") */
|
|
3720
|
+
entityName?: string;
|
|
3721
|
+
/** Extra entity fields (id is auto-added, classification fields are always included) */
|
|
3722
|
+
fields?: EntityField[];
|
|
3723
|
+
/** Persistence mode (default: "persistent") */
|
|
3724
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
3725
|
+
/** Available categories for classification */
|
|
3726
|
+
categories?: string[];
|
|
3727
|
+
/** Page name override */
|
|
3728
|
+
pageName?: string;
|
|
3729
|
+
/** Page path override */
|
|
3730
|
+
pagePath?: string;
|
|
3731
|
+
/** Whether this page is the initial route */
|
|
3732
|
+
isInitial?: boolean;
|
|
3733
|
+
}
|
|
3734
|
+
declare function stdAgentClassifierEntity(params?: StdAgentClassifierParams): Entity;
|
|
3735
|
+
declare function stdAgentClassifierTrait(params?: StdAgentClassifierParams): Trait;
|
|
3736
|
+
declare function stdAgentClassifierPage(params?: StdAgentClassifierParams): Page;
|
|
3737
|
+
declare function stdAgentClassifier(params?: StdAgentClassifierParams): OrbitalDefinition;
|
|
3738
|
+
|
|
3739
|
+
/**
|
|
3740
|
+
* std-agent-search
|
|
3741
|
+
*
|
|
3742
|
+
* Code search flow atom for agent-powered codebase searching.
|
|
3743
|
+
* Composes stdBrowse (results table) with an agent trait that
|
|
3744
|
+
* handles agent/search-code.
|
|
3745
|
+
*
|
|
3746
|
+
* @level atom
|
|
3747
|
+
* @family agent
|
|
3748
|
+
* @packageDocumentation
|
|
3749
|
+
*/
|
|
3750
|
+
|
|
3751
|
+
interface StdAgentSearchParams {
|
|
3752
|
+
/** Entity name in PascalCase (default: "SearchResult") */
|
|
3753
|
+
entityName?: string;
|
|
3754
|
+
/** Extra entity fields (id is auto-added, search fields are always included) */
|
|
3755
|
+
fields?: EntityField[];
|
|
3756
|
+
/** Persistence mode (default: "persistent") */
|
|
3757
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
3758
|
+
/** Page name override */
|
|
3759
|
+
pageName?: string;
|
|
3760
|
+
/** Page path override */
|
|
3761
|
+
pagePath?: string;
|
|
3762
|
+
/** Whether this page is the initial route */
|
|
3763
|
+
isInitial?: boolean;
|
|
3764
|
+
}
|
|
3765
|
+
declare function stdAgentSearchEntity(params?: StdAgentSearchParams): Entity;
|
|
3766
|
+
declare function stdAgentSearchTrait(params?: StdAgentSearchParams): Trait;
|
|
3767
|
+
declare function stdAgentSearchPage(params?: StdAgentSearchParams): Page;
|
|
3768
|
+
declare function stdAgentSearch(params?: StdAgentSearchParams): OrbitalDefinition;
|
|
3769
|
+
|
|
3770
|
+
/**
|
|
3771
|
+
* std-agent-chat-thread
|
|
3772
|
+
*
|
|
3773
|
+
* Chat message thread atom for agent conversations.
|
|
3774
|
+
* Displays a chronological list of messages (user, assistant, tool)
|
|
3775
|
+
* with compose/send flow. Emits configurable send event for
|
|
3776
|
+
* orchestrating traits to handle the actual agent call.
|
|
3777
|
+
*
|
|
3778
|
+
* @level atom
|
|
3779
|
+
* @family agent
|
|
3780
|
+
* @packageDocumentation
|
|
3781
|
+
*/
|
|
3782
|
+
|
|
3783
|
+
interface StdAgentChatThreadParams {
|
|
3784
|
+
/** Entity name in PascalCase (default: "ChatMessage") */
|
|
3785
|
+
entityName?: string;
|
|
3786
|
+
/** Extra entity fields (id is auto-added, chat message fields are always included) */
|
|
3787
|
+
fields?: EntityField[];
|
|
3788
|
+
/** Event name emitted when user sends a message (default: "SEND_MESSAGE") */
|
|
3789
|
+
onSendEvent?: string;
|
|
3790
|
+
/** Persistence mode (default: "persistent") */
|
|
3791
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
3792
|
+
/** Page name override */
|
|
3793
|
+
pageName?: string;
|
|
3794
|
+
/** Page path override */
|
|
3795
|
+
pagePath?: string;
|
|
3796
|
+
/** Whether this page is the initial route */
|
|
3797
|
+
isInitial?: boolean;
|
|
3798
|
+
}
|
|
3799
|
+
declare function stdAgentChatThreadEntity(params?: StdAgentChatThreadParams): Entity;
|
|
3800
|
+
declare function stdAgentChatThreadTrait(params?: StdAgentChatThreadParams): Trait;
|
|
3801
|
+
declare function stdAgentChatThreadPage(params?: StdAgentChatThreadParams): Page;
|
|
3802
|
+
declare function stdAgentChatThread(params?: StdAgentChatThreadParams): OrbitalDefinition;
|
|
3803
|
+
|
|
3804
|
+
/**
|
|
3805
|
+
* std-agent-activity-log
|
|
3806
|
+
*
|
|
3807
|
+
* Chronological action log atom for tracking agent operations.
|
|
3808
|
+
* Provides a timeline view of agent actions with status indicators,
|
|
3809
|
+
* duration tracking, and clear functionality. Listens for LOG_ENTRY
|
|
3810
|
+
* events from sibling traits.
|
|
3811
|
+
*
|
|
3812
|
+
* @level atom
|
|
3813
|
+
* @family agent
|
|
3814
|
+
* @packageDocumentation
|
|
3815
|
+
*/
|
|
3816
|
+
|
|
3817
|
+
interface StdAgentActivityLogParams {
|
|
3818
|
+
/** Entity name in PascalCase (default: "ActivityEntry") */
|
|
3819
|
+
entityName?: string;
|
|
3820
|
+
/** Extra entity fields (id is auto-added, activity fields are always included) */
|
|
3821
|
+
fields?: EntityField[];
|
|
3822
|
+
/** Persistence mode (default: "persistent") */
|
|
3823
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
3824
|
+
/** Page name override */
|
|
3825
|
+
pageName?: string;
|
|
3826
|
+
/** Page path override */
|
|
3827
|
+
pagePath?: string;
|
|
3828
|
+
/** Whether this page is the initial route */
|
|
3829
|
+
isInitial?: boolean;
|
|
3830
|
+
}
|
|
3831
|
+
declare function stdAgentActivityLogEntity(params?: StdAgentActivityLogParams): Entity;
|
|
3832
|
+
declare function stdAgentActivityLogTrait(params?: StdAgentActivityLogParams): Trait;
|
|
3833
|
+
declare function stdAgentActivityLogPage(params?: StdAgentActivityLogParams): Page;
|
|
3834
|
+
declare function stdAgentActivityLog(params?: StdAgentActivityLogParams): OrbitalDefinition;
|
|
3835
|
+
|
|
3836
|
+
/**
|
|
3837
|
+
* std-agent-step-progress
|
|
3838
|
+
*
|
|
3839
|
+
* Pipeline/workflow step indicator atom. Tracks progress through
|
|
3840
|
+
* a series of named steps with start/advance/complete/fail lifecycle.
|
|
3841
|
+
* Listens for ADVANCE, COMPLETE, FAIL so orchestrating traits can
|
|
3842
|
+
* drive the progress externally.
|
|
3843
|
+
*
|
|
3844
|
+
* @level atom
|
|
3845
|
+
* @family agent
|
|
3846
|
+
* @packageDocumentation
|
|
3847
|
+
*/
|
|
3848
|
+
|
|
3849
|
+
interface StdAgentStepProgressParams {
|
|
3850
|
+
/** Entity name in PascalCase (default: "StepTracker") */
|
|
3851
|
+
entityName?: string;
|
|
3852
|
+
/** Extra entity fields (id is auto-added, step tracker fields are always included) */
|
|
3853
|
+
fields?: EntityField[];
|
|
3854
|
+
/** Labels for each step in the pipeline */
|
|
3855
|
+
stepLabels?: string[];
|
|
3856
|
+
/** Persistence mode (default: "runtime") */
|
|
3857
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
3858
|
+
/** Page name override */
|
|
3859
|
+
pageName?: string;
|
|
3860
|
+
/** Page path override */
|
|
3861
|
+
pagePath?: string;
|
|
3862
|
+
/** Whether this page is the initial route */
|
|
3863
|
+
isInitial?: boolean;
|
|
3864
|
+
}
|
|
3865
|
+
declare function stdAgentStepProgressEntity(params?: StdAgentStepProgressParams): Entity;
|
|
3866
|
+
declare function stdAgentStepProgressTrait(params?: StdAgentStepProgressParams): Trait;
|
|
3867
|
+
declare function stdAgentStepProgressPage(params?: StdAgentStepProgressParams): Page;
|
|
3868
|
+
declare function stdAgentStepProgress(params?: StdAgentStepProgressParams): OrbitalDefinition;
|
|
3869
|
+
|
|
3870
|
+
/**
|
|
3871
|
+
* std-agent-token-gauge
|
|
3872
|
+
*
|
|
3873
|
+
* Token usage display atom with threshold-based state transitions.
|
|
3874
|
+
* Shows current token count, usage percentage, and progress bar.
|
|
3875
|
+
* Transitions from normal -> warning -> critical based on configurable
|
|
3876
|
+
* thresholds. Provides compact and reset actions.
|
|
3877
|
+
*
|
|
3878
|
+
* @level atom
|
|
3879
|
+
* @family agent
|
|
3880
|
+
* @packageDocumentation
|
|
3881
|
+
*/
|
|
3882
|
+
|
|
3883
|
+
interface StdAgentTokenGaugeParams {
|
|
3884
|
+
/** Entity name in PascalCase (default: "TokenUsage") */
|
|
3885
|
+
entityName?: string;
|
|
3886
|
+
/** Extra entity fields (id is auto-added, token usage fields are always included) */
|
|
3887
|
+
fields?: EntityField[];
|
|
3888
|
+
/** Usage fraction at which to enter warning state (default: 0.85) */
|
|
3889
|
+
threshold?: number;
|
|
3890
|
+
/** Maximum token count (default: 180000) */
|
|
3891
|
+
maxTokens?: number;
|
|
3892
|
+
/** Persistence mode (default: "runtime") */
|
|
3893
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
3894
|
+
/** Page name override */
|
|
3895
|
+
pageName?: string;
|
|
3896
|
+
/** Page path override */
|
|
3897
|
+
pagePath?: string;
|
|
3898
|
+
/** Whether this page is the initial route */
|
|
3899
|
+
isInitial?: boolean;
|
|
3900
|
+
}
|
|
3901
|
+
declare function stdAgentTokenGaugeEntity(params?: StdAgentTokenGaugeParams): Entity;
|
|
3902
|
+
declare function stdAgentTokenGaugeTrait(params?: StdAgentTokenGaugeParams): Trait;
|
|
3903
|
+
declare function stdAgentTokenGaugePage(params?: StdAgentTokenGaugeParams): Page;
|
|
3904
|
+
declare function stdAgentTokenGauge(params?: StdAgentTokenGaugeParams): OrbitalDefinition;
|
|
3905
|
+
|
|
3906
|
+
/**
|
|
3907
|
+
* std-agent-rag -- Retrieval-Augmented Generation
|
|
3908
|
+
*
|
|
3909
|
+
* Composes agent atoms + UI atoms into a RAG pipeline with tabbed views.
|
|
3910
|
+
* Retrieves relevant memories and code snippets, injects them as context,
|
|
3911
|
+
* then generates a response with the augmented prompt.
|
|
3912
|
+
*
|
|
3913
|
+
* Composed atoms:
|
|
3914
|
+
* - stdAgentMemory: recall memories by semantic query
|
|
3915
|
+
* - stdAgentSearch: search code repositories for relevant snippets
|
|
3916
|
+
* - stdAgentCompletion: generate response with augmented context
|
|
3917
|
+
* - stdTabs: tabbed view for Query / Sources / Response
|
|
3918
|
+
*
|
|
3919
|
+
* Cross-trait events:
|
|
3920
|
+
* - GENERATE (RagOrchestrator -> MemoryLifecycle): trigger recall
|
|
3921
|
+
* - RETRIEVAL_DONE (RagOrchestrator -> SearchLifecycle): trigger search after recall
|
|
3922
|
+
* - GENERATION_DONE (RagOrchestrator -> CompletionFlow): trigger completion
|
|
3923
|
+
*
|
|
3924
|
+
* @level molecule
|
|
3925
|
+
* @family agent
|
|
3926
|
+
* @packageDocumentation
|
|
3927
|
+
*/
|
|
3928
|
+
|
|
3929
|
+
interface StdAgentRagParams {
|
|
3930
|
+
entityName?: string;
|
|
3931
|
+
fields?: EntityField[];
|
|
3932
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
3933
|
+
pageName?: string;
|
|
3934
|
+
pagePath?: string;
|
|
3935
|
+
isInitial?: boolean;
|
|
3936
|
+
/** Max memory hits to retrieve (default 5) */
|
|
3937
|
+
memoryLimit?: number;
|
|
3938
|
+
/** Programming language filter for code search */
|
|
3939
|
+
searchLanguage?: string;
|
|
3940
|
+
}
|
|
3941
|
+
declare function stdAgentRagEntity(params: StdAgentRagParams): Entity;
|
|
3942
|
+
declare function stdAgentRagTrait(params: StdAgentRagParams): Trait;
|
|
3943
|
+
declare function stdAgentRagPage(params: StdAgentRagParams): Page;
|
|
3944
|
+
declare function stdAgentRag(params: StdAgentRagParams): OrbitalDefinition;
|
|
3945
|
+
|
|
3946
|
+
/**
|
|
3947
|
+
* std-agent-tool-loop -- Tool execution loop
|
|
3948
|
+
*
|
|
3949
|
+
* Composes agent atoms + UI atoms into an iterative tool-use loop with
|
|
3950
|
+
* step progress tracking and activity logging. The agent generates a plan,
|
|
3951
|
+
* invokes tools to execute steps, checks results, and either loops or finishes.
|
|
3952
|
+
*
|
|
3953
|
+
* Composed atoms:
|
|
3954
|
+
* - stdAgentCompletion: LLM plan generation and result checking
|
|
3955
|
+
* - stdAgentToolCall: tool invocation with argument passing
|
|
3956
|
+
* - stdAgentContextWindow: context window monitoring and compaction
|
|
3957
|
+
* - stdAgentStepProgress: visual pipeline step indicator
|
|
3958
|
+
* - stdAgentActivityLog: chronological action timeline
|
|
3959
|
+
*
|
|
3960
|
+
* @level molecule
|
|
3961
|
+
* @family agent
|
|
3962
|
+
* @packageDocumentation
|
|
3963
|
+
*/
|
|
3964
|
+
|
|
3965
|
+
interface StdAgentToolLoopParams {
|
|
3966
|
+
entityName?: string;
|
|
3967
|
+
fields?: EntityField[];
|
|
3968
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
3969
|
+
pageName?: string;
|
|
3970
|
+
pagePath?: string;
|
|
3971
|
+
isInitial?: boolean;
|
|
3972
|
+
/** Maximum iterations before forced stop (default 10) */
|
|
3973
|
+
maxIterations?: number;
|
|
3974
|
+
/** Context usage threshold (0-1) that triggers compaction (default 0.8) */
|
|
3975
|
+
compactThreshold?: number;
|
|
3976
|
+
}
|
|
3977
|
+
declare function stdAgentToolLoopEntity(params: StdAgentToolLoopParams): Entity;
|
|
3978
|
+
declare function stdAgentToolLoopTrait(params: StdAgentToolLoopParams): Trait;
|
|
3979
|
+
declare function stdAgentToolLoopPage(params: StdAgentToolLoopParams): Page;
|
|
3980
|
+
declare function stdAgentToolLoop(params: StdAgentToolLoopParams): OrbitalDefinition;
|
|
3981
|
+
|
|
3982
|
+
/**
|
|
3983
|
+
* std-agent-fix-loop -- Validation-fix cycle
|
|
3984
|
+
*
|
|
3985
|
+
* Composes agent atoms + UI atoms into an iterative validation-fix loop
|
|
3986
|
+
* with step progress tracking and an errors browse list. Validates a target,
|
|
3987
|
+
* generates a fix via LLM, applies it via tool invocation, then re-validates.
|
|
3988
|
+
*
|
|
3989
|
+
* Composed atoms:
|
|
3990
|
+
* - stdAgentToolCall (validate): run validation tool
|
|
3991
|
+
* - stdAgentToolCall (fix): apply generated fix
|
|
3992
|
+
* - stdAgentCompletion: generate fix via LLM
|
|
3993
|
+
* - stdAgentStepProgress: visual step indicator
|
|
3994
|
+
* - stdBrowse: browsable errors list
|
|
3995
|
+
*
|
|
3996
|
+
* @level molecule
|
|
3997
|
+
* @family agent
|
|
3998
|
+
* @packageDocumentation
|
|
3999
|
+
*/
|
|
4000
|
+
|
|
4001
|
+
interface StdAgentFixLoopParams {
|
|
4002
|
+
entityName?: string;
|
|
4003
|
+
fields?: EntityField[];
|
|
4004
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
4005
|
+
pageName?: string;
|
|
4006
|
+
pagePath?: string;
|
|
4007
|
+
isInitial?: boolean;
|
|
4008
|
+
/** Maximum fix attempts before giving up (default 5) */
|
|
4009
|
+
maxAttempts?: number;
|
|
4010
|
+
/** Tool name used for validation (default 'validate-schema') */
|
|
4011
|
+
validateTool?: string;
|
|
4012
|
+
/** Tool name used to apply fixes (default 'apply-fix') */
|
|
4013
|
+
fixTool?: string;
|
|
4014
|
+
}
|
|
4015
|
+
declare function stdAgentFixLoopEntity(params: StdAgentFixLoopParams): Entity;
|
|
4016
|
+
declare function stdAgentFixLoopTrait(params: StdAgentFixLoopParams): Trait;
|
|
4017
|
+
declare function stdAgentFixLoopPage(params: StdAgentFixLoopParams): Page;
|
|
4018
|
+
declare function stdAgentFixLoop(params: StdAgentFixLoopParams): OrbitalDefinition;
|
|
4019
|
+
|
|
4020
|
+
/**
|
|
4021
|
+
* std-agent-planner -- Task planning
|
|
4022
|
+
*
|
|
4023
|
+
* Composes agent atoms + UI atoms into a task planning pipeline with
|
|
4024
|
+
* a modal for task input and an activity log for plan history.
|
|
4025
|
+
* Classifies the incoming task, recalls relevant memories for context,
|
|
4026
|
+
* then generates a step-by-step execution plan with confidence scoring.
|
|
4027
|
+
*
|
|
4028
|
+
* Composed atoms:
|
|
4029
|
+
* - stdAgentClassifier: categorize the task type
|
|
4030
|
+
* - stdAgentCompletion: generate the step-by-step plan via LLM
|
|
4031
|
+
* - stdAgentMemory: recall relevant past patterns and plans
|
|
4032
|
+
* - stdModal: task input form overlay
|
|
4033
|
+
* - stdAgentActivityLog: plan history timeline
|
|
4034
|
+
*
|
|
4035
|
+
* @level molecule
|
|
4036
|
+
* @family agent
|
|
4037
|
+
* @packageDocumentation
|
|
4038
|
+
*/
|
|
4039
|
+
|
|
4040
|
+
interface StdAgentPlannerParams {
|
|
4041
|
+
entityName?: string;
|
|
4042
|
+
fields?: EntityField[];
|
|
4043
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
4044
|
+
pageName?: string;
|
|
4045
|
+
pagePath?: string;
|
|
4046
|
+
isInitial?: boolean;
|
|
4047
|
+
/** Categories for task classification (default: ['code', 'schema', 'design', 'debug', 'deploy']) */
|
|
4048
|
+
categories?: string[];
|
|
4049
|
+
/** Max memories to recall for context (default 5) */
|
|
4050
|
+
memoryLimit?: number;
|
|
4051
|
+
}
|
|
4052
|
+
declare function stdAgentPlannerEntity(params: StdAgentPlannerParams): Entity;
|
|
4053
|
+
declare function stdAgentPlannerTrait(params: StdAgentPlannerParams): Trait;
|
|
4054
|
+
declare function stdAgentPlannerPage(params: StdAgentPlannerParams): Page;
|
|
4055
|
+
declare function stdAgentPlanner(params: StdAgentPlannerParams): OrbitalDefinition;
|
|
4056
|
+
|
|
4057
|
+
/**
|
|
4058
|
+
* std-agent-learner -- Outcome learning
|
|
4059
|
+
*
|
|
4060
|
+
* Composes agent atoms + UI atoms into an outcome learning pipeline with
|
|
4061
|
+
* an activity log for learning history and a browse list for records.
|
|
4062
|
+
* Listens for task success/failure events, memorizes outcomes, reinforces
|
|
4063
|
+
* memories for successes, applies decay for failures, and adjusts
|
|
4064
|
+
* provider routing based on accumulated results.
|
|
4065
|
+
*
|
|
4066
|
+
* Composed atoms:
|
|
4067
|
+
* - stdAgentMemory: memorize outcomes, reinforce/decay based on results
|
|
4068
|
+
* - stdAgentCompletion: analyze outcome impact via LLM
|
|
4069
|
+
* - stdAgentProvider: adjust provider routing based on success patterns
|
|
4070
|
+
* - stdAgentActivityLog: chronological learning timeline
|
|
4071
|
+
* - stdBrowse: browsable records list
|
|
4072
|
+
*
|
|
4073
|
+
* @level molecule
|
|
4074
|
+
* @family agent
|
|
4075
|
+
* @packageDocumentation
|
|
4076
|
+
*/
|
|
4077
|
+
|
|
4078
|
+
interface StdAgentLearnerParams {
|
|
4079
|
+
entityName?: string;
|
|
4080
|
+
fields?: EntityField[];
|
|
4081
|
+
persistence?: 'persistent' | 'runtime' | 'singleton';
|
|
4082
|
+
pageName?: string;
|
|
4083
|
+
pagePath?: string;
|
|
4084
|
+
isInitial?: boolean;
|
|
4085
|
+
/** Provider to switch to on repeated failures (default 'anthropic') */
|
|
4086
|
+
fallbackProvider?: string;
|
|
4087
|
+
/** Failure threshold that triggers provider switch (default 3) */
|
|
4088
|
+
failureThreshold?: number;
|
|
4089
|
+
}
|
|
4090
|
+
declare function stdAgentLearnerEntity(params: StdAgentLearnerParams): Entity;
|
|
4091
|
+
declare function stdAgentLearnerTrait(params: StdAgentLearnerParams): Trait;
|
|
4092
|
+
declare function stdAgentLearnerPage(params: StdAgentLearnerParams): Page;
|
|
4093
|
+
declare function stdAgentLearner(params: StdAgentLearnerParams): OrbitalDefinition;
|
|
4094
|
+
|
|
3315
4095
|
/**
|
|
3316
4096
|
* std-validate-on-save
|
|
3317
4097
|
*
|
|
@@ -3755,4 +4535,4 @@ declare function stdServiceCustomNoauthTrait(params: StdServiceCustomNoauthParam
|
|
|
3755
4535
|
declare function stdServiceCustomNoauthPage(params: StdServiceCustomNoauthParams): Page;
|
|
3756
4536
|
declare function stdServiceCustomNoauth(params: StdServiceCustomNoauthParams): OrbitalDefinition;
|
|
3757
4537
|
|
|
3758
|
-
export { type StdApiGatewayParams, type StdArcadeGameParams, type StdAsyncParams, type StdAutoregressiveParams, type StdBookingSystemParams, type StdBrowseParams, type StdBuilderGameParams, type StdCacheAsideParams, type StdCalendarParams, type StdCartParams, type StdCicdPipelineParams, type StdCircuitBreakerParams, type StdClassifierGameParams, type StdClassifierParams, type StdCmsParams, type StdCodingAcademyParams, type StdCollisionParams, type StdCombatLogParams, type StdCombatParams, type StdConfirmationParams, type StdCrmParams, type StdDebuggerGameParams, type StdDetailParams, type StdDevopsDashboardParams, type StdDialogueBoxParams, type StdDisplayParams, type StdDrawerParams, type StdEcommerceParams, type StdEventHandlerGameParams, type StdFilterParams, type StdFinanceTrackerParams, type StdFlipCardParams, type StdFormAdvancedParams, type StdGalleryParams, type StdGameAudioParams, type StdGameCanvas2dParams, type StdGameCanvas3dParams, type StdGameHudParams, type StdGameMenuParams, type StdGameOverScreenParams, type StdGameflowParams, type StdGeospatialParams, type StdGraphClassifierParams, type StdHealthcareParams, type StdHelpdeskParams, type StdHrPortalParams, type StdInputParams, type StdInventoryPanelParams, type StdInventoryParams, type StdIotDashboardParams, type StdIsometricCanvasParams, type StdListParams, type StdLmsParams, type StdLoadingParams, type StdLogicTrainingParams, type StdMessagingParams, type StdModalParams, type StdMovementParams, type StdNegotiatorGameParams, type StdNotificationParams, type StdOverworldParams, type StdPaginationParams, type StdPhysics2dParams, type StdPlatformerAppParams, type StdPlatformerCanvasParams, type StdPlatformerGameParams, type StdProjectManagerParams, type StdPuzzleAppParams, type StdPuzzleGameParams, type StdQuestParams, type StdQuizParams, type StdRateLimiterParams, type StdRatingParams, type StdRealtimeChatParams, type StdRlAgentParams, type StdRpgGameParams, type StdScoreBoardParams, type StdScoreParams, type StdSearchParams, type StdSelectionParams, type StdSequencerGameParams, type StdServiceContentPipelineParams, type StdServiceCustomApiTesterParams, type StdServiceCustomBearerParams, type StdServiceCustomHeaderParams, type StdServiceCustomNoauthParams, type StdServiceCustomQueryParams, type StdServiceDevopsToolkitParams, type StdServiceEmailParams, type StdServiceGithubParams, type StdServiceLlmParams, type StdServiceMarketplaceParams, type StdServiceNotificationHubParams, type StdServiceOauthParams, type StdServicePaymentFlowParams, type StdServiceRedisParams, type StdServiceResearchAssistantParams, type StdServiceStorageParams, type StdServiceStripeParams, type StdServiceTwilioParams, type StdServiceYoutubeParams, type StdSimulationCanvasParams, type StdSimulatorGameParams, type StdSocialFeedParams, type StdSortParams, type StdSpriteParams, type StdStemLabParams, type StdStrategyGameParams, type StdTabsParams, type StdTextClassifierParams, type StdTextEffectsParams, type StdThemeParams, type StdTimerParams, type StdTradingDashboardParams, type StdTrainerParams, type StdTurnBasedBattleParams, type StdUndoParams, type StdUploadParams, type StdValidateOnSaveParams, type StdWizardParams, stdApiGateway, stdArcadeGame, stdAsync, stdAsyncEntity, stdAsyncPage, stdAsyncTrait, stdAutoregressive, stdAutoregressiveEntity, stdAutoregressivePage, stdAutoregressiveTrait, stdBookingSystem, stdBrowse, stdBrowseEntity, stdBrowsePage, stdBrowseTrait, stdBuilderGame, stdBuilderGameEntity, stdBuilderGamePage, stdBuilderGameTrait, stdCacheAside, stdCacheAsideEntity, stdCacheAsidePage, stdCacheAsideTrait, stdCalendar, stdCalendarEntity, stdCalendarPage, stdCalendarTrait, stdCart, stdCartEntity, stdCartPage, stdCartTrait, stdCicdPipeline, stdCircuitBreaker, stdCircuitBreakerEntity, stdCircuitBreakerPage, stdCircuitBreakerTrait, stdClassifier, stdClassifierEntity, stdClassifierGame, stdClassifierGameEntity, stdClassifierGamePage, stdClassifierGameTrait, stdClassifierPage, stdClassifierTrait, stdCms, stdCodingAcademy, stdCollision, stdCollisionEntity, stdCollisionPage, stdCollisionTrait, stdCombat, stdCombatEntity, stdCombatLog, stdCombatLogEntity, stdCombatLogPage, stdCombatLogTrait, stdCombatPage, stdCombatTrait, stdConfirmation, stdConfirmationEntity, stdConfirmationPage, stdConfirmationTrait, stdCrm, stdDebuggerGame, stdDebuggerGameEntity, stdDebuggerGamePage, stdDebuggerGameTrait, stdDetail, stdDetailEntity, stdDetailPage, stdDetailTrait, stdDevopsDashboard, stdDialogueBox, stdDialogueBoxEntity, stdDialogueBoxPage, stdDialogueBoxTrait, stdDisplay, stdDisplayEntity, stdDisplayPage, stdDisplayTrait, stdDrawer, stdDrawerEntity, stdDrawerPage, stdDrawerTrait, stdEcommerce, stdEventHandlerGame, stdEventHandlerGameEntity, stdEventHandlerGamePage, stdEventHandlerGameTrait, stdFilter, stdFilterEntity, stdFilterPage, stdFilterTrait, stdFinanceTracker, stdFlipCard, stdFlipCardEntity, stdFlipCardPage, stdFlipCardTrait, stdFormAdvanced, stdFormAdvancedEntity, stdFormAdvancedPage, stdFormAdvancedTrait, stdGallery, stdGalleryEntity, stdGalleryPage, stdGalleryTrait, stdGameAudio, stdGameAudioEntity, stdGameAudioPage, stdGameAudioTrait, stdGameCanvas2d, stdGameCanvas2dEntity, stdGameCanvas2dPage, stdGameCanvas2dTrait, stdGameCanvas3d, stdGameCanvas3dEntity, stdGameCanvas3dPage, stdGameCanvas3dTrait, stdGameHud, stdGameHudEntity, stdGameHudPage, stdGameHudTrait, stdGameMenu, stdGameMenuEntity, stdGameMenuPage, stdGameMenuTrait, stdGameOverScreen, stdGameOverScreenEntity, stdGameOverScreenPage, stdGameOverScreenTrait, stdGameflow, stdGameflowEntity, stdGameflowPage, stdGameflowTrait, stdGeospatial, stdGeospatialEntity, stdGeospatialPage, stdGeospatialTrait, stdGraphClassifier, stdGraphClassifierEntity, stdGraphClassifierPage, stdGraphClassifierTrait, stdHealthcare, stdHelpdesk, stdHrPortal, stdInput, stdInputEntity, stdInputPage, stdInputTrait, stdInventory, stdInventoryEntity, stdInventoryPage, stdInventoryPanel, stdInventoryPanelEntity, stdInventoryPanelPage, stdInventoryPanelTrait, stdInventoryTrait, stdIotDashboard, stdIsometricCanvas, stdIsometricCanvasEntity, stdIsometricCanvasPage, stdIsometricCanvasTrait, stdList, stdListEntity, stdListPage, stdListTrait, stdLms, stdLoading, stdLoadingEntity, stdLoadingPage, stdLoadingTrait, stdLogicTraining, stdMessaging, stdMessagingEntity, stdMessagingPage, stdMessagingTrait, stdModal, stdModalEntity, stdModalPage, stdModalTrait, stdMovement, stdMovementEntity, stdMovementPage, stdMovementTrait, stdNegotiatorGame, stdNegotiatorGameEntity, stdNegotiatorGamePage, stdNegotiatorGameTrait, stdNotification, stdNotificationEntity, stdNotificationPage, stdNotificationTrait, stdOverworld, stdOverworldEntity, stdOverworldPage, stdOverworldTrait, stdPagination, stdPaginationEntity, stdPaginationPage, stdPaginationTrait, stdPhysics2d, stdPhysics2dEntity, stdPhysics2dPage, stdPhysics2dTrait, stdPlatformerApp, stdPlatformerCanvas, stdPlatformerCanvasEntity, stdPlatformerCanvasPage, stdPlatformerCanvasTrait, stdPlatformerGame, stdPlatformerGameEntity, stdPlatformerGamePage, stdPlatformerGameTrait, stdProjectManager, stdPuzzleApp, stdPuzzleGame, stdPuzzleGameEntity, stdPuzzleGamePage, stdPuzzleGameTrait, stdQuest, stdQuestEntity, stdQuestPage, stdQuestTrait, stdQuiz, stdQuizEntity, stdQuizPage, stdQuizTrait, stdRateLimiter, stdRateLimiterEntity, stdRateLimiterPage, stdRateLimiterTrait, stdRating, stdRatingEntity, stdRatingPage, stdRatingTrait, stdRealtimeChat, stdRlAgent, stdRlAgentEntity, stdRlAgentPage, stdRlAgentTrait, stdRpgGame, stdScore, stdScoreBoard, stdScoreBoardEntity, stdScoreBoardPage, stdScoreBoardTrait, stdScoreEntity, stdScorePage, stdScoreTrait, stdSearch, stdSearchEntity, stdSearchPage, stdSearchTrait, stdSelection, stdSelectionEntity, stdSelectionPage, stdSelectionTrait, stdSequencerGame, stdSequencerGameEntity, stdSequencerGamePage, stdSequencerGameTrait, stdServiceContentPipeline, stdServiceContentPipelineEntity, stdServiceContentPipelinePage, stdServiceContentPipelineTrait, stdServiceCustomApiTester, stdServiceCustomApiTesterEntity, stdServiceCustomApiTesterPage, stdServiceCustomApiTesterTrait, stdServiceCustomBearer, stdServiceCustomBearerEntity, stdServiceCustomBearerPage, stdServiceCustomBearerTrait, stdServiceCustomHeader, stdServiceCustomHeaderEntity, stdServiceCustomHeaderPage, stdServiceCustomHeaderTrait, stdServiceCustomNoauth, stdServiceCustomNoauthEntity, stdServiceCustomNoauthPage, stdServiceCustomNoauthTrait, stdServiceCustomQuery, stdServiceCustomQueryEntity, stdServiceCustomQueryPage, stdServiceCustomQueryTrait, stdServiceDevopsToolkit, stdServiceDevopsToolkitEntity, stdServiceDevopsToolkitPage, stdServiceEmail, stdServiceEmailEntity, stdServiceEmailPage, stdServiceEmailTrait, stdServiceGithub, stdServiceGithubEntity, stdServiceGithubPage, stdServiceGithubTrait, stdServiceLlm, stdServiceLlmEntity, stdServiceLlmPage, stdServiceLlmTrait, stdServiceMarketplace, stdServiceNotificationHub, stdServiceNotificationHubEntity, stdServiceNotificationHubPage, stdServiceNotificationHubTrait, stdServiceOauth, stdServiceOauthEntity, stdServiceOauthPage, stdServiceOauthTrait, stdServicePaymentFlow, stdServicePaymentFlowEntity, stdServicePaymentFlowPage, stdServiceRedis, stdServiceRedisEntity, stdServiceRedisPage, stdServiceRedisTrait, stdServiceResearchAssistant, stdServiceStorage, stdServiceStorageEntity, stdServiceStoragePage, stdServiceStorageTrait, stdServiceStripe, stdServiceStripeEntity, stdServiceStripePage, stdServiceStripeTrait, stdServiceTwilio, stdServiceTwilioEntity, stdServiceTwilioPage, stdServiceTwilioTrait, stdServiceYoutube, stdServiceYoutubeEntity, stdServiceYoutubePage, stdServiceYoutubeTrait, stdSimulationCanvas, stdSimulationCanvasEntity, stdSimulationCanvasPage, stdSimulationCanvasTrait, stdSimulatorGame, stdSimulatorGameEntity, stdSimulatorGamePage, stdSimulatorGameTrait, stdSocialFeed, stdSort, stdSortEntity, stdSortPage, stdSortTrait, stdSprite, stdSpriteEntity, stdSpritePage, stdSpriteTrait, stdStemLab, stdStrategyGame, stdTabs, stdTabsEntity, stdTabsPage, stdTabsTrait, stdTextClassifier, stdTextClassifierEntity, stdTextClassifierPage, stdTextClassifierTrait, stdTextEffects, stdTextEffectsEntity, stdTextEffectsPage, stdTextEffectsTrait, stdTheme, stdThemeEntity, stdThemePage, stdThemeTrait, stdTimer, stdTimerEntity, stdTimerPage, stdTimerTrait, stdTradingDashboard, stdTrainer, stdTrainerEntity, stdTrainerPage, stdTrainerTrait, stdTurnBasedBattle, stdTurnBasedBattleEntity, stdTurnBasedBattlePage, stdTurnBasedBattleTrait, stdUndo, stdUndoEntity, stdUndoPage, stdUndoTrait, stdUpload, stdUploadEntity, stdUploadPage, stdUploadTrait, stdValidateOnSave, stdWizard, stdWizardEntity, stdWizardPage, stdWizardTrait };
|
|
4538
|
+
export { type StdAgentActivityLogParams, type StdAgentAssistantParams, type StdAgentBuilderParams, type StdAgentChatThreadParams, type StdAgentClassifierParams, type StdAgentCompletionParams, type StdAgentContextWindowParams, type StdAgentConversationParams, type StdAgentFixLoopParams, type StdAgentLearnerParams, type StdAgentMemoryParams, type StdAgentPipelineParams, type StdAgentPlannerParams, type StdAgentProviderParams, type StdAgentRagParams, type StdAgentReviewerParams, type StdAgentSearchParams, type StdAgentSessionParams, type StdAgentStepProgressParams, type StdAgentTokenGaugeParams, type StdAgentToolCallParams, type StdAgentToolLoopParams, type StdAgentTutorParams, type StdApiGatewayParams, type StdArcadeGameParams, type StdAsyncParams, type StdAutoregressiveParams, type StdBookingSystemParams, type StdBrowseParams, type StdBuilderGameParams, type StdCacheAsideParams, type StdCalendarParams, type StdCartParams, type StdCicdPipelineParams, type StdCircuitBreakerParams, type StdClassifierGameParams, type StdClassifierParams, type StdCmsParams, type StdCodingAcademyParams, type StdCollisionParams, type StdCombatLogParams, type StdCombatParams, type StdConfirmationParams, type StdCrmParams, type StdDebuggerGameParams, type StdDetailParams, type StdDevopsDashboardParams, type StdDialogueBoxParams, type StdDisplayParams, type StdDrawerParams, type StdEcommerceParams, type StdEventHandlerGameParams, type StdFilterParams, type StdFinanceTrackerParams, type StdFlipCardParams, type StdFormAdvancedParams, type StdGalleryParams, type StdGameAudioParams, type StdGameCanvas2dParams, type StdGameCanvas3dParams, type StdGameHudParams, type StdGameMenuParams, type StdGameOverScreenParams, type StdGameflowParams, type StdGeospatialParams, type StdGraphClassifierParams, type StdHealthcareParams, type StdHelpdeskParams, type StdHrPortalParams, type StdInputParams, type StdInventoryPanelParams, type StdInventoryParams, type StdIotDashboardParams, type StdIsometricCanvasParams, type StdListParams, type StdLmsParams, type StdLoadingParams, type StdLogicTrainingParams, type StdMessagingParams, type StdModalParams, type StdMovementParams, type StdNegotiatorGameParams, type StdNotificationParams, type StdOverworldParams, type StdPaginationParams, type StdPhysics2dParams, type StdPlatformerAppParams, type StdPlatformerCanvasParams, type StdPlatformerGameParams, type StdProjectManagerParams, type StdPuzzleAppParams, type StdPuzzleGameParams, type StdQuestParams, type StdQuizParams, type StdRateLimiterParams, type StdRatingParams, type StdRealtimeChatParams, type StdRlAgentParams, type StdRpgGameParams, type StdScoreBoardParams, type StdScoreParams, type StdSearchParams, type StdSelectionParams, type StdSequencerGameParams, type StdServiceContentPipelineParams, type StdServiceCustomApiTesterParams, type StdServiceCustomBearerParams, type StdServiceCustomHeaderParams, type StdServiceCustomNoauthParams, type StdServiceCustomQueryParams, type StdServiceDevopsToolkitParams, type StdServiceEmailParams, type StdServiceGithubParams, type StdServiceLlmParams, type StdServiceMarketplaceParams, type StdServiceNotificationHubParams, type StdServiceOauthParams, type StdServicePaymentFlowParams, type StdServiceRedisParams, type StdServiceResearchAssistantParams, type StdServiceStorageParams, type StdServiceStripeParams, type StdServiceTwilioParams, type StdServiceYoutubeParams, type StdSimulationCanvasParams, type StdSimulatorGameParams, type StdSocialFeedParams, type StdSortParams, type StdSpriteParams, type StdStemLabParams, type StdStrategyGameParams, type StdTabsParams, type StdTextClassifierParams, type StdTextEffectsParams, type StdThemeParams, type StdTimerParams, type StdTradingDashboardParams, type StdTrainerParams, type StdTurnBasedBattleParams, type StdUndoParams, type StdUploadParams, type StdValidateOnSaveParams, type StdWizardParams, stdAgentActivityLog, stdAgentActivityLogEntity, stdAgentActivityLogPage, stdAgentActivityLogTrait, stdAgentAssistant, stdAgentBuilder, stdAgentChatThread, stdAgentChatThreadEntity, stdAgentChatThreadPage, stdAgentChatThreadTrait, stdAgentClassifier, stdAgentClassifierEntity, stdAgentClassifierPage, stdAgentClassifierTrait, stdAgentCompletion, stdAgentCompletionEntity, stdAgentCompletionPage, stdAgentCompletionTrait, stdAgentContextWindow, stdAgentContextWindowEntity, stdAgentContextWindowPage, stdAgentContextWindowTrait, stdAgentConversation, stdAgentConversationEntity, stdAgentConversationPage, stdAgentConversationTrait, stdAgentFixLoop, stdAgentFixLoopEntity, stdAgentFixLoopPage, stdAgentFixLoopTrait, stdAgentLearner, stdAgentLearnerEntity, stdAgentLearnerPage, stdAgentLearnerTrait, stdAgentMemory, stdAgentMemoryEntity, stdAgentMemoryPage, stdAgentMemoryTrait, stdAgentPipeline, stdAgentPlanner, stdAgentPlannerEntity, stdAgentPlannerPage, stdAgentPlannerTrait, stdAgentProvider, stdAgentProviderEntity, stdAgentProviderPage, stdAgentProviderTrait, stdAgentRag, stdAgentRagEntity, stdAgentRagPage, stdAgentRagTrait, stdAgentReviewer, stdAgentSearch, stdAgentSearchEntity, stdAgentSearchPage, stdAgentSearchTrait, stdAgentSession, stdAgentSessionEntity, stdAgentSessionPage, stdAgentSessionTrait, stdAgentStepProgress, stdAgentStepProgressEntity, stdAgentStepProgressPage, stdAgentStepProgressTrait, stdAgentTokenGauge, stdAgentTokenGaugeEntity, stdAgentTokenGaugePage, stdAgentTokenGaugeTrait, stdAgentToolCall, stdAgentToolCallEntity, stdAgentToolCallPage, stdAgentToolCallTrait, stdAgentToolLoop, stdAgentToolLoopEntity, stdAgentToolLoopPage, stdAgentToolLoopTrait, stdAgentTutor, stdApiGateway, stdArcadeGame, stdAsync, stdAsyncEntity, stdAsyncPage, stdAsyncTrait, stdAutoregressive, stdAutoregressiveEntity, stdAutoregressivePage, stdAutoregressiveTrait, stdBookingSystem, stdBrowse, stdBrowseEntity, stdBrowsePage, stdBrowseTrait, stdBuilderGame, stdBuilderGameEntity, stdBuilderGamePage, stdBuilderGameTrait, stdCacheAside, stdCacheAsideEntity, stdCacheAsidePage, stdCacheAsideTrait, stdCalendar, stdCalendarEntity, stdCalendarPage, stdCalendarTrait, stdCart, stdCartEntity, stdCartPage, stdCartTrait, stdCicdPipeline, stdCircuitBreaker, stdCircuitBreakerEntity, stdCircuitBreakerPage, stdCircuitBreakerTrait, stdClassifier, stdClassifierEntity, stdClassifierGame, stdClassifierGameEntity, stdClassifierGamePage, stdClassifierGameTrait, stdClassifierPage, stdClassifierTrait, stdCms, stdCodingAcademy, stdCollision, stdCollisionEntity, stdCollisionPage, stdCollisionTrait, stdCombat, stdCombatEntity, stdCombatLog, stdCombatLogEntity, stdCombatLogPage, stdCombatLogTrait, stdCombatPage, stdCombatTrait, stdConfirmation, stdConfirmationEntity, stdConfirmationPage, stdConfirmationTrait, stdCrm, stdDebuggerGame, stdDebuggerGameEntity, stdDebuggerGamePage, stdDebuggerGameTrait, stdDetail, stdDetailEntity, stdDetailPage, stdDetailTrait, stdDevopsDashboard, stdDialogueBox, stdDialogueBoxEntity, stdDialogueBoxPage, stdDialogueBoxTrait, stdDisplay, stdDisplayEntity, stdDisplayPage, stdDisplayTrait, stdDrawer, stdDrawerEntity, stdDrawerPage, stdDrawerTrait, stdEcommerce, stdEventHandlerGame, stdEventHandlerGameEntity, stdEventHandlerGamePage, stdEventHandlerGameTrait, stdFilter, stdFilterEntity, stdFilterPage, stdFilterTrait, stdFinanceTracker, stdFlipCard, stdFlipCardEntity, stdFlipCardPage, stdFlipCardTrait, stdFormAdvanced, stdFormAdvancedEntity, stdFormAdvancedPage, stdFormAdvancedTrait, stdGallery, stdGalleryEntity, stdGalleryPage, stdGalleryTrait, stdGameAudio, stdGameAudioEntity, stdGameAudioPage, stdGameAudioTrait, stdGameCanvas2d, stdGameCanvas2dEntity, stdGameCanvas2dPage, stdGameCanvas2dTrait, stdGameCanvas3d, stdGameCanvas3dEntity, stdGameCanvas3dPage, stdGameCanvas3dTrait, stdGameHud, stdGameHudEntity, stdGameHudPage, stdGameHudTrait, stdGameMenu, stdGameMenuEntity, stdGameMenuPage, stdGameMenuTrait, stdGameOverScreen, stdGameOverScreenEntity, stdGameOverScreenPage, stdGameOverScreenTrait, stdGameflow, stdGameflowEntity, stdGameflowPage, stdGameflowTrait, stdGeospatial, stdGeospatialEntity, stdGeospatialPage, stdGeospatialTrait, stdGraphClassifier, stdGraphClassifierEntity, stdGraphClassifierPage, stdGraphClassifierTrait, stdHealthcare, stdHelpdesk, stdHrPortal, stdInput, stdInputEntity, stdInputPage, stdInputTrait, stdInventory, stdInventoryEntity, stdInventoryPage, stdInventoryPanel, stdInventoryPanelEntity, stdInventoryPanelPage, stdInventoryPanelTrait, stdInventoryTrait, stdIotDashboard, stdIsometricCanvas, stdIsometricCanvasEntity, stdIsometricCanvasPage, stdIsometricCanvasTrait, stdList, stdListEntity, stdListPage, stdListTrait, stdLms, stdLoading, stdLoadingEntity, stdLoadingPage, stdLoadingTrait, stdLogicTraining, stdMessaging, stdMessagingEntity, stdMessagingPage, stdMessagingTrait, stdModal, stdModalEntity, stdModalPage, stdModalTrait, stdMovement, stdMovementEntity, stdMovementPage, stdMovementTrait, stdNegotiatorGame, stdNegotiatorGameEntity, stdNegotiatorGamePage, stdNegotiatorGameTrait, stdNotification, stdNotificationEntity, stdNotificationPage, stdNotificationTrait, stdOverworld, stdOverworldEntity, stdOverworldPage, stdOverworldTrait, stdPagination, stdPaginationEntity, stdPaginationPage, stdPaginationTrait, stdPhysics2d, stdPhysics2dEntity, stdPhysics2dPage, stdPhysics2dTrait, stdPlatformerApp, stdPlatformerCanvas, stdPlatformerCanvasEntity, stdPlatformerCanvasPage, stdPlatformerCanvasTrait, stdPlatformerGame, stdPlatformerGameEntity, stdPlatformerGamePage, stdPlatformerGameTrait, stdProjectManager, stdPuzzleApp, stdPuzzleGame, stdPuzzleGameEntity, stdPuzzleGamePage, stdPuzzleGameTrait, stdQuest, stdQuestEntity, stdQuestPage, stdQuestTrait, stdQuiz, stdQuizEntity, stdQuizPage, stdQuizTrait, stdRateLimiter, stdRateLimiterEntity, stdRateLimiterPage, stdRateLimiterTrait, stdRating, stdRatingEntity, stdRatingPage, stdRatingTrait, stdRealtimeChat, stdRlAgent, stdRlAgentEntity, stdRlAgentPage, stdRlAgentTrait, stdRpgGame, stdScore, stdScoreBoard, stdScoreBoardEntity, stdScoreBoardPage, stdScoreBoardTrait, stdScoreEntity, stdScorePage, stdScoreTrait, stdSearch, stdSearchEntity, stdSearchPage, stdSearchTrait, stdSelection, stdSelectionEntity, stdSelectionPage, stdSelectionTrait, stdSequencerGame, stdSequencerGameEntity, stdSequencerGamePage, stdSequencerGameTrait, stdServiceContentPipeline, stdServiceContentPipelineEntity, stdServiceContentPipelinePage, stdServiceContentPipelineTrait, stdServiceCustomApiTester, stdServiceCustomApiTesterEntity, stdServiceCustomApiTesterPage, stdServiceCustomApiTesterTrait, stdServiceCustomBearer, stdServiceCustomBearerEntity, stdServiceCustomBearerPage, stdServiceCustomBearerTrait, stdServiceCustomHeader, stdServiceCustomHeaderEntity, stdServiceCustomHeaderPage, stdServiceCustomHeaderTrait, stdServiceCustomNoauth, stdServiceCustomNoauthEntity, stdServiceCustomNoauthPage, stdServiceCustomNoauthTrait, stdServiceCustomQuery, stdServiceCustomQueryEntity, stdServiceCustomQueryPage, stdServiceCustomQueryTrait, stdServiceDevopsToolkit, stdServiceDevopsToolkitEntity, stdServiceDevopsToolkitPage, stdServiceEmail, stdServiceEmailEntity, stdServiceEmailPage, stdServiceEmailTrait, stdServiceGithub, stdServiceGithubEntity, stdServiceGithubPage, stdServiceGithubTrait, stdServiceLlm, stdServiceLlmEntity, stdServiceLlmPage, stdServiceLlmTrait, stdServiceMarketplace, stdServiceNotificationHub, stdServiceNotificationHubEntity, stdServiceNotificationHubPage, stdServiceNotificationHubTrait, stdServiceOauth, stdServiceOauthEntity, stdServiceOauthPage, stdServiceOauthTrait, stdServicePaymentFlow, stdServicePaymentFlowEntity, stdServicePaymentFlowPage, stdServiceRedis, stdServiceRedisEntity, stdServiceRedisPage, stdServiceRedisTrait, stdServiceResearchAssistant, stdServiceStorage, stdServiceStorageEntity, stdServiceStoragePage, stdServiceStorageTrait, stdServiceStripe, stdServiceStripeEntity, stdServiceStripePage, stdServiceStripeTrait, stdServiceTwilio, stdServiceTwilioEntity, stdServiceTwilioPage, stdServiceTwilioTrait, stdServiceYoutube, stdServiceYoutubeEntity, stdServiceYoutubePage, stdServiceYoutubeTrait, stdSimulationCanvas, stdSimulationCanvasEntity, stdSimulationCanvasPage, stdSimulationCanvasTrait, stdSimulatorGame, stdSimulatorGameEntity, stdSimulatorGamePage, stdSimulatorGameTrait, stdSocialFeed, stdSort, stdSortEntity, stdSortPage, stdSortTrait, stdSprite, stdSpriteEntity, stdSpritePage, stdSpriteTrait, stdStemLab, stdStrategyGame, stdTabs, stdTabsEntity, stdTabsPage, stdTabsTrait, stdTextClassifier, stdTextClassifierEntity, stdTextClassifierPage, stdTextClassifierTrait, stdTextEffects, stdTextEffectsEntity, stdTextEffectsPage, stdTextEffectsTrait, stdTheme, stdThemeEntity, stdThemePage, stdThemeTrait, stdTimer, stdTimerEntity, stdTimerPage, stdTimerTrait, stdTradingDashboard, stdTrainer, stdTrainerEntity, stdTrainerPage, stdTrainerTrait, stdTurnBasedBattle, stdTurnBasedBattleEntity, stdTurnBasedBattlePage, stdTurnBasedBattleTrait, stdUndo, stdUndoEntity, stdUndoPage, stdUndoTrait, stdUpload, stdUploadEntity, stdUploadPage, stdUploadTrait, stdValidateOnSave, stdWizard, stdWizardEntity, stdWizardPage, stdWizardTrait };
|