@majkapp/plugin-kit 3.7.4 → 3.7.6
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/docs/INDEX.md +39 -39
- package/package.json +1 -1
package/docs/INDEX.md
CHANGED
|
@@ -639,48 +639,48 @@ The `ctx.majk` object provides access to many powerful APIs beyond the basics co
|
|
|
639
639
|
|
|
640
640
|
| API | Command | Description |
|
|
641
641
|
|-----|---------|-------------|
|
|
642
|
-
| **Delegation** | `--delegation` | Multi-agent task delegation with witness-based verification. Delegate tasks to teammates, fan-out/fan-in patterns, and automated completion checking. |
|
|
643
|
-
| **Batch** | `--batch` | Batch processing for large datasets. Process files, lists, or glob patterns with parallelism, retry logic, and progress tracking. |
|
|
644
|
-
| **Reports** | `--reports` | Knowledge management system with hierarchical reports, witness validation, views, and import/export capabilities. |
|
|
645
|
-
| **Scripting** | `--scripting` | Execute JavaScript scripts that orchestrate tool calls. Includes dry-run mode, tracing, and script re-execution. |
|
|
646
|
-
| **Tool Discovery** | `--tool-discovery` | Discover available service functions dynamically and invoke them. Build adaptive workflows based on available tools. |
|
|
647
|
-
| **Skills** | `--skills` | Register and manage skills - instructions on how to accomplish tasks using tools. Supports runtime skills with setup/teardown. |
|
|
648
|
-
| **Auth** | `--auth` | Core Cognito/MAJK authentication. Retrieve access tokens for calling MAJK backend services and AWS resources. |
|
|
649
|
-
| **Secrets** | `--secrets` | Secure secret storage with scoping (global, project, integration). Store and retrieve API keys, tokens, and credentials. |
|
|
650
|
-
| **Config** | `--config-api` | Access MAJK configuration using dot-notation paths. Read AWS, auth, Bedrock, and plugin settings. |
|
|
651
|
-
| **Plugins** | `--plugins` | Plugin lifecycle management. Install, start, stop, reload plugins programmatically. Health checks and logging. |
|
|
652
|
-
| **Tasks** | `--tasks` | Start and monitor asynchronous tasks. Send messages, track progress, and handle completion events. |
|
|
653
|
-
| **Knowledge** | `--knowledge` | Knowledge trees for organizing information. Add nodes, search, and track references across conversations. |
|
|
654
|
-
| **Agents** | `--agents` | Create, configure, test, and clone AI agents. Manage MCP servers and agent settings. |
|
|
655
|
-
| **Conversations** | `--conversations` | Access and manage conversations. List, filter, search, get messages, and subscribe to changes. |
|
|
642
|
+
| **Delegation** | `--llm:delegation` | Multi-agent task delegation with witness-based verification. Delegate tasks to teammates, fan-out/fan-in patterns, and automated completion checking. |
|
|
643
|
+
| **Batch** | `--llm:batch` | Batch processing for large datasets. Process files, lists, or glob patterns with parallelism, retry logic, and progress tracking. |
|
|
644
|
+
| **Reports** | `--llm:reports` | Knowledge management system with hierarchical reports, witness validation, views, and import/export capabilities. |
|
|
645
|
+
| **Scripting** | `--llm:scripting` | Execute JavaScript scripts that orchestrate tool calls. Includes dry-run mode, tracing, and script re-execution. |
|
|
646
|
+
| **Tool Discovery** | `--llm:tool-discovery` | Discover available service functions dynamically and invoke them. Build adaptive workflows based on available tools. |
|
|
647
|
+
| **Skills** | `--llm:skills` | Register and manage skills - instructions on how to accomplish tasks using tools. Supports runtime skills with setup/teardown. |
|
|
648
|
+
| **Auth** | `--llm:auth` | Core Cognito/MAJK authentication. Retrieve access tokens for calling MAJK backend services and AWS resources. |
|
|
649
|
+
| **Secrets** | `--llm:secrets` | Secure secret storage with scoping (global, project, integration). Store and retrieve API keys, tokens, and credentials. |
|
|
650
|
+
| **Config** | `--llm:config-api` | Access MAJK configuration using dot-notation paths. Read AWS, auth, Bedrock, and plugin settings. |
|
|
651
|
+
| **Plugins** | `--llm:plugins` | Plugin lifecycle management. Install, start, stop, reload plugins programmatically. Health checks and logging. |
|
|
652
|
+
| **Tasks** | `--llm:tasks` | Start and monitor asynchronous tasks. Send messages, track progress, and handle completion events. |
|
|
653
|
+
| **Knowledge** | `--llm:knowledge` | Knowledge trees for organizing information. Add nodes, search, and track references across conversations. |
|
|
654
|
+
| **Agents** | `--llm:agents` | Create, configure, test, and clone AI agents. Manage MCP servers and agent settings. |
|
|
655
|
+
| **Conversations** | `--llm:conversations` | Access and manage conversations. List, filter, search, get messages, and subscribe to changes. |
|
|
656
656
|
|
|
657
657
|
## Next Steps
|
|
658
658
|
|
|
659
659
|
**Core Plugin Development:**
|
|
660
|
-
Run `npx @majkapp/plugin-kit --functions` - Deep dive into function patterns
|
|
661
|
-
Run `npx @majkapp/plugin-kit --screens` - Screen configuration details
|
|
662
|
-
Run `npx @majkapp/plugin-kit --hooks` - Generated hooks reference
|
|
663
|
-
Run `npx @majkapp/plugin-kit --context` - ctx.majk and ctx.logger APIs
|
|
664
|
-
Run `npx @majkapp/plugin-kit --ai` - AI providers and LLMs
|
|
665
|
-
Run `npx @majkapp/plugin-kit --services` - Service grouping patterns
|
|
666
|
-
Run `npx @majkapp/plugin-kit --teammates` - AI teammates and agents
|
|
667
|
-
Run `npx @majkapp/plugin-kit --lifecycle` - onReady and cleanup
|
|
668
|
-
Run `npx @majkapp/plugin-kit --testing` - Complete testing guide
|
|
669
|
-
Run `npx @majkapp/plugin-kit --config` - vite.config.js and project setup
|
|
670
|
-
Run `npx @majkapp/plugin-kit --full` - Complete reference
|
|
660
|
+
Run `npx @majkapp/plugin-kit --llm:functions` - Deep dive into function patterns
|
|
661
|
+
Run `npx @majkapp/plugin-kit --llm:screens` - Screen configuration details
|
|
662
|
+
Run `npx @majkapp/plugin-kit --llm:hooks` - Generated hooks reference
|
|
663
|
+
Run `npx @majkapp/plugin-kit --llm:context` - ctx.majk and ctx.logger APIs
|
|
664
|
+
Run `npx @majkapp/plugin-kit --llm:ai` - AI providers and LLMs
|
|
665
|
+
Run `npx @majkapp/plugin-kit --llm:services` - Service grouping patterns
|
|
666
|
+
Run `npx @majkapp/plugin-kit --llm:teammates` - AI teammates and agents
|
|
667
|
+
Run `npx @majkapp/plugin-kit --llm:lifecycle` - onReady and cleanup
|
|
668
|
+
Run `npx @majkapp/plugin-kit --llm:testing` - Complete testing guide
|
|
669
|
+
Run `npx @majkapp/plugin-kit --llm:config` - vite.config.js and project setup
|
|
670
|
+
Run `npx @majkapp/plugin-kit --llm:full` - Complete reference
|
|
671
671
|
|
|
672
672
|
**Additional APIs:**
|
|
673
|
-
Run `npx @majkapp/plugin-kit --delegation` - Task delegation with witnesses
|
|
674
|
-
Run `npx @majkapp/plugin-kit --batch` - Batch processing
|
|
675
|
-
Run `npx @majkapp/plugin-kit --reports` - Knowledge management
|
|
676
|
-
Run `npx @majkapp/plugin-kit --scripting` - Script execution
|
|
677
|
-
Run `npx @majkapp/plugin-kit --tool-discovery` - Dynamic tool invocation
|
|
678
|
-
Run `npx @majkapp/plugin-kit --skills` - Skill management
|
|
679
|
-
Run `npx @majkapp/plugin-kit --auth` - Cognito authentication
|
|
680
|
-
Run `npx @majkapp/plugin-kit --secrets` - Secret storage
|
|
681
|
-
Run `npx @majkapp/plugin-kit --config-api` - Configuration access
|
|
682
|
-
Run `npx @majkapp/plugin-kit --plugins` - Plugin management
|
|
683
|
-
Run `npx @majkapp/plugin-kit --tasks` - Task monitoring
|
|
684
|
-
Run `npx @majkapp/plugin-kit --knowledge` - Knowledge trees
|
|
685
|
-
Run `npx @majkapp/plugin-kit --agents` - Agent configuration
|
|
686
|
-
Run `npx @majkapp/plugin-kit --conversations` - Conversation access
|
|
673
|
+
Run `npx @majkapp/plugin-kit --llm:delegation` - Task delegation with witnesses
|
|
674
|
+
Run `npx @majkapp/plugin-kit --llm:batch` - Batch processing
|
|
675
|
+
Run `npx @majkapp/plugin-kit --llm:reports` - Knowledge management
|
|
676
|
+
Run `npx @majkapp/plugin-kit --llm:scripting` - Script execution
|
|
677
|
+
Run `npx @majkapp/plugin-kit --llm:tool-discovery` - Dynamic tool invocation
|
|
678
|
+
Run `npx @majkapp/plugin-kit --llm:skills` - Skill management
|
|
679
|
+
Run `npx @majkapp/plugin-kit --llm:auth` - Cognito authentication
|
|
680
|
+
Run `npx @majkapp/plugin-kit --llm:secrets` - Secret storage
|
|
681
|
+
Run `npx @majkapp/plugin-kit --llm:config-api` - Configuration access
|
|
682
|
+
Run `npx @majkapp/plugin-kit --llm:plugins` - Plugin management
|
|
683
|
+
Run `npx @majkapp/plugin-kit --llm:tasks` - Task monitoring
|
|
684
|
+
Run `npx @majkapp/plugin-kit --llm:knowledge` - Knowledge trees
|
|
685
|
+
Run `npx @majkapp/plugin-kit --llm:agents` - Agent configuration
|
|
686
|
+
Run `npx @majkapp/plugin-kit --llm:conversations` - Conversation access
|
package/package.json
CHANGED