- Add intelligent-router.sh hook for automatic agent routing - Add AUTO-TRIGGER-SUMMARY.md documentation - Add FINAL-INTEGRATION-SUMMARY.md documentation - Complete Prometheus integration (6 commands + 4 tools) - Complete Dexto integration (12 commands + 5 tools) - Enhanced Ralph with access to all agents - Fix /clawd command (removed disable-model-invocation) - Update hooks.json to v5 with intelligent routing - 291 total skills now available - All 21 commands with automatic routing 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
1.1 KiB
TypeScript
27 lines
1.1 KiB
TypeScript
// TODO: (migration) path.js, execution-context.js, fs-walk.js, env-file.js
|
|
// are duplicated in @dexto/agent-management for Node-specific environment management.
|
|
// Core still needs these for FilePromptProvider, MCPClient, and FileContributor functionality.
|
|
// These will remain in core until we refactor those features to be dependency-injected.
|
|
|
|
export * from './path.js';
|
|
export * from './service-initializer.js';
|
|
export * from './zod-schema-converter.js';
|
|
export * from './result.js';
|
|
export * from './error-conversion.js';
|
|
export * from './execution-context.js';
|
|
export * from './fs-walk.js';
|
|
export * from './redactor.js';
|
|
export * from './debug.js';
|
|
export * from './safe-stringify.js';
|
|
export * from './api-key-resolver.js';
|
|
export * from './defer.js';
|
|
export * from './async-context.js';
|
|
|
|
// API key STORAGE has been moved to @dexto/agent-management
|
|
// These functions write to .env files and are CLI/server concerns, not core runtime
|
|
// Import from '@dexto/agent-management' instead:
|
|
// - updateEnvFile
|
|
// - saveProviderApiKey
|
|
// - getProviderKeyStatus
|
|
// - listProviderKeyStatus
|