@agentuity/opencode 0.1.43 → 0.1.44
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/README.md +9 -9
- package/dist/agents/architect.d.ts +1 -1
- package/dist/agents/architect.d.ts.map +1 -1
- package/dist/agents/architect.js +4 -0
- package/dist/agents/architect.js.map +1 -1
- package/dist/agents/builder.d.ts +1 -1
- package/dist/agents/builder.d.ts.map +1 -1
- package/dist/agents/builder.js +4 -0
- package/dist/agents/builder.js.map +1 -1
- package/dist/agents/expert.d.ts +1 -1
- package/dist/agents/expert.d.ts.map +1 -1
- package/dist/agents/expert.js +2 -2
- package/dist/agents/index.d.ts.map +1 -1
- package/dist/agents/index.js +4 -0
- package/dist/agents/index.js.map +1 -1
- package/dist/agents/lead.d.ts +1 -1
- package/dist/agents/lead.d.ts.map +1 -1
- package/dist/agents/lead.js +94 -11
- package/dist/agents/lead.js.map +1 -1
- package/dist/agents/memory/entities.d.ts +32 -0
- package/dist/agents/memory/entities.d.ts.map +1 -0
- package/dist/agents/memory/entities.js +168 -0
- package/dist/agents/memory/entities.js.map +1 -0
- package/dist/agents/memory/index.d.ts +4 -0
- package/dist/agents/memory/index.d.ts.map +1 -0
- package/dist/agents/memory/index.js +2 -0
- package/dist/agents/memory/index.js.map +1 -0
- package/dist/agents/memory/types.d.ts +71 -0
- package/dist/agents/memory/types.d.ts.map +1 -0
- package/dist/agents/memory/types.js +2 -0
- package/dist/agents/memory/types.js.map +1 -0
- package/dist/agents/memory.d.ts +1 -1
- package/dist/agents/memory.d.ts.map +1 -1
- package/dist/agents/memory.js +344 -7
- package/dist/agents/memory.js.map +1 -1
- package/dist/agents/product.d.ts +4 -0
- package/dist/agents/product.d.ts.map +1 -0
- package/dist/agents/product.js +333 -0
- package/dist/agents/product.js.map +1 -0
- package/dist/agents/reasoner.d.ts +16 -0
- package/dist/agents/reasoner.d.ts.map +1 -0
- package/dist/agents/reasoner.js +160 -0
- package/dist/agents/reasoner.js.map +1 -0
- package/dist/agents/reviewer.d.ts +1 -1
- package/dist/agents/reviewer.d.ts.map +1 -1
- package/dist/agents/reviewer.js +9 -0
- package/dist/agents/reviewer.js.map +1 -1
- package/dist/background/manager.js +1 -1
- package/dist/background/manager.js.map +1 -1
- package/dist/plugin/hooks/index.d.ts +2 -0
- package/dist/plugin/hooks/index.d.ts.map +1 -0
- package/dist/plugin/hooks/index.js +2 -0
- package/dist/plugin/hooks/index.js.map +1 -0
- package/dist/plugin/hooks/session-memory.d.ts.map +1 -1
- package/dist/plugin/hooks/session-memory.js +5 -0
- package/dist/plugin/hooks/session-memory.js.map +1 -1
- package/dist/plugin/hooks/tools.d.ts +11 -0
- package/dist/plugin/hooks/tools.d.ts.map +1 -1
- package/dist/plugin/hooks/tools.js +18 -1
- package/dist/plugin/hooks/tools.js.map +1 -1
- package/dist/plugin/plugin.d.ts.map +1 -1
- package/dist/plugin/plugin.js +198 -12
- package/dist/plugin/plugin.js.map +1 -1
- package/dist/tools/background.d.ts +2 -0
- package/dist/tools/background.d.ts.map +1 -1
- package/dist/tools/background.js +3 -3
- package/dist/tools/background.js.map +1 -1
- package/dist/tools/delegate.d.ts +4 -0
- package/dist/tools/delegate.d.ts.map +1 -1
- package/dist/tools/delegate.js +18 -3
- package/dist/tools/delegate.js.map +1 -1
- package/dist/types.d.ts +2 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -1
- package/package.json +3 -3
- package/src/agents/architect.ts +4 -0
- package/src/agents/builder.ts +4 -0
- package/src/agents/expert.ts +2 -2
- package/src/agents/index.ts +4 -0
- package/src/agents/lead.ts +94 -11
- package/src/agents/memory/entities.ts +220 -0
- package/src/agents/memory/index.ts +22 -0
- package/src/agents/memory/types.ts +76 -0
- package/src/agents/memory.ts +344 -7
- package/src/agents/product.ts +336 -0
- package/src/agents/reasoner.ts +182 -0
- package/src/agents/reviewer.ts +9 -0
- package/src/background/manager.ts +1 -1
- package/src/plugin/hooks/index.ts +1 -0
- package/src/plugin/hooks/session-memory.ts +5 -0
- package/src/plugin/hooks/tools.ts +24 -1
- package/src/plugin/plugin.ts +223 -12
- package/src/tools/background.ts +3 -3
- package/src/tools/delegate.ts +18 -3
- package/src/types.ts +2 -0
package/src/plugin/plugin.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import type { PluginInput, Hooks } from '@opencode-ai/plugin';
|
|
2
2
|
import { tool } from '@opencode-ai/plugin';
|
|
3
|
+
import { StructuredError } from '@agentuity/core';
|
|
3
4
|
import type { AgentConfig, CommandDefinition } from '../types';
|
|
4
5
|
import { loadAllSkills, type LoadedSkill } from '../skills';
|
|
5
6
|
import { agents } from '../agents';
|
|
6
7
|
import { loadCoderConfig, getDefaultConfig, mergeConfig, validateAndWarnConfigs } from '../config';
|
|
7
8
|
import { createSessionHooks } from './hooks/session';
|
|
8
|
-
import { createToolHooks } from './hooks/tools';
|
|
9
|
+
import { createToolHooks, getCoderProfile } from './hooks/tools';
|
|
9
10
|
import { createKeywordHooks } from './hooks/keyword';
|
|
10
11
|
import { createParamsHooks } from './hooks/params';
|
|
11
12
|
import { createCadenceHooks } from './hooks/cadence';
|
|
@@ -13,6 +14,26 @@ import { createSessionMemoryHooks } from './hooks/session-memory';
|
|
|
13
14
|
import type { AgentRole } from '../types';
|
|
14
15
|
import { BackgroundManager } from '../background';
|
|
15
16
|
import { TmuxSessionManager } from '../tmux';
|
|
17
|
+
import { checkAuth } from '../services/auth';
|
|
18
|
+
|
|
19
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
20
|
+
// Memory Share Tool Errors
|
|
21
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
22
|
+
|
|
23
|
+
const MemoryShareAuthError = StructuredError(
|
|
24
|
+
'MemoryShareAuthError',
|
|
25
|
+
'Authentication required to share memory content'
|
|
26
|
+
)<{ reason: string }>();
|
|
27
|
+
|
|
28
|
+
const MemoryShareCLIError = StructuredError(
|
|
29
|
+
'MemoryShareCLIError',
|
|
30
|
+
'CLI command failed to create stream'
|
|
31
|
+
)<{ exitCode: number; stderr: string }>();
|
|
32
|
+
|
|
33
|
+
const MemoryShareError = StructuredError(
|
|
34
|
+
'MemoryShareError',
|
|
35
|
+
'Failed to create public memory share'
|
|
36
|
+
)<{ reason: string }>();
|
|
16
37
|
|
|
17
38
|
// Sandbox environment detection
|
|
18
39
|
const SANDBOX_ID = process.env.AGENTUITY_SANDBOX_ID;
|
|
@@ -53,6 +74,8 @@ const AGENT_MENTIONS: Record<AgentRole, string> = {
|
|
|
53
74
|
expert: '@Agentuity Coder Expert',
|
|
54
75
|
planner: '@Agentuity Coder Planner',
|
|
55
76
|
runner: '@Agentuity Coder Runner',
|
|
77
|
+
reasoner: '@Agentuity Coder Reasoner',
|
|
78
|
+
product: '@Agentuity Coder Product',
|
|
56
79
|
};
|
|
57
80
|
|
|
58
81
|
export async function createCoderPlugin(ctx: PluginInput): Promise<Hooks> {
|
|
@@ -278,21 +301,24 @@ You are the Agentuity Coder Lead agent orchestrating the Agentuity Coder team.
|
|
|
278
301
|
- **@Agentuity Coder Architect**: Complex autonomous tasks, Cadence mode (GPT Codex)
|
|
279
302
|
- **@Agentuity Coder Reviewer**: Review changes, catch issues, apply fixes
|
|
280
303
|
- **@Agentuity Coder Memory**: Store context, remember decisions
|
|
304
|
+
- **@Agentuity Coder Reasoner**: Extract structured conclusions, resolve conflicts, surface corrections
|
|
281
305
|
- **@Agentuity Coder Expert**: Agentuity CLI and cloud services specialist
|
|
282
306
|
- **@Agentuity Coder Planner**: Deep planning for complex architecture decisions
|
|
283
307
|
- **@Agentuity Coder Runner**: Run lint/build/test commands, returns structured results
|
|
308
|
+
- **@Agentuity Coder Product**: Clarify requirements, validate features, track progress
|
|
284
309
|
|
|
285
310
|
## Task
|
|
286
311
|
$ARGUMENTS
|
|
287
312
|
|
|
288
313
|
## Guidelines
|
|
289
314
|
1. Use @Agentuity Coder Scout first to understand context
|
|
290
|
-
2.
|
|
291
|
-
3. Delegate
|
|
292
|
-
4.
|
|
293
|
-
5.
|
|
294
|
-
6.
|
|
295
|
-
7.
|
|
315
|
+
2. Use @Agentuity Coder Product to clarify requirements if unclear
|
|
316
|
+
3. Delegate implementation to @Agentuity Coder Builder (or Architect for complex work)
|
|
317
|
+
4. Delegate lint/build/test commands to @Agentuity Coder Runner for structured results
|
|
318
|
+
5. Have @Agentuity Coder Reviewer check the work
|
|
319
|
+
6. Use @Agentuity Coder Expert for Agentuity CLI questions
|
|
320
|
+
7. Only use cloud services when genuinely helpful
|
|
321
|
+
8. **When done, tell @Agentuity Coder Memory to memorialize the session**
|
|
296
322
|
</coder-mode>`,
|
|
297
323
|
agent: 'Agentuity Coder Lead',
|
|
298
324
|
argumentHint: '"task description"',
|
|
@@ -316,6 +342,46 @@ $ARGUMENTS`,
|
|
|
316
342
|
argumentHint: '(optional additional context)',
|
|
317
343
|
},
|
|
318
344
|
|
|
345
|
+
'agentuity-memory-share': {
|
|
346
|
+
name: 'agentuity-memory-share',
|
|
347
|
+
description: '🔗 Share memory content publicly with a shareable URL',
|
|
348
|
+
template: `Create a public shareable link for memory content.
|
|
349
|
+
|
|
350
|
+
The user wants to share: $ARGUMENTS
|
|
351
|
+
|
|
352
|
+
## Your Task
|
|
353
|
+
|
|
354
|
+
1. **Understand what to share** — Based on the user's request, determine what content to share:
|
|
355
|
+
- A summary of the current session
|
|
356
|
+
- The latest compaction
|
|
357
|
+
- Specific decisions or corrections
|
|
358
|
+
- A custom selection of context
|
|
359
|
+
- If the request implies context not in the current chat, pull from memory stores (KV/Vector)
|
|
360
|
+
|
|
361
|
+
2. **Prepare the content** — Format the content appropriately:
|
|
362
|
+
- Use clear markdown formatting
|
|
363
|
+
- Include relevant context (what this is, when it was created)
|
|
364
|
+
- Be conservative with sensitive information (no secrets, credentials, etc.)
|
|
365
|
+
- Keep it focused and useful for the recipient
|
|
366
|
+
|
|
367
|
+
3. **Share it** — Call the \`agentuity_memory_share\` tool with:
|
|
368
|
+
- \`content\`: The formatted content to share
|
|
369
|
+
- \`ttl_seconds\`: Only if the user specified a duration (otherwise use default 30-day expiration)
|
|
370
|
+
- \`metadata\`: Optional tags like \`type=summary\` or \`source=session\`
|
|
371
|
+
- \`content_type\`: Usually \`text/markdown\` (default)
|
|
372
|
+
|
|
373
|
+
4. **Return the URL** — Give the user the public URL they can share anywhere.
|
|
374
|
+
|
|
375
|
+
## Guidelines
|
|
376
|
+
- The URL works without authentication — anyone with the link can view it
|
|
377
|
+
- Content is stored in Agentuity Cloud Streams with automatic expiration
|
|
378
|
+
- Don't include secrets, API keys, or sensitive credentials in shared content
|
|
379
|
+
- If unsure what to share, ask the user for clarification`,
|
|
380
|
+
agent: 'Agentuity Coder Memory',
|
|
381
|
+
argumentHint:
|
|
382
|
+
'"share a summary of this session" or "share the auth decisions with 1 hour TTL"',
|
|
383
|
+
},
|
|
384
|
+
|
|
319
385
|
// ─────────────────────────────────────────────────────────────────────
|
|
320
386
|
// Agentuity Cloud Service Commands
|
|
321
387
|
// ─────────────────────────────────────────────────────────────────────
|
|
@@ -414,9 +480,11 @@ You are the Agentuity Coder Lead in **Cadence mode** — a long-running autonomo
|
|
|
414
480
|
- **@Agentuity Coder Builder**: Quick fixes, simple changes (for minor iterations only)
|
|
415
481
|
- **@Agentuity Coder Reviewer**: Review changes, catch issues, apply fixes
|
|
416
482
|
- **@Agentuity Coder Memory**: Store context, remember decisions, checkpoints
|
|
483
|
+
- **@Agentuity Coder Reasoner**: Extract structured conclusions, resolve conflicts, surface corrections
|
|
417
484
|
- **@Agentuity Coder Expert**: Agentuity CLI and cloud services specialist
|
|
418
485
|
- **@Agentuity Coder Planner**: Deep planning for complex architecture decisions
|
|
419
486
|
- **@Agentuity Coder Runner**: Run lint/build/test commands, returns structured results
|
|
487
|
+
- **@Agentuity Coder Product**: Clarify requirements, validate features, track progress, Cadence briefings
|
|
420
488
|
|
|
421
489
|
## Task
|
|
422
490
|
$ARGUMENTS
|
|
@@ -503,8 +571,10 @@ Use this to:
|
|
|
503
571
|
- Architect: Complex autonomous tasks, Cadence mode, deep reasoning (GPT Codex)
|
|
504
572
|
- Reviewer: Review changes, catch issues, apply fixes
|
|
505
573
|
- Memory: Store context, remember decisions across sessions
|
|
574
|
+
- Reasoner: Extract structured conclusions, resolve conflicts, surface corrections
|
|
506
575
|
- Expert: Get help with Agentuity CLI and cloud services
|
|
507
|
-
- Planner: Strategic advisor for complex architecture and deep planning (read-only)
|
|
576
|
+
- Planner: Strategic advisor for complex architecture and deep planning (read-only)
|
|
577
|
+
- Runner: Execute lint/build/test/typecheck/format commands, returns structured results`,
|
|
508
578
|
args: {
|
|
509
579
|
agent: s
|
|
510
580
|
.enum([
|
|
@@ -513,6 +583,7 @@ Use this to:
|
|
|
513
583
|
'architect',
|
|
514
584
|
'reviewer',
|
|
515
585
|
'memory',
|
|
586
|
+
'reasoner',
|
|
516
587
|
'expert',
|
|
517
588
|
'planner',
|
|
518
589
|
'runner',
|
|
@@ -547,9 +618,11 @@ IMPORTANT: Use this tool instead of the 'task' tool when:
|
|
|
547
618
|
'architect',
|
|
548
619
|
'reviewer',
|
|
549
620
|
'memory',
|
|
621
|
+
'reasoner',
|
|
550
622
|
'expert',
|
|
551
623
|
'planner',
|
|
552
624
|
'runner',
|
|
625
|
+
'product',
|
|
553
626
|
])
|
|
554
627
|
.describe('Agent role to run the task'),
|
|
555
628
|
task: s.string().describe('Task prompt to run in the background'),
|
|
@@ -622,11 +695,149 @@ IMPORTANT: Use this tool instead of the 'task' tool when:
|
|
|
622
695
|
},
|
|
623
696
|
});
|
|
624
697
|
|
|
698
|
+
const memoryShare = tool({
|
|
699
|
+
description: `Share memory content publicly via Agentuity Cloud Streams.
|
|
700
|
+
|
|
701
|
+
Creates a public URL that can be shared with anyone - no authentication required to access.
|
|
702
|
+
The content is stored in Agentuity's durable stream storage with optional TTL.
|
|
703
|
+
|
|
704
|
+
Use this when:
|
|
705
|
+
- User wants to share context with another agent/session
|
|
706
|
+
- User wants to export a summary, compaction, or session for external use
|
|
707
|
+
- User explicitly asks to "share" or "make public" some memory content
|
|
708
|
+
|
|
709
|
+
Returns the public URL that can be copied and used anywhere.`,
|
|
710
|
+
args: {
|
|
711
|
+
content: s.string().describe('The content to share publicly'),
|
|
712
|
+
namespace: s
|
|
713
|
+
.string()
|
|
714
|
+
.optional()
|
|
715
|
+
.describe('Stream namespace (default: agentuity-opencode-shares)'),
|
|
716
|
+
ttl_seconds: s
|
|
717
|
+
.number()
|
|
718
|
+
.optional()
|
|
719
|
+
.describe('TTL in seconds (60-7776000, or omit for 30-day default)'),
|
|
720
|
+
content_type: s.string().optional().describe('Content type (default: text/markdown)'),
|
|
721
|
+
metadata: s
|
|
722
|
+
.record(s.string(), s.string())
|
|
723
|
+
.optional()
|
|
724
|
+
.describe('Optional metadata key-value pairs'),
|
|
725
|
+
compress: s.boolean().optional().describe('Enable gzip compression'),
|
|
726
|
+
region: s.string().optional().describe('Cloud region (use, usc, usw). Default: usc'),
|
|
727
|
+
},
|
|
728
|
+
async execute(args) {
|
|
729
|
+
// Get the profile first - this ensures checkAuth() and CLI use the same profile
|
|
730
|
+
const profile = getCoderProfile();
|
|
731
|
+
const originalProfile = process.env.AGENTUITY_PROFILE;
|
|
732
|
+
|
|
733
|
+
try {
|
|
734
|
+
// Set profile before auth check so checkAuth reads the correct config
|
|
735
|
+
process.env.AGENTUITY_PROFILE = profile;
|
|
736
|
+
|
|
737
|
+
// Check auth first
|
|
738
|
+
const authResult = await checkAuth();
|
|
739
|
+
if (!authResult.ok) {
|
|
740
|
+
const err = new MemoryShareAuthError({ reason: authResult.error });
|
|
741
|
+
return JSON.stringify({
|
|
742
|
+
success: false,
|
|
743
|
+
error: err.message,
|
|
744
|
+
errorTag: err._tag,
|
|
745
|
+
details: { reason: authResult.error },
|
|
746
|
+
});
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
// Build CLI command
|
|
750
|
+
const namespace = args.namespace ?? 'agentuity-opencode-shares';
|
|
751
|
+
const contentType = args.content_type ?? 'text/markdown';
|
|
752
|
+
|
|
753
|
+
const cliArgs = ['agentuity', '--json', 'cloud', 'stream', 'create', namespace, '-'];
|
|
754
|
+
cliArgs.push('--content-type', contentType);
|
|
755
|
+
cliArgs.push('--region', args.region ?? 'usc');
|
|
756
|
+
|
|
757
|
+
if (args.ttl_seconds !== undefined) {
|
|
758
|
+
cliArgs.push('--ttl', String(args.ttl_seconds));
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
if (args.compress) {
|
|
762
|
+
cliArgs.push('--compress');
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
if (args.metadata && Object.keys(args.metadata).length > 0) {
|
|
766
|
+
const metadataStr = Object.entries(args.metadata)
|
|
767
|
+
.map(([k, v]) => `${k}=${v}`)
|
|
768
|
+
.join(',');
|
|
769
|
+
cliArgs.push('--metadata', metadataStr);
|
|
770
|
+
}
|
|
771
|
+
const proc = Bun.spawn(cliArgs, {
|
|
772
|
+
stdin: 'pipe',
|
|
773
|
+
stdout: 'pipe',
|
|
774
|
+
stderr: 'pipe',
|
|
775
|
+
env: {
|
|
776
|
+
...process.env,
|
|
777
|
+
AGENTUITY_PROFILE: profile,
|
|
778
|
+
},
|
|
779
|
+
});
|
|
780
|
+
|
|
781
|
+
// Write content to stdin (Bun's FileSink API)
|
|
782
|
+
proc.stdin.write(new TextEncoder().encode(args.content));
|
|
783
|
+
proc.stdin.end();
|
|
784
|
+
|
|
785
|
+
const [stdout, stderr, exitCode] = await Promise.all([
|
|
786
|
+
new Response(proc.stdout).text(),
|
|
787
|
+
new Response(proc.stderr).text(),
|
|
788
|
+
proc.exited,
|
|
789
|
+
]);
|
|
790
|
+
|
|
791
|
+
if (exitCode !== 0) {
|
|
792
|
+
const err = new MemoryShareCLIError({
|
|
793
|
+
exitCode,
|
|
794
|
+
stderr: stderr || `CLI exited with code ${exitCode}`,
|
|
795
|
+
});
|
|
796
|
+
return JSON.stringify({
|
|
797
|
+
success: false,
|
|
798
|
+
error: err.message,
|
|
799
|
+
errorTag: err._tag,
|
|
800
|
+
details: { exitCode, stderr },
|
|
801
|
+
});
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
// Parse JSON response from CLI
|
|
805
|
+
const result = JSON.parse(stdout);
|
|
806
|
+
|
|
807
|
+
return JSON.stringify({
|
|
808
|
+
success: true,
|
|
809
|
+
url: result.url,
|
|
810
|
+
id: result.id,
|
|
811
|
+
namespace: result.namespace,
|
|
812
|
+
sizeBytes: result.sizeBytes,
|
|
813
|
+
expiresAt: result.expiresAt,
|
|
814
|
+
});
|
|
815
|
+
} catch (error) {
|
|
816
|
+
const reason = error instanceof Error ? error.message : 'Failed to create stream';
|
|
817
|
+
const err = new MemoryShareError({ reason });
|
|
818
|
+
return JSON.stringify({
|
|
819
|
+
success: false,
|
|
820
|
+
error: err.message,
|
|
821
|
+
errorTag: err._tag,
|
|
822
|
+
details: { reason },
|
|
823
|
+
});
|
|
824
|
+
} finally {
|
|
825
|
+
// Restore original profile
|
|
826
|
+
if (originalProfile !== undefined) {
|
|
827
|
+
process.env.AGENTUITY_PROFILE = originalProfile;
|
|
828
|
+
} else {
|
|
829
|
+
delete process.env.AGENTUITY_PROFILE;
|
|
830
|
+
}
|
|
831
|
+
}
|
|
832
|
+
},
|
|
833
|
+
});
|
|
834
|
+
|
|
625
835
|
return {
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
836
|
+
agentuity_coder_delegate: coderDelegate,
|
|
837
|
+
agentuity_background_task: backgroundTask,
|
|
838
|
+
agentuity_background_output: backgroundOutput,
|
|
839
|
+
agentuity_background_cancel: backgroundCancel,
|
|
840
|
+
agentuity_memory_share: memoryShare,
|
|
630
841
|
};
|
|
631
842
|
}
|
|
632
843
|
|
package/src/tools/background.ts
CHANGED
|
@@ -60,7 +60,7 @@ export function createBackgroundTools(manager: BackgroundManager): {
|
|
|
60
60
|
};
|
|
61
61
|
} {
|
|
62
62
|
const backgroundTaskTool = {
|
|
63
|
-
name: '
|
|
63
|
+
name: 'agentuity_background_task',
|
|
64
64
|
description: 'Launch a task to run in the background.',
|
|
65
65
|
args: BackgroundTaskArgsSchema,
|
|
66
66
|
async execute(
|
|
@@ -92,7 +92,7 @@ export function createBackgroundTools(manager: BackgroundManager): {
|
|
|
92
92
|
};
|
|
93
93
|
|
|
94
94
|
const backgroundOutputTool = {
|
|
95
|
-
name: '
|
|
95
|
+
name: 'agentuity_background_output',
|
|
96
96
|
description: 'Retrieve output for a background task.',
|
|
97
97
|
args: BackgroundOutputArgsSchema,
|
|
98
98
|
async execute(args: BackgroundOutputArgs): Promise<{
|
|
@@ -119,7 +119,7 @@ export function createBackgroundTools(manager: BackgroundManager): {
|
|
|
119
119
|
};
|
|
120
120
|
|
|
121
121
|
const backgroundCancelTool = {
|
|
122
|
-
name: '
|
|
122
|
+
name: 'agentuity_background_cancel',
|
|
123
123
|
description: 'Cancel a running background task.',
|
|
124
124
|
args: BackgroundCancelArgsSchema,
|
|
125
125
|
async execute(args: BackgroundCancelArgs): Promise<{
|
package/src/tools/delegate.ts
CHANGED
|
@@ -4,7 +4,18 @@ import type { AgentRole } from '../types';
|
|
|
4
4
|
// Schema for the delegate tool
|
|
5
5
|
export const DelegateArgsSchema = z.object({
|
|
6
6
|
agent: z
|
|
7
|
-
.enum([
|
|
7
|
+
.enum([
|
|
8
|
+
'scout',
|
|
9
|
+
'builder',
|
|
10
|
+
'architect',
|
|
11
|
+
'reviewer',
|
|
12
|
+
'memory',
|
|
13
|
+
'reasoner',
|
|
14
|
+
'expert',
|
|
15
|
+
'planner',
|
|
16
|
+
'runner',
|
|
17
|
+
'product',
|
|
18
|
+
])
|
|
8
19
|
.describe('The agent to delegate to'),
|
|
9
20
|
task: z.string().describe('Clear description of the task to delegate'),
|
|
10
21
|
context: z.string().optional().describe('Additional context from previous tasks'),
|
|
@@ -27,21 +38,25 @@ const AGENT_MENTIONS: Record<AgentRole, string> = {
|
|
|
27
38
|
expert: '@Agentuity Coder Expert',
|
|
28
39
|
planner: '@Agentuity Coder Planner',
|
|
29
40
|
runner: '@Agentuity Coder Runner',
|
|
41
|
+
reasoner: '@Agentuity Coder Reasoner',
|
|
42
|
+
product: '@Agentuity Coder Product',
|
|
30
43
|
};
|
|
31
44
|
|
|
32
45
|
export const delegateTool = {
|
|
33
|
-
name: '
|
|
46
|
+
name: 'agentuity_coder_delegate',
|
|
34
47
|
description: `Delegate a task to a specialized Agentuity Coder agent.
|
|
35
48
|
|
|
36
49
|
Use this to:
|
|
37
50
|
- Scout: Explore codebase, find patterns, research documentation
|
|
38
51
|
- Builder: Implement features, write code, run tests (interactive work)
|
|
39
52
|
- Architect: Complex autonomous tasks, Cadence mode, deep reasoning (GPT Codex)
|
|
40
|
-
- Reviewer: Review changes, catch issues, apply fixes
|
|
53
|
+
- Reviewer: Review changes, catch issues, apply fixes
|
|
41
54
|
- Memory: Store context, remember decisions across sessions
|
|
55
|
+
- Reasoner: Extract structured conclusions, resolve conflicts, surface corrections
|
|
42
56
|
- Expert: Get help with Agentuity CLI and cloud services
|
|
43
57
|
- Planner: Strategic advisor for complex architecture and deep planning (read-only)
|
|
44
58
|
- Runner: Run lint/build/test/typecheck/format/clean/install commands, returns structured results
|
|
59
|
+
- Product: Drive clarity on requirements, validate features, track progress, Cadence briefings
|
|
45
60
|
|
|
46
61
|
The task will be executed by the specified agent and the result returned.`,
|
|
47
62
|
|