@majkapp/plugin-kit 3.7.3 → 3.7.5

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.
@@ -106,4 +106,92 @@ cli.addCommand('--full',
106
106
  { description: 'Complete documentation' }
107
107
  );
108
108
 
109
+ // ============================================
110
+ // Additional MAJK APIs
111
+ // ============================================
112
+
113
+ // Delegation API
114
+ cli.addCommand('--delegation',
115
+ cli.createFullDocCommand('DELEGATION.md'),
116
+ { description: 'Multi-agent task delegation with witnesses' }
117
+ );
118
+
119
+ // Batch API
120
+ cli.addCommand('--batch',
121
+ cli.createFullDocCommand('BATCH.md'),
122
+ { description: 'Batch processing for large datasets' }
123
+ );
124
+
125
+ // Reports API
126
+ cli.addCommand('--reports',
127
+ cli.createFullDocCommand('REPORTS.md'),
128
+ { description: 'Knowledge management and reports' }
129
+ );
130
+
131
+ // Scripting API
132
+ cli.addCommand('--scripting',
133
+ cli.createFullDocCommand('SCRIPTING.md'),
134
+ { description: 'Execute scripts that orchestrate tools' }
135
+ );
136
+
137
+ // Tool Discovery API
138
+ cli.addCommand('--tool-discovery',
139
+ cli.createFullDocCommand('TOOL_DISCOVERY.md'),
140
+ { description: 'Discover and invoke tools dynamically' }
141
+ );
142
+
143
+ // Skills API
144
+ cli.addCommand('--skills',
145
+ cli.createFullDocCommand('SKILLS.md'),
146
+ { description: 'Skill registration and management' }
147
+ );
148
+
149
+ // Auth API
150
+ cli.addCommand('--auth',
151
+ cli.createFullDocCommand('AUTH.md'),
152
+ { description: 'Cognito authentication for MAJK services' }
153
+ );
154
+
155
+ // Secrets API
156
+ cli.addCommand('--secrets',
157
+ cli.createFullDocCommand('SECRETS.md'),
158
+ { description: 'Secure secret storage and retrieval' }
159
+ );
160
+
161
+ // Config API
162
+ cli.addCommand('--config-api',
163
+ cli.createFullDocCommand('CONFIG_API.md'),
164
+ { description: 'Access MAJK configuration' }
165
+ );
166
+
167
+ // Plugins API
168
+ cli.addCommand('--plugins',
169
+ cli.createFullDocCommand('PLUGINS.md'),
170
+ { description: 'Plugin lifecycle management' }
171
+ );
172
+
173
+ // Tasks API
174
+ cli.addCommand('--tasks',
175
+ cli.createFullDocCommand('TASKS.md'),
176
+ { description: 'Start and monitor async tasks' }
177
+ );
178
+
179
+ // Knowledge API
180
+ cli.addCommand('--knowledge',
181
+ cli.createFullDocCommand('KNOWLEDGE.md'),
182
+ { description: 'Knowledge trees and search' }
183
+ );
184
+
185
+ // Agents API
186
+ cli.addCommand('--agents',
187
+ cli.createFullDocCommand('AGENTS.md'),
188
+ { description: 'Agent configuration and testing' }
189
+ );
190
+
191
+ // Conversations API
192
+ cli.addCommand('--conversations',
193
+ cli.createFullDocCommand('CONVERSATIONS_API.md'),
194
+ { description: 'Conversation access and management' }
195
+ );
196
+
109
197
  cli.run();