daemora 1.0.0-alpha.0
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/LICENSE +661 -0
- package/README.md +645 -0
- package/crew/_template/plugin.json +18 -0
- package/crew/analyst/plugin.json +29 -0
- package/crew/architect/plugin.json +29 -0
- package/crew/assistant/plugin.json +29 -0
- package/crew/backend/plugin.json +31 -0
- package/crew/devops/plugin.json +30 -0
- package/crew/facebook/plugin.json +36 -0
- package/crew/frontend/plugin.json +30 -0
- package/crew/github/plugin.json +18 -0
- package/crew/gmail/plugin.json +34 -0
- package/crew/google-calendar/plugin.json +26 -0
- package/crew/google-services/plugin.json +25 -0
- package/crew/imessage/plugin.json +24 -0
- package/crew/instagram/plugin.json +34 -0
- package/crew/linkedin/plugin.json +24 -0
- package/crew/meeting-attendant/plugin.json +27 -0
- package/crew/notifications/plugin.json +23 -0
- package/crew/notion/plugin.json +18 -0
- package/crew/planner/plugin.json +25 -0
- package/crew/reddit/plugin.json +32 -0
- package/crew/researcher/plugin.json +29 -0
- package/crew/reviewer/plugin.json +29 -0
- package/crew/security/plugin.json +30 -0
- package/crew/smart-home/plugin.json +23 -0
- package/crew/ssh-remote/plugin.json +28 -0
- package/crew/tiktok/plugin.json +26 -0
- package/crew/twitter/plugin.json +46 -0
- package/crew/video-editor/plugin.json +19 -0
- package/crew/video-editor/rules/3d.md +86 -0
- package/crew/video-editor/rules/animations.md +31 -0
- package/crew/video-editor/rules/assets/charts-bar-chart.tsx +173 -0
- package/crew/video-editor/rules/assets/text-animations-typewriter.tsx +100 -0
- package/crew/video-editor/rules/assets/text-animations-word-highlight.tsx +103 -0
- package/crew/video-editor/rules/assets.md +78 -0
- package/crew/video-editor/rules/audio-visualization.md +198 -0
- package/crew/video-editor/rules/audio.md +169 -0
- package/crew/video-editor/rules/calculate-metadata.md +134 -0
- package/crew/video-editor/rules/can-decode.md +81 -0
- package/crew/video-editor/rules/charts.md +120 -0
- package/crew/video-editor/rules/compositions.md +154 -0
- package/crew/video-editor/rules/cursor-and-clicks.md +108 -0
- package/crew/video-editor/rules/display-captions.md +184 -0
- package/crew/video-editor/rules/extract-frames.md +229 -0
- package/crew/video-editor/rules/ffmpeg.md +34 -0
- package/crew/video-editor/rules/focus-zoom.md +108 -0
- package/crew/video-editor/rules/fonts.md +152 -0
- package/crew/video-editor/rules/get-audio-duration.md +58 -0
- package/crew/video-editor/rules/get-video-dimensions.md +68 -0
- package/crew/video-editor/rules/get-video-duration.md +60 -0
- package/crew/video-editor/rules/gifs.md +141 -0
- package/crew/video-editor/rules/images.md +134 -0
- package/crew/video-editor/rules/import-srt-captions.md +69 -0
- package/crew/video-editor/rules/light-leaks.md +73 -0
- package/crew/video-editor/rules/lottie.md +70 -0
- package/crew/video-editor/rules/maps.md +412 -0
- package/crew/video-editor/rules/measuring-dom-nodes.md +34 -0
- package/crew/video-editor/rules/measuring-text.md +140 -0
- package/crew/video-editor/rules/parameters.md +109 -0
- package/crew/video-editor/rules/sequencing.md +118 -0
- package/crew/video-editor/rules/sfx.md +30 -0
- package/crew/video-editor/rules/silence-detection.md +71 -0
- package/crew/video-editor/rules/subtitles.md +36 -0
- package/crew/video-editor/rules/tailwind.md +11 -0
- package/crew/video-editor/rules/text-animations.md +20 -0
- package/crew/video-editor/rules/theme-switching.md +103 -0
- package/crew/video-editor/rules/timing.md +136 -0
- package/crew/video-editor/rules/transcribe-captions.md +70 -0
- package/crew/video-editor/rules/transitions.md +197 -0
- package/crew/video-editor/rules/transparent-videos.md +106 -0
- package/crew/video-editor/rules/trimming.md +51 -0
- package/crew/video-editor/rules/ui-chrome.md +139 -0
- package/crew/video-editor/rules/videos.md +171 -0
- package/crew/video-editor/rules/voiceover.md +99 -0
- package/crew/video-editor/template/README.md +42 -0
- package/crew/video-editor/template/package.json +24 -0
- package/crew/video-editor/template/public/.gitkeep +0 -0
- package/crew/video-editor/template/public/image.png +0 -0
- package/crew/video-editor/template/public/logo.png +0 -0
- package/crew/video-editor/template/remotion.config.ts +5 -0
- package/crew/video-editor/template/src/Root.tsx +21 -0
- package/crew/video-editor/template/src/Video.tsx +38 -0
- package/crew/video-editor/template/src/components/LogoStinger.tsx +77 -0
- package/crew/video-editor/template/src/index.ts +4 -0
- package/crew/video-editor/template/tsconfig.json +16 -0
- package/crew/youtube/plugin.json +42 -0
- package/dist/auth/AuthProvider.d.ts +35 -0
- package/dist/auth/AuthProvider.d.ts.map +1 -0
- package/dist/auth/AuthProvider.js +13 -0
- package/dist/auth/AuthProvider.js.map +1 -0
- package/dist/auth/AuthStore.d.ts +79 -0
- package/dist/auth/AuthStore.d.ts.map +1 -0
- package/dist/auth/AuthStore.js +139 -0
- package/dist/auth/AuthStore.js.map +1 -0
- package/dist/auth/LocalAuthProvider.d.ts +28 -0
- package/dist/auth/LocalAuthProvider.d.ts.map +1 -0
- package/dist/auth/LocalAuthProvider.js +70 -0
- package/dist/auth/LocalAuthProvider.js.map +1 -0
- package/dist/auth/TokenService.d.ts +83 -0
- package/dist/auth/TokenService.d.ts.map +1 -0
- package/dist/auth/TokenService.js +129 -0
- package/dist/auth/TokenService.js.map +1 -0
- package/dist/auth/fileToken.d.ts +33 -0
- package/dist/auth/fileToken.d.ts.map +1 -0
- package/dist/auth/fileToken.js +69 -0
- package/dist/auth/fileToken.js.map +1 -0
- package/dist/auth/index.d.ts +47 -0
- package/dist/auth/index.d.ts.map +1 -0
- package/dist/auth/index.js +76 -0
- package/dist/auth/index.js.map +1 -0
- package/dist/auth/jwt.d.ts +27 -0
- package/dist/auth/jwt.d.ts.map +1 -0
- package/dist/auth/jwt.js +67 -0
- package/dist/auth/jwt.js.map +1 -0
- package/dist/channels/BaseChannel.d.ts +139 -0
- package/dist/channels/BaseChannel.d.ts.map +1 -0
- package/dist/channels/BaseChannel.js +103 -0
- package/dist/channels/BaseChannel.js.map +1 -0
- package/dist/channels/BlueBubblesChannel.d.ts +37 -0
- package/dist/channels/BlueBubblesChannel.d.ts.map +1 -0
- package/dist/channels/BlueBubblesChannel.js +115 -0
- package/dist/channels/BlueBubblesChannel.js.map +1 -0
- package/dist/channels/ChannelManager.d.ts +85 -0
- package/dist/channels/ChannelManager.d.ts.map +1 -0
- package/dist/channels/ChannelManager.js +557 -0
- package/dist/channels/ChannelManager.js.map +1 -0
- package/dist/channels/ChannelRegistry.d.ts +57 -0
- package/dist/channels/ChannelRegistry.d.ts.map +1 -0
- package/dist/channels/ChannelRegistry.js +93 -0
- package/dist/channels/ChannelRegistry.js.map +1 -0
- package/dist/channels/DiscordChannel.d.ts +87 -0
- package/dist/channels/DiscordChannel.d.ts.map +1 -0
- package/dist/channels/DiscordChannel.js +469 -0
- package/dist/channels/DiscordChannel.js.map +1 -0
- package/dist/channels/EmailChannel.d.ts +64 -0
- package/dist/channels/EmailChannel.d.ts.map +1 -0
- package/dist/channels/EmailChannel.js +226 -0
- package/dist/channels/EmailChannel.js.map +1 -0
- package/dist/channels/FeishuChannel.d.ts +40 -0
- package/dist/channels/FeishuChannel.d.ts.map +1 -0
- package/dist/channels/FeishuChannel.js +169 -0
- package/dist/channels/FeishuChannel.js.map +1 -0
- package/dist/channels/GoogleChatChannel.d.ts +46 -0
- package/dist/channels/GoogleChatChannel.d.ts.map +1 -0
- package/dist/channels/GoogleChatChannel.js +184 -0
- package/dist/channels/GoogleChatChannel.js.map +1 -0
- package/dist/channels/IRCChannel.d.ts +50 -0
- package/dist/channels/IRCChannel.d.ts.map +1 -0
- package/dist/channels/IRCChannel.js +149 -0
- package/dist/channels/IRCChannel.js.map +1 -0
- package/dist/channels/LineChannel.d.ts +35 -0
- package/dist/channels/LineChannel.d.ts.map +1 -0
- package/dist/channels/LineChannel.js +118 -0
- package/dist/channels/LineChannel.js.map +1 -0
- package/dist/channels/MatrixChannel.d.ts +45 -0
- package/dist/channels/MatrixChannel.d.ts.map +1 -0
- package/dist/channels/MatrixChannel.js +156 -0
- package/dist/channels/MatrixChannel.js.map +1 -0
- package/dist/channels/MattermostChannel.d.ts +42 -0
- package/dist/channels/MattermostChannel.d.ts.map +1 -0
- package/dist/channels/MattermostChannel.js +144 -0
- package/dist/channels/MattermostChannel.js.map +1 -0
- package/dist/channels/NextcloudChannel.d.ts +46 -0
- package/dist/channels/NextcloudChannel.d.ts.map +1 -0
- package/dist/channels/NextcloudChannel.js +146 -0
- package/dist/channels/NextcloudChannel.js.map +1 -0
- package/dist/channels/SignalChannel.d.ts +39 -0
- package/dist/channels/SignalChannel.d.ts.map +1 -0
- package/dist/channels/SignalChannel.js +160 -0
- package/dist/channels/SignalChannel.js.map +1 -0
- package/dist/channels/SlackChannel.d.ts +81 -0
- package/dist/channels/SlackChannel.d.ts.map +1 -0
- package/dist/channels/SlackChannel.js +363 -0
- package/dist/channels/SlackChannel.js.map +1 -0
- package/dist/channels/StreamingEditor.d.ts +37 -0
- package/dist/channels/StreamingEditor.d.ts.map +1 -0
- package/dist/channels/StreamingEditor.js +108 -0
- package/dist/channels/StreamingEditor.js.map +1 -0
- package/dist/channels/TelegramChannel.d.ts +84 -0
- package/dist/channels/TelegramChannel.d.ts.map +1 -0
- package/dist/channels/TelegramChannel.js +469 -0
- package/dist/channels/TelegramChannel.js.map +1 -0
- package/dist/channels/TwitchChannel.d.ts +45 -0
- package/dist/channels/TwitchChannel.d.ts.map +1 -0
- package/dist/channels/TwitchChannel.js +117 -0
- package/dist/channels/TwitchChannel.js.map +1 -0
- package/dist/channels/WhatsAppChannel.d.ts +45 -0
- package/dist/channels/WhatsAppChannel.d.ts.map +1 -0
- package/dist/channels/WhatsAppChannel.js +153 -0
- package/dist/channels/WhatsAppChannel.js.map +1 -0
- package/dist/channels/ZaloChannel.d.ts +42 -0
- package/dist/channels/ZaloChannel.d.ts.map +1 -0
- package/dist/channels/ZaloChannel.js +114 -0
- package/dist/channels/ZaloChannel.js.map +1 -0
- package/dist/cli/commands/config.d.ts +10 -0
- package/dist/cli/commands/config.d.ts.map +1 -0
- package/dist/cli/commands/config.js +107 -0
- package/dist/cli/commands/config.js.map +1 -0
- package/dist/cli/commands/daemon.d.ts +17 -0
- package/dist/cli/commands/daemon.d.ts.map +1 -0
- package/dist/cli/commands/daemon.js +82 -0
- package/dist/cli/commands/daemon.js.map +1 -0
- package/dist/cli/commands/doctor.d.ts +17 -0
- package/dist/cli/commands/doctor.d.ts.map +1 -0
- package/dist/cli/commands/doctor.js +138 -0
- package/dist/cli/commands/doctor.js.map +1 -0
- package/dist/cli/commands/setup.d.ts +16 -0
- package/dist/cli/commands/setup.d.ts.map +1 -0
- package/dist/cli/commands/setup.js +206 -0
- package/dist/cli/commands/setup.js.map +1 -0
- package/dist/cli/commands/start.d.ts +8 -0
- package/dist/cli/commands/start.d.ts.map +1 -0
- package/dist/cli/commands/start.js +444 -0
- package/dist/cli/commands/start.js.map +1 -0
- package/dist/cli/commands/vault.d.ts +15 -0
- package/dist/cli/commands/vault.d.ts.map +1 -0
- package/dist/cli/commands/vault.js +167 -0
- package/dist/cli/commands/vault.js.map +1 -0
- package/dist/cli/index.d.ts +13 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +93 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/loadEnv.d.ts +14 -0
- package/dist/cli/loadEnv.d.ts.map +1 -0
- package/dist/cli/loadEnv.js +18 -0
- package/dist/cli/loadEnv.js.map +1 -0
- package/dist/config/ConfigManager.d.ts +79 -0
- package/dist/config/ConfigManager.d.ts.map +1 -0
- package/dist/config/ConfigManager.js +118 -0
- package/dist/config/ConfigManager.js.map +1 -0
- package/dist/config/Secret.d.ts +29 -0
- package/dist/config/Secret.d.ts.map +1 -0
- package/dist/config/Secret.js +47 -0
- package/dist/config/Secret.js.map +1 -0
- package/dist/config/SecretVault.d.ts +53 -0
- package/dist/config/SecretVault.d.ts.map +1 -0
- package/dist/config/SecretVault.js +205 -0
- package/dist/config/SecretVault.js.map +1 -0
- package/dist/config/SettingsStore.d.ts +46 -0
- package/dist/config/SettingsStore.d.ts.map +1 -0
- package/dist/config/SettingsStore.js +132 -0
- package/dist/config/SettingsStore.js.map +1 -0
- package/dist/config/env.d.ts +21 -0
- package/dist/config/env.d.ts.map +1 -0
- package/dist/config/env.js +62 -0
- package/dist/config/env.js.map +1 -0
- package/dist/config/schema.d.ts +127 -0
- package/dist/config/schema.d.ts.map +1 -0
- package/dist/config/schema.js +346 -0
- package/dist/config/schema.js.map +1 -0
- package/dist/core/AgentLoop.d.ts +180 -0
- package/dist/core/AgentLoop.d.ts.map +1 -0
- package/dist/core/AgentLoop.js +428 -0
- package/dist/core/AgentLoop.js.map +1 -0
- package/dist/core/AttachmentProcessor.d.ts +75 -0
- package/dist/core/AttachmentProcessor.d.ts.map +1 -0
- package/dist/core/AttachmentProcessor.js +191 -0
- package/dist/core/AttachmentProcessor.js.map +1 -0
- package/dist/core/Compaction.d.ts +62 -0
- package/dist/core/Compaction.d.ts.map +1 -0
- package/dist/core/Compaction.js +260 -0
- package/dist/core/Compaction.js.map +1 -0
- package/dist/core/InboundDebouncer.d.ts +42 -0
- package/dist/core/InboundDebouncer.d.ts.map +1 -0
- package/dist/core/InboundDebouncer.js +81 -0
- package/dist/core/InboundDebouncer.js.map +1 -0
- package/dist/core/LoopDetector.d.ts +36 -0
- package/dist/core/LoopDetector.d.ts.map +1 -0
- package/dist/core/LoopDetector.js +139 -0
- package/dist/core/LoopDetector.js.map +1 -0
- package/dist/core/TaskRunner.d.ts +134 -0
- package/dist/core/TaskRunner.d.ts.map +1 -0
- package/dist/core/TaskRunner.js +454 -0
- package/dist/core/TaskRunner.js.map +1 -0
- package/dist/costs/CostTracker.d.ts +70 -0
- package/dist/costs/CostTracker.d.ts.map +1 -0
- package/dist/costs/CostTracker.js +176 -0
- package/dist/costs/CostTracker.js.map +1 -0
- package/dist/crew/CrewAgentRunner.d.ts +55 -0
- package/dist/crew/CrewAgentRunner.d.ts.map +1 -0
- package/dist/crew/CrewAgentRunner.js +208 -0
- package/dist/crew/CrewAgentRunner.js.map +1 -0
- package/dist/crew/CrewLoader.d.ts +43 -0
- package/dist/crew/CrewLoader.d.ts.map +1 -0
- package/dist/crew/CrewLoader.js +122 -0
- package/dist/crew/CrewLoader.js.map +1 -0
- package/dist/crew/CrewRegistry.d.ts +30 -0
- package/dist/crew/CrewRegistry.d.ts.map +1 -0
- package/dist/crew/CrewRegistry.js +56 -0
- package/dist/crew/CrewRegistry.js.map +1 -0
- package/dist/crew/types.d.ts +79 -0
- package/dist/crew/types.d.ts.map +1 -0
- package/dist/crew/types.js +36 -0
- package/dist/crew/types.js.map +1 -0
- package/dist/cron/CronScheduler.d.ts +40 -0
- package/dist/cron/CronScheduler.d.ts.map +1 -0
- package/dist/cron/CronScheduler.js +119 -0
- package/dist/cron/CronScheduler.js.map +1 -0
- package/dist/cron/CronStore.d.ts +73 -0
- package/dist/cron/CronStore.d.ts.map +1 -0
- package/dist/cron/CronStore.js +209 -0
- package/dist/cron/CronStore.js.map +1 -0
- package/dist/cron/cronParser.d.ts +33 -0
- package/dist/cron/cronParser.d.ts.map +1 -0
- package/dist/cron/cronParser.js +211 -0
- package/dist/cron/cronParser.js.map +1 -0
- package/dist/daemon/DaemonManager.d.ts +59 -0
- package/dist/daemon/DaemonManager.d.ts.map +1 -0
- package/dist/daemon/DaemonManager.js +380 -0
- package/dist/daemon/DaemonManager.js.map +1 -0
- package/dist/embeddings/Embeddings.d.ts +70 -0
- package/dist/embeddings/Embeddings.d.ts.map +1 -0
- package/dist/embeddings/Embeddings.js +252 -0
- package/dist/embeddings/Embeddings.js.map +1 -0
- package/dist/embeddings/TfIdf.d.ts +26 -0
- package/dist/embeddings/TfIdf.d.ts.map +1 -0
- package/dist/embeddings/TfIdf.js +88 -0
- package/dist/embeddings/TfIdf.js.map +1 -0
- package/dist/events/eventBus.d.ts +97 -0
- package/dist/events/eventBus.d.ts.map +1 -0
- package/dist/events/eventBus.js +26 -0
- package/dist/events/eventBus.js.map +1 -0
- package/dist/goals/GoalStore.d.ts +40 -0
- package/dist/goals/GoalStore.d.ts.map +1 -0
- package/dist/goals/GoalStore.js +82 -0
- package/dist/goals/GoalStore.js.map +1 -0
- package/dist/hooks/HookRunner.d.ts +80 -0
- package/dist/hooks/HookRunner.d.ts.map +1 -0
- package/dist/hooks/HookRunner.js +218 -0
- package/dist/hooks/HookRunner.js.map +1 -0
- package/dist/integrations/IntegrationCrewSync.d.ts +33 -0
- package/dist/integrations/IntegrationCrewSync.d.ts.map +1 -0
- package/dist/integrations/IntegrationCrewSync.js +96 -0
- package/dist/integrations/IntegrationCrewSync.js.map +1 -0
- package/dist/integrations/IntegrationManager.d.ts +116 -0
- package/dist/integrations/IntegrationManager.d.ts.map +1 -0
- package/dist/integrations/IntegrationManager.js +580 -0
- package/dist/integrations/IntegrationManager.js.map +1 -0
- package/dist/integrations/IntegrationStore.d.ts +42 -0
- package/dist/integrations/IntegrationStore.d.ts.map +1 -0
- package/dist/integrations/IntegrationStore.js +146 -0
- package/dist/integrations/IntegrationStore.js.map +1 -0
- package/dist/integrations/authFetch.d.ts +21 -0
- package/dist/integrations/authFetch.d.ts.map +1 -0
- package/dist/integrations/authFetch.js +36 -0
- package/dist/integrations/authFetch.js.map +1 -0
- package/dist/integrations/facebook/FacebookClient.d.ts +33 -0
- package/dist/integrations/facebook/FacebookClient.d.ts.map +1 -0
- package/dist/integrations/facebook/FacebookClient.js +88 -0
- package/dist/integrations/facebook/FacebookClient.js.map +1 -0
- package/dist/integrations/facebook/tools.d.ts +9 -0
- package/dist/integrations/facebook/tools.d.ts.map +1 -0
- package/dist/integrations/facebook/tools.js +324 -0
- package/dist/integrations/facebook/tools.js.map +1 -0
- package/dist/integrations/gmail/GmailClient.d.ts +34 -0
- package/dist/integrations/gmail/GmailClient.d.ts.map +1 -0
- package/dist/integrations/gmail/GmailClient.js +69 -0
- package/dist/integrations/gmail/GmailClient.js.map +1 -0
- package/dist/integrations/gmail/tools.d.ts +14 -0
- package/dist/integrations/gmail/tools.d.ts.map +1 -0
- package/dist/integrations/gmail/tools.js +295 -0
- package/dist/integrations/gmail/tools.js.map +1 -0
- package/dist/integrations/google-calendar/CalendarClient.d.ts +16 -0
- package/dist/integrations/google-calendar/CalendarClient.d.ts.map +1 -0
- package/dist/integrations/google-calendar/CalendarClient.js +39 -0
- package/dist/integrations/google-calendar/CalendarClient.js.map +1 -0
- package/dist/integrations/google-calendar/tools.d.ts +15 -0
- package/dist/integrations/google-calendar/tools.d.ts.map +1 -0
- package/dist/integrations/google-calendar/tools.js +246 -0
- package/dist/integrations/google-calendar/tools.js.map +1 -0
- package/dist/integrations/instagram/InstagramClient.d.ts +33 -0
- package/dist/integrations/instagram/InstagramClient.d.ts.map +1 -0
- package/dist/integrations/instagram/InstagramClient.js +93 -0
- package/dist/integrations/instagram/InstagramClient.js.map +1 -0
- package/dist/integrations/instagram/tools.d.ts +17 -0
- package/dist/integrations/instagram/tools.d.ts.map +1 -0
- package/dist/integrations/instagram/tools.js +348 -0
- package/dist/integrations/instagram/tools.js.map +1 -0
- package/dist/integrations/keys.d.ts +56 -0
- package/dist/integrations/keys.d.ts.map +1 -0
- package/dist/integrations/keys.js +174 -0
- package/dist/integrations/keys.js.map +1 -0
- package/dist/integrations/linkedin/LinkedInClient.d.ts +24 -0
- package/dist/integrations/linkedin/LinkedInClient.d.ts.map +1 -0
- package/dist/integrations/linkedin/LinkedInClient.js +56 -0
- package/dist/integrations/linkedin/LinkedInClient.js.map +1 -0
- package/dist/integrations/linkedin/tools.d.ts +14 -0
- package/dist/integrations/linkedin/tools.d.ts.map +1 -0
- package/dist/integrations/linkedin/tools.js +154 -0
- package/dist/integrations/linkedin/tools.js.map +1 -0
- package/dist/integrations/pkce.d.ts +17 -0
- package/dist/integrations/pkce.d.ts.map +1 -0
- package/dist/integrations/pkce.js +22 -0
- package/dist/integrations/pkce.js.map +1 -0
- package/dist/integrations/providers/github.d.ts +20 -0
- package/dist/integrations/providers/github.d.ts.map +1 -0
- package/dist/integrations/providers/github.js +113 -0
- package/dist/integrations/providers/github.js.map +1 -0
- package/dist/integrations/providers/google.d.ts +17 -0
- package/dist/integrations/providers/google.d.ts.map +1 -0
- package/dist/integrations/providers/google.js +115 -0
- package/dist/integrations/providers/google.js.map +1 -0
- package/dist/integrations/providers/linkedin.d.ts +22 -0
- package/dist/integrations/providers/linkedin.d.ts.map +1 -0
- package/dist/integrations/providers/linkedin.js +103 -0
- package/dist/integrations/providers/linkedin.js.map +1 -0
- package/dist/integrations/providers/meta.d.ts +19 -0
- package/dist/integrations/providers/meta.d.ts.map +1 -0
- package/dist/integrations/providers/meta.js +116 -0
- package/dist/integrations/providers/meta.js.map +1 -0
- package/dist/integrations/providers/notion.d.ts +21 -0
- package/dist/integrations/providers/notion.d.ts.map +1 -0
- package/dist/integrations/providers/notion.js +96 -0
- package/dist/integrations/providers/notion.js.map +1 -0
- package/dist/integrations/providers/reddit.d.ts +18 -0
- package/dist/integrations/providers/reddit.d.ts.map +1 -0
- package/dist/integrations/providers/reddit.js +104 -0
- package/dist/integrations/providers/reddit.js.map +1 -0
- package/dist/integrations/providers/tiktok.d.ts +28 -0
- package/dist/integrations/providers/tiktok.d.ts.map +1 -0
- package/dist/integrations/providers/tiktok.js +138 -0
- package/dist/integrations/providers/tiktok.js.map +1 -0
- package/dist/integrations/providers/twitter.d.ts +26 -0
- package/dist/integrations/providers/twitter.d.ts.map +1 -0
- package/dist/integrations/providers/twitter.js +141 -0
- package/dist/integrations/providers/twitter.js.map +1 -0
- package/dist/integrations/reddit/RedditClient.d.ts +18 -0
- package/dist/integrations/reddit/RedditClient.d.ts.map +1 -0
- package/dist/integrations/reddit/RedditClient.js +54 -0
- package/dist/integrations/reddit/RedditClient.js.map +1 -0
- package/dist/integrations/reddit/tools.d.ts +16 -0
- package/dist/integrations/reddit/tools.d.ts.map +1 -0
- package/dist/integrations/reddit/tools.js +293 -0
- package/dist/integrations/reddit/tools.js.map +1 -0
- package/dist/integrations/tiktok/TikTokClient.d.ts +21 -0
- package/dist/integrations/tiktok/TikTokClient.d.ts.map +1 -0
- package/dist/integrations/tiktok/TikTokClient.js +44 -0
- package/dist/integrations/tiktok/TikTokClient.js.map +1 -0
- package/dist/integrations/tiktok/tools.d.ts +17 -0
- package/dist/integrations/tiktok/tools.d.ts.map +1 -0
- package/dist/integrations/tiktok/tools.js +258 -0
- package/dist/integrations/tiktok/tools.js.map +1 -0
- package/dist/integrations/tools.d.ts +20 -0
- package/dist/integrations/tools.d.ts.map +1 -0
- package/dist/integrations/tools.js +43 -0
- package/dist/integrations/tools.js.map +1 -0
- package/dist/integrations/twitter/TwitterClient.d.ts +19 -0
- package/dist/integrations/twitter/TwitterClient.d.ts.map +1 -0
- package/dist/integrations/twitter/TwitterClient.js +51 -0
- package/dist/integrations/twitter/TwitterClient.js.map +1 -0
- package/dist/integrations/twitter/tools.d.ts +11 -0
- package/dist/integrations/twitter/tools.d.ts.map +1 -0
- package/dist/integrations/twitter/tools.js +459 -0
- package/dist/integrations/twitter/tools.js.map +1 -0
- package/dist/integrations/types.d.ts +118 -0
- package/dist/integrations/types.d.ts.map +1 -0
- package/dist/integrations/types.js +10 -0
- package/dist/integrations/types.js.map +1 -0
- package/dist/integrations/youtube/YouTubeClient.d.ts +45 -0
- package/dist/integrations/youtube/YouTubeClient.d.ts.map +1 -0
- package/dist/integrations/youtube/YouTubeClient.js +115 -0
- package/dist/integrations/youtube/YouTubeClient.js.map +1 -0
- package/dist/integrations/youtube/tools.d.ts +14 -0
- package/dist/integrations/youtube/tools.d.ts.map +1 -0
- package/dist/integrations/youtube/tools.js +500 -0
- package/dist/integrations/youtube/tools.js.map +1 -0
- package/dist/learning/BackgroundReviewer.d.ts +43 -0
- package/dist/learning/BackgroundReviewer.d.ts.map +1 -0
- package/dist/learning/BackgroundReviewer.js +143 -0
- package/dist/learning/BackgroundReviewer.js.map +1 -0
- package/dist/learning/ExtractionPipeline.d.ts +46 -0
- package/dist/learning/ExtractionPipeline.d.ts.map +1 -0
- package/dist/learning/ExtractionPipeline.js +220 -0
- package/dist/learning/ExtractionPipeline.js.map +1 -0
- package/dist/learning/MemoryDecay.d.ts +63 -0
- package/dist/learning/MemoryDecay.d.ts.map +1 -0
- package/dist/learning/MemoryDecay.js +204 -0
- package/dist/learning/MemoryDecay.js.map +1 -0
- package/dist/learning/SmartRecall.d.ts +58 -0
- package/dist/learning/SmartRecall.d.ts.map +1 -0
- package/dist/learning/SmartRecall.js +182 -0
- package/dist/learning/SmartRecall.js.map +1 -0
- package/dist/mcp/MCPIntegrationBridge.d.ts +40 -0
- package/dist/mcp/MCPIntegrationBridge.d.ts.map +1 -0
- package/dist/mcp/MCPIntegrationBridge.js +136 -0
- package/dist/mcp/MCPIntegrationBridge.js.map +1 -0
- package/dist/mcp/MCPManager.d.ts +126 -0
- package/dist/mcp/MCPManager.d.ts.map +1 -0
- package/dist/mcp/MCPManager.js +418 -0
- package/dist/mcp/MCPManager.js.map +1 -0
- package/dist/mcp/MCPStore.d.ts +41 -0
- package/dist/mcp/MCPStore.d.ts.map +1 -0
- package/dist/mcp/MCPStore.js +102 -0
- package/dist/mcp/MCPStore.js.map +1 -0
- package/dist/mcp/defaults.d.ts +51 -0
- package/dist/mcp/defaults.d.ts.map +1 -0
- package/dist/mcp/defaults.js +243 -0
- package/dist/mcp/defaults.js.map +1 -0
- package/dist/memory/DeclarativeMemoryStore.d.ts +54 -0
- package/dist/memory/DeclarativeMemoryStore.d.ts.map +1 -0
- package/dist/memory/DeclarativeMemoryStore.js +195 -0
- package/dist/memory/DeclarativeMemoryStore.js.map +1 -0
- package/dist/memory/MemoryStore.d.ts +65 -0
- package/dist/memory/MemoryStore.d.ts.map +1 -0
- package/dist/memory/MemoryStore.js +189 -0
- package/dist/memory/MemoryStore.js.map +1 -0
- package/dist/memory/SessionStore.d.ts +207 -0
- package/dist/memory/SessionStore.d.ts.map +1 -0
- package/dist/memory/SessionStore.js +391 -0
- package/dist/memory/SessionStore.js.map +1 -0
- package/dist/models/ModelRouter.d.ts +57 -0
- package/dist/models/ModelRouter.d.ts.map +1 -0
- package/dist/models/ModelRouter.js +301 -0
- package/dist/models/ModelRouter.js.map +1 -0
- package/dist/models/discovery.d.ts +44 -0
- package/dist/models/discovery.d.ts.map +1 -0
- package/dist/models/discovery.js +456 -0
- package/dist/models/discovery.js.map +1 -0
- package/dist/models/providers.d.ts +82 -0
- package/dist/models/providers.d.ts.map +1 -0
- package/dist/models/providers.js +455 -0
- package/dist/models/providers.js.map +1 -0
- package/dist/models/registry.d.ts +13 -0
- package/dist/models/registry.d.ts.map +1 -0
- package/dist/models/registry.js +42 -0
- package/dist/models/registry.js.map +1 -0
- package/dist/models/types.d.ts +24 -0
- package/dist/models/types.d.ts.map +1 -0
- package/dist/models/types.js +8 -0
- package/dist/models/types.js.map +1 -0
- package/dist/projects/ProjectStore.d.ts +73 -0
- package/dist/projects/ProjectStore.d.ts.map +1 -0
- package/dist/projects/ProjectStore.js +132 -0
- package/dist/projects/ProjectStore.js.map +1 -0
- package/dist/safety/AuditLog.d.ts +53 -0
- package/dist/safety/AuditLog.d.ts.map +1 -0
- package/dist/safety/AuditLog.js +170 -0
- package/dist/safety/AuditLog.js.map +1 -0
- package/dist/safety/CircuitBreaker.d.ts +53 -0
- package/dist/safety/CircuitBreaker.d.ts.map +1 -0
- package/dist/safety/CircuitBreaker.js +112 -0
- package/dist/safety/CircuitBreaker.js.map +1 -0
- package/dist/safety/CommandGuard.d.ts +32 -0
- package/dist/safety/CommandGuard.d.ts.map +1 -0
- package/dist/safety/CommandGuard.js +157 -0
- package/dist/safety/CommandGuard.js.map +1 -0
- package/dist/safety/DockerSandbox.d.ts +72 -0
- package/dist/safety/DockerSandbox.d.ts.map +1 -0
- package/dist/safety/DockerSandbox.js +188 -0
- package/dist/safety/DockerSandbox.js.map +1 -0
- package/dist/safety/EgressGuard.d.ts +35 -0
- package/dist/safety/EgressGuard.d.ts.map +1 -0
- package/dist/safety/EgressGuard.js +95 -0
- package/dist/safety/EgressGuard.js.map +1 -0
- package/dist/safety/ExecApproval.d.ts +53 -0
- package/dist/safety/ExecApproval.d.ts.map +1 -0
- package/dist/safety/ExecApproval.js +120 -0
- package/dist/safety/ExecApproval.js.map +1 -0
- package/dist/safety/FilesystemGuard.d.ts +94 -0
- package/dist/safety/FilesystemGuard.d.ts.map +1 -0
- package/dist/safety/FilesystemGuard.js +275 -0
- package/dist/safety/FilesystemGuard.js.map +1 -0
- package/dist/safety/GitRollback.d.ts +47 -0
- package/dist/safety/GitRollback.d.ts.map +1 -0
- package/dist/safety/GitRollback.js +161 -0
- package/dist/safety/GitRollback.js.map +1 -0
- package/dist/safety/HumanApproval.d.ts +65 -0
- package/dist/safety/HumanApproval.d.ts.map +1 -0
- package/dist/safety/HumanApproval.js +157 -0
- package/dist/safety/HumanApproval.js.map +1 -0
- package/dist/safety/InputSanitizer.d.ts +59 -0
- package/dist/safety/InputSanitizer.d.ts.map +1 -0
- package/dist/safety/InputSanitizer.js +111 -0
- package/dist/safety/InputSanitizer.js.map +1 -0
- package/dist/safety/PermissionGuard.d.ts +49 -0
- package/dist/safety/PermissionGuard.d.ts.map +1 -0
- package/dist/safety/PermissionGuard.js +136 -0
- package/dist/safety/PermissionGuard.js.map +1 -0
- package/dist/safety/Sandbox.d.ts +38 -0
- package/dist/safety/Sandbox.d.ts.map +1 -0
- package/dist/safety/Sandbox.js +82 -0
- package/dist/safety/Sandbox.js.map +1 -0
- package/dist/safety/SecretScanner.d.ts +67 -0
- package/dist/safety/SecretScanner.d.ts.map +1 -0
- package/dist/safety/SecretScanner.js +150 -0
- package/dist/safety/SecretScanner.js.map +1 -0
- package/dist/safety/Supervisor.d.ts +69 -0
- package/dist/safety/Supervisor.d.ts.map +1 -0
- package/dist/safety/Supervisor.js +165 -0
- package/dist/safety/Supervisor.js.map +1 -0
- package/dist/scheduler/CronExecutor.d.ts +18 -0
- package/dist/scheduler/CronExecutor.d.ts.map +1 -0
- package/dist/scheduler/CronExecutor.js +57 -0
- package/dist/scheduler/CronExecutor.js.map +1 -0
- package/dist/scheduler/DailyLog.d.ts +29 -0
- package/dist/scheduler/DailyLog.d.ts.map +1 -0
- package/dist/scheduler/DailyLog.js +84 -0
- package/dist/scheduler/DailyLog.js.map +1 -0
- package/dist/scheduler/DeliveryPresetStore.d.ts +47 -0
- package/dist/scheduler/DeliveryPresetStore.d.ts.map +1 -0
- package/dist/scheduler/DeliveryPresetStore.js +101 -0
- package/dist/scheduler/DeliveryPresetStore.js.map +1 -0
- package/dist/scheduler/GoalPulse.d.ts +42 -0
- package/dist/scheduler/GoalPulse.d.ts.map +1 -0
- package/dist/scheduler/GoalPulse.js +123 -0
- package/dist/scheduler/GoalPulse.js.map +1 -0
- package/dist/scheduler/Heartbeat.d.ts +87 -0
- package/dist/scheduler/Heartbeat.d.ts.map +1 -0
- package/dist/scheduler/Heartbeat.js +313 -0
- package/dist/scheduler/Heartbeat.js.map +1 -0
- package/dist/scheduler/MorningPulse.d.ts +23 -0
- package/dist/scheduler/MorningPulse.d.ts.map +1 -0
- package/dist/scheduler/MorningPulse.js +45 -0
- package/dist/scheduler/MorningPulse.js.map +1 -0
- package/dist/server/index.d.ts +77 -0
- package/dist/server/index.d.ts.map +1 -0
- package/dist/server/index.js +227 -0
- package/dist/server/index.js.map +1 -0
- package/dist/server/middleware/requireAuth.d.ts +41 -0
- package/dist/server/middleware/requireAuth.d.ts.map +1 -0
- package/dist/server/middleware/requireAuth.js +72 -0
- package/dist/server/middleware/requireAuth.js.map +1 -0
- package/dist/server/middleware/security.d.ts +83 -0
- package/dist/server/middleware/security.d.ts.map +1 -0
- package/dist/server/middleware/security.js +171 -0
- package/dist/server/middleware/security.js.map +1 -0
- package/dist/server/routes/auth.d.ts +24 -0
- package/dist/server/routes/auth.d.ts.map +1 -0
- package/dist/server/routes/auth.js +65 -0
- package/dist/server/routes/auth.js.map +1 -0
- package/dist/server/routes/channels.d.ts +7 -0
- package/dist/server/routes/channels.d.ts.map +1 -0
- package/dist/server/routes/channels.js +90 -0
- package/dist/server/routes/channels.js.map +1 -0
- package/dist/server/routes/chat.d.ts +19 -0
- package/dist/server/routes/chat.d.ts.map +1 -0
- package/dist/server/routes/chat.js +209 -0
- package/dist/server/routes/chat.js.map +1 -0
- package/dist/server/routes/compat.d.ts +8 -0
- package/dist/server/routes/compat.d.ts.map +1 -0
- package/dist/server/routes/compat.js +661 -0
- package/dist/server/routes/compat.js.map +1 -0
- package/dist/server/routes/config.d.ts +10 -0
- package/dist/server/routes/config.d.ts.map +1 -0
- package/dist/server/routes/config.js +142 -0
- package/dist/server/routes/config.js.map +1 -0
- package/dist/server/routes/costs.d.ts +7 -0
- package/dist/server/routes/costs.d.ts.map +1 -0
- package/dist/server/routes/costs.js +23 -0
- package/dist/server/routes/costs.js.map +1 -0
- package/dist/server/routes/crew.d.ts +21 -0
- package/dist/server/routes/crew.d.ts.map +1 -0
- package/dist/server/routes/crew.js +372 -0
- package/dist/server/routes/crew.js.map +1 -0
- package/dist/server/routes/cron.d.ts +9 -0
- package/dist/server/routes/cron.d.ts.map +1 -0
- package/dist/server/routes/cron.js +91 -0
- package/dist/server/routes/cron.js.map +1 -0
- package/dist/server/routes/deliveryPresets.d.ts +13 -0
- package/dist/server/routes/deliveryPresets.d.ts.map +1 -0
- package/dist/server/routes/deliveryPresets.js +42 -0
- package/dist/server/routes/deliveryPresets.js.map +1 -0
- package/dist/server/routes/goals.d.ts +7 -0
- package/dist/server/routes/goals.d.ts.map +1 -0
- package/dist/server/routes/goals.js +65 -0
- package/dist/server/routes/goals.js.map +1 -0
- package/dist/server/routes/integrations.d.ts +35 -0
- package/dist/server/routes/integrations.d.ts.map +1 -0
- package/dist/server/routes/integrations.js +448 -0
- package/dist/server/routes/integrations.js.map +1 -0
- package/dist/server/routes/mcp.d.ts +7 -0
- package/dist/server/routes/mcp.d.ts.map +1 -0
- package/dist/server/routes/mcp.js +88 -0
- package/dist/server/routes/mcp.js.map +1 -0
- package/dist/server/routes/memory.d.ts +15 -0
- package/dist/server/routes/memory.d.ts.map +1 -0
- package/dist/server/routes/memory.js +104 -0
- package/dist/server/routes/memory.js.map +1 -0
- package/dist/server/routes/providers.d.ts +15 -0
- package/dist/server/routes/providers.d.ts.map +1 -0
- package/dist/server/routes/providers.js +209 -0
- package/dist/server/routes/providers.js.map +1 -0
- package/dist/server/routes/security.d.ts +15 -0
- package/dist/server/routes/security.d.ts.map +1 -0
- package/dist/server/routes/security.js +117 -0
- package/dist/server/routes/security.js.map +1 -0
- package/dist/server/routes/sessions.d.ts +12 -0
- package/dist/server/routes/sessions.d.ts.map +1 -0
- package/dist/server/routes/sessions.js +172 -0
- package/dist/server/routes/sessions.js.map +1 -0
- package/dist/server/routes/skills.d.ts +11 -0
- package/dist/server/routes/skills.d.ts.map +1 -0
- package/dist/server/routes/skills.js +214 -0
- package/dist/server/routes/skills.js.map +1 -0
- package/dist/server/routes/tasks.d.ts +10 -0
- package/dist/server/routes/tasks.d.ts.map +1 -0
- package/dist/server/routes/tasks.js +38 -0
- package/dist/server/routes/tasks.js.map +1 -0
- package/dist/server/routes/teams.d.ts +7 -0
- package/dist/server/routes/teams.d.ts.map +1 -0
- package/dist/server/routes/teams.js +61 -0
- package/dist/server/routes/teams.js.map +1 -0
- package/dist/server/routes/tunnel.d.ts +12 -0
- package/dist/server/routes/tunnel.d.ts.map +1 -0
- package/dist/server/routes/tunnel.js +18 -0
- package/dist/server/routes/tunnel.js.map +1 -0
- package/dist/server/routes/vault.d.ts +15 -0
- package/dist/server/routes/vault.d.ts.map +1 -0
- package/dist/server/routes/vault.js +82 -0
- package/dist/server/routes/vault.js.map +1 -0
- package/dist/server/routes/voice.d.ts +16 -0
- package/dist/server/routes/voice.d.ts.map +1 -0
- package/dist/server/routes/voice.js +431 -0
- package/dist/server/routes/voice.js.map +1 -0
- package/dist/server/routes/watchers.d.ts +14 -0
- package/dist/server/routes/watchers.d.ts.map +1 -0
- package/dist/server/routes/watchers.js +143 -0
- package/dist/server/routes/watchers.js.map +1 -0
- package/dist/services/Cleanup.d.ts +50 -0
- package/dist/services/Cleanup.d.ts.map +1 -0
- package/dist/services/Cleanup.js +104 -0
- package/dist/services/Cleanup.js.map +1 -0
- package/dist/skills/SecurityScanner.d.ts +18 -0
- package/dist/skills/SecurityScanner.d.ts.map +1 -0
- package/dist/skills/SecurityScanner.js +49 -0
- package/dist/skills/SecurityScanner.js.map +1 -0
- package/dist/skills/SkillLoader.d.ts +45 -0
- package/dist/skills/SkillLoader.d.ts.map +1 -0
- package/dist/skills/SkillLoader.js +336 -0
- package/dist/skills/SkillLoader.js.map +1 -0
- package/dist/skills/SkillRegistry.d.ts +78 -0
- package/dist/skills/SkillRegistry.d.ts.map +1 -0
- package/dist/skills/SkillRegistry.js +185 -0
- package/dist/skills/SkillRegistry.js.map +1 -0
- package/dist/skills/SkillSnapshot.d.ts +37 -0
- package/dist/skills/SkillSnapshot.d.ts.map +1 -0
- package/dist/skills/SkillSnapshot.js +106 -0
- package/dist/skills/SkillSnapshot.js.map +1 -0
- package/dist/skills/types.d.ts +184 -0
- package/dist/skills/types.d.ts.map +1 -0
- package/dist/skills/types.js +58 -0
- package/dist/skills/types.js.map +1 -0
- package/dist/tasks/TaskStore.d.ts +70 -0
- package/dist/tasks/TaskStore.d.ts.map +1 -0
- package/dist/tasks/TaskStore.js +200 -0
- package/dist/tasks/TaskStore.js.map +1 -0
- package/dist/teams/TeamRunner.d.ts +46 -0
- package/dist/teams/TeamRunner.d.ts.map +1 -0
- package/dist/teams/TeamRunner.js +186 -0
- package/dist/teams/TeamRunner.js.map +1 -0
- package/dist/teams/TeamStore.d.ts +84 -0
- package/dist/teams/TeamStore.d.ts.map +1 -0
- package/dist/teams/TeamStore.js +231 -0
- package/dist/teams/TeamStore.js.map +1 -0
- package/dist/teams/templates.d.ts +18 -0
- package/dist/teams/templates.d.ts.map +1 -0
- package/dist/teams/templates.js +89 -0
- package/dist/teams/templates.js.map +1 -0
- package/dist/tools/core/applyPatch.d.ts +19 -0
- package/dist/tools/core/applyPatch.d.ts.map +1 -0
- package/dist/tools/core/applyPatch.js +51 -0
- package/dist/tools/core/applyPatch.js.map +1 -0
- package/dist/tools/core/broadcast.d.ts +67 -0
- package/dist/tools/core/broadcast.d.ts.map +1 -0
- package/dist/tools/core/broadcast.js +93 -0
- package/dist/tools/core/broadcast.js.map +1 -0
- package/dist/tools/core/clipboard.d.ts +17 -0
- package/dist/tools/core/clipboard.d.ts.map +1 -0
- package/dist/tools/core/clipboard.js +38 -0
- package/dist/tools/core/clipboard.js.map +1 -0
- package/dist/tools/core/createDocument.d.ts +27 -0
- package/dist/tools/core/createDocument.d.ts.map +1 -0
- package/dist/tools/core/createDocument.js +297 -0
- package/dist/tools/core/createDocument.js.map +1 -0
- package/dist/tools/core/cronTool.d.ts +55 -0
- package/dist/tools/core/cronTool.d.ts.map +1 -0
- package/dist/tools/core/cronTool.js +162 -0
- package/dist/tools/core/cronTool.js.map +1 -0
- package/dist/tools/core/desktop.d.ts +16 -0
- package/dist/tools/core/desktop.d.ts.map +1 -0
- package/dist/tools/core/desktop.js +480 -0
- package/dist/tools/core/desktop.js.map +1 -0
- package/dist/tools/core/editFile.d.ts +43 -0
- package/dist/tools/core/editFile.d.ts.map +1 -0
- package/dist/tools/core/editFile.js +104 -0
- package/dist/tools/core/editFile.js.map +1 -0
- package/dist/tools/core/executeCommand.d.ts +36 -0
- package/dist/tools/core/executeCommand.d.ts.map +1 -0
- package/dist/tools/core/executeCommand.js +92 -0
- package/dist/tools/core/executeCommand.js.map +1 -0
- package/dist/tools/core/fetchUrl.d.ts +38 -0
- package/dist/tools/core/fetchUrl.d.ts.map +1 -0
- package/dist/tools/core/fetchUrl.js +111 -0
- package/dist/tools/core/fetchUrl.js.map +1 -0
- package/dist/tools/core/generateImage.d.ts +42 -0
- package/dist/tools/core/generateImage.d.ts.map +1 -0
- package/dist/tools/core/generateImage.js +143 -0
- package/dist/tools/core/generateImage.js.map +1 -0
- package/dist/tools/core/generateMusic.d.ts +42 -0
- package/dist/tools/core/generateMusic.d.ts.map +1 -0
- package/dist/tools/core/generateMusic.js +158 -0
- package/dist/tools/core/generateMusic.js.map +1 -0
- package/dist/tools/core/generateVideo.d.ts +45 -0
- package/dist/tools/core/generateVideo.d.ts.map +1 -0
- package/dist/tools/core/generateVideo.js +447 -0
- package/dist/tools/core/generateVideo.js.map +1 -0
- package/dist/tools/core/gitTool.d.ts +81 -0
- package/dist/tools/core/gitTool.d.ts.map +1 -0
- package/dist/tools/core/gitTool.js +196 -0
- package/dist/tools/core/gitTool.js.map +1 -0
- package/dist/tools/core/glob.d.ts +26 -0
- package/dist/tools/core/glob.d.ts.map +1 -0
- package/dist/tools/core/glob.js +104 -0
- package/dist/tools/core/glob.js.map +1 -0
- package/dist/tools/core/goalTool.d.ts +50 -0
- package/dist/tools/core/goalTool.d.ts.map +1 -0
- package/dist/tools/core/goalTool.js +150 -0
- package/dist/tools/core/goalTool.js.map +1 -0
- package/dist/tools/core/grep.d.ts +32 -0
- package/dist/tools/core/grep.d.ts.map +1 -0
- package/dist/tools/core/grep.js +83 -0
- package/dist/tools/core/grep.js.map +1 -0
- package/dist/tools/core/imageAnalysis.d.ts +18 -0
- package/dist/tools/core/imageAnalysis.d.ts.map +1 -0
- package/dist/tools/core/imageAnalysis.js +77 -0
- package/dist/tools/core/imageAnalysis.js.map +1 -0
- package/dist/tools/core/imageOps.d.ts +70 -0
- package/dist/tools/core/imageOps.d.ts.map +1 -0
- package/dist/tools/core/imageOps.js +179 -0
- package/dist/tools/core/imageOps.js.map +1 -0
- package/dist/tools/core/index.d.ts +50 -0
- package/dist/tools/core/index.d.ts.map +1 -0
- package/dist/tools/core/index.js +159 -0
- package/dist/tools/core/index.js.map +1 -0
- package/dist/tools/core/listCrews.d.ts +41 -0
- package/dist/tools/core/listCrews.d.ts.map +1 -0
- package/dist/tools/core/listCrews.js +50 -0
- package/dist/tools/core/listCrews.js.map +1 -0
- package/dist/tools/core/listDirectory.d.ts +33 -0
- package/dist/tools/core/listDirectory.d.ts.map +1 -0
- package/dist/tools/core/listDirectory.js +89 -0
- package/dist/tools/core/listDirectory.js.map +1 -0
- package/dist/tools/core/manageAgents.d.ts +48 -0
- package/dist/tools/core/manageAgents.d.ts.map +1 -0
- package/dist/tools/core/manageAgents.js +104 -0
- package/dist/tools/core/manageAgents.js.map +1 -0
- package/dist/tools/core/manageMCP.d.ts +52 -0
- package/dist/tools/core/manageMCP.d.ts.map +1 -0
- package/dist/tools/core/manageMCP.js +160 -0
- package/dist/tools/core/manageMCP.js.map +1 -0
- package/dist/tools/core/memory.d.ts +49 -0
- package/dist/tools/core/memory.d.ts.map +1 -0
- package/dist/tools/core/memory.js +80 -0
- package/dist/tools/core/memory.js.map +1 -0
- package/dist/tools/core/memoryRecall.d.ts +39 -0
- package/dist/tools/core/memoryRecall.d.ts.map +1 -0
- package/dist/tools/core/memoryRecall.js +42 -0
- package/dist/tools/core/memoryRecall.js.map +1 -0
- package/dist/tools/core/memorySave.d.ts +33 -0
- package/dist/tools/core/memorySave.d.ts.map +1 -0
- package/dist/tools/core/memorySave.js +41 -0
- package/dist/tools/core/memorySave.js.map +1 -0
- package/dist/tools/core/messageChannel.d.ts +27 -0
- package/dist/tools/core/messageChannel.d.ts.map +1 -0
- package/dist/tools/core/messageChannel.js +59 -0
- package/dist/tools/core/messageChannel.js.map +1 -0
- package/dist/tools/core/parallelCrew.d.ts +54 -0
- package/dist/tools/core/parallelCrew.d.ts.map +1 -0
- package/dist/tools/core/parallelCrew.js +60 -0
- package/dist/tools/core/parallelCrew.js.map +1 -0
- package/dist/tools/core/pollTool.d.ts +36 -0
- package/dist/tools/core/pollTool.d.ts.map +1 -0
- package/dist/tools/core/pollTool.js +69 -0
- package/dist/tools/core/pollTool.js.map +1 -0
- package/dist/tools/core/projectTracker.d.ts +71 -0
- package/dist/tools/core/projectTracker.d.ts.map +1 -0
- package/dist/tools/core/projectTracker.js +181 -0
- package/dist/tools/core/projectTracker.js.map +1 -0
- package/dist/tools/core/readFile.d.ts +24 -0
- package/dist/tools/core/readFile.d.ts.map +1 -0
- package/dist/tools/core/readFile.js +49 -0
- package/dist/tools/core/readFile.js.map +1 -0
- package/dist/tools/core/readPDF.d.ts +32 -0
- package/dist/tools/core/readPDF.d.ts.map +1 -0
- package/dist/tools/core/readPDF.js +135 -0
- package/dist/tools/core/readPDF.js.map +1 -0
- package/dist/tools/core/reloadTool.d.ts +36 -0
- package/dist/tools/core/reloadTool.d.ts.map +1 -0
- package/dist/tools/core/reloadTool.js +109 -0
- package/dist/tools/core/reloadTool.js.map +1 -0
- package/dist/tools/core/replyToUser.d.ts +14 -0
- package/dist/tools/core/replyToUser.d.ts.map +1 -0
- package/dist/tools/core/replyToUser.js +19 -0
- package/dist/tools/core/replyToUser.js.map +1 -0
- package/dist/tools/core/screenCapture.d.ts +17 -0
- package/dist/tools/core/screenCapture.d.ts.map +1 -0
- package/dist/tools/core/screenCapture.js +34 -0
- package/dist/tools/core/screenCapture.js.map +1 -0
- package/dist/tools/core/sendEmail.d.ts +34 -0
- package/dist/tools/core/sendEmail.d.ts.map +1 -0
- package/dist/tools/core/sendEmail.js +56 -0
- package/dist/tools/core/sendEmail.js.map +1 -0
- package/dist/tools/core/sendFile.d.ts +37 -0
- package/dist/tools/core/sendFile.d.ts.map +1 -0
- package/dist/tools/core/sendFile.js +53 -0
- package/dist/tools/core/sendFile.js.map +1 -0
- package/dist/tools/core/sessionSearch.d.ts +62 -0
- package/dist/tools/core/sessionSearch.d.ts.map +1 -0
- package/dist/tools/core/sessionSearch.js +154 -0
- package/dist/tools/core/sessionSearch.js.map +1 -0
- package/dist/tools/core/skillManage.d.ts +71 -0
- package/dist/tools/core/skillManage.d.ts.map +1 -0
- package/dist/tools/core/skillManage.js +353 -0
- package/dist/tools/core/skillManage.js.map +1 -0
- package/dist/tools/core/skillView.d.ts +46 -0
- package/dist/tools/core/skillView.d.ts.map +1 -0
- package/dist/tools/core/skillView.js +101 -0
- package/dist/tools/core/skillView.js.map +1 -0
- package/dist/tools/core/teamTool.d.ts +71 -0
- package/dist/tools/core/teamTool.d.ts.map +1 -0
- package/dist/tools/core/teamTool.js +132 -0
- package/dist/tools/core/teamTool.js.map +1 -0
- package/dist/tools/core/textToSpeech.d.ts +25 -0
- package/dist/tools/core/textToSpeech.d.ts.map +1 -0
- package/dist/tools/core/textToSpeech.js +87 -0
- package/dist/tools/core/textToSpeech.js.map +1 -0
- package/dist/tools/core/transcribeAudio.d.ts +21 -0
- package/dist/tools/core/transcribeAudio.d.ts.map +1 -0
- package/dist/tools/core/transcribeAudio.js +27 -0
- package/dist/tools/core/transcribeAudio.js.map +1 -0
- package/dist/tools/core/useCrew.d.ts +38 -0
- package/dist/tools/core/useCrew.d.ts.map +1 -0
- package/dist/tools/core/useCrew.js +48 -0
- package/dist/tools/core/useCrew.js.map +1 -0
- package/dist/tools/core/useMCP.d.ts +40 -0
- package/dist/tools/core/useMCP.d.ts.map +1 -0
- package/dist/tools/core/useMCP.js +64 -0
- package/dist/tools/core/useMCP.js.map +1 -0
- package/dist/tools/core/watcherTool.d.ts +47 -0
- package/dist/tools/core/watcherTool.d.ts.map +1 -0
- package/dist/tools/core/watcherTool.js +119 -0
- package/dist/tools/core/watcherTool.js.map +1 -0
- package/dist/tools/core/webFetch.d.ts +48 -0
- package/dist/tools/core/webFetch.d.ts.map +1 -0
- package/dist/tools/core/webFetch.js +265 -0
- package/dist/tools/core/webFetch.js.map +1 -0
- package/dist/tools/core/webSearch.d.ts +55 -0
- package/dist/tools/core/webSearch.d.ts.map +1 -0
- package/dist/tools/core/webSearch.js +429 -0
- package/dist/tools/core/webSearch.js.map +1 -0
- package/dist/tools/core/writeFile.d.ts +27 -0
- package/dist/tools/core/writeFile.d.ts.map +1 -0
- package/dist/tools/core/writeFile.js +51 -0
- package/dist/tools/core/writeFile.js.map +1 -0
- package/dist/tools/registry.d.ts +36 -0
- package/dist/tools/registry.d.ts.map +1 -0
- package/dist/tools/registry.js +73 -0
- package/dist/tools/registry.js.map +1 -0
- package/dist/tools/types.d.ts +50 -0
- package/dist/tools/types.d.ts.map +1 -0
- package/dist/tools/types.js +20 -0
- package/dist/tools/types.js.map +1 -0
- package/dist/tunnels/TunnelManager.d.ts +52 -0
- package/dist/tunnels/TunnelManager.d.ts.map +1 -0
- package/dist/tunnels/TunnelManager.js +183 -0
- package/dist/tunnels/TunnelManager.js.map +1 -0
- package/dist/tunnels/urls.d.ts +20 -0
- package/dist/tunnels/urls.d.ts.map +1 -0
- package/dist/tunnels/urls.js +22 -0
- package/dist/tunnels/urls.js.map +1 -0
- package/dist/util/errors.d.ts +54 -0
- package/dist/util/errors.d.ts.map +1 -0
- package/dist/util/errors.js +102 -0
- package/dist/util/errors.js.map +1 -0
- package/dist/util/logger.d.ts +21 -0
- package/dist/util/logger.d.ts.map +1 -0
- package/dist/util/logger.js +62 -0
- package/dist/util/logger.js.map +1 -0
- package/dist/util/msgText.d.ts +16 -0
- package/dist/util/msgText.d.ts.map +1 -0
- package/dist/util/msgText.js +65 -0
- package/dist/util/msgText.js.map +1 -0
- package/dist/util/result.d.ts +24 -0
- package/dist/util/result.d.ts.map +1 -0
- package/dist/util/result.js +35 -0
- package/dist/util/result.js.map +1 -0
- package/dist/util/tokenEstimate.d.ts +12 -0
- package/dist/util/tokenEstimate.d.ts.map +1 -0
- package/dist/util/tokenEstimate.js +22 -0
- package/dist/util/tokenEstimate.js.map +1 -0
- package/dist/voice/DaemoraLLM.d.ts +44 -0
- package/dist/voice/DaemoraLLM.d.ts.map +1 -0
- package/dist/voice/DaemoraLLM.js +185 -0
- package/dist/voice/DaemoraLLM.js.map +1 -0
- package/dist/voice/ElevenLabsSTT.d.ts +41 -0
- package/dist/voice/ElevenLabsSTT.d.ts.map +1 -0
- package/dist/voice/ElevenLabsSTT.js +98 -0
- package/dist/voice/ElevenLabsSTT.js.map +1 -0
- package/dist/voice/GroqTTS.d.ts +38 -0
- package/dist/voice/GroqTTS.d.ts.map +1 -0
- package/dist/voice/GroqTTS.js +208 -0
- package/dist/voice/GroqTTS.js.map +1 -0
- package/dist/voice/LiveKitServer.d.ts +30 -0
- package/dist/voice/LiveKitServer.d.ts.map +1 -0
- package/dist/voice/LiveKitServer.js +119 -0
- package/dist/voice/LiveKitServer.js.map +1 -0
- package/dist/voice/LiveKitToken.d.ts +25 -0
- package/dist/voice/LiveKitToken.d.ts.map +1 -0
- package/dist/voice/LiveKitToken.js +44 -0
- package/dist/voice/LiveKitToken.js.map +1 -0
- package/dist/voice/SidecarSupervisor.d.ts +39 -0
- package/dist/voice/SidecarSupervisor.d.ts.map +1 -0
- package/dist/voice/SidecarSupervisor.js +194 -0
- package/dist/voice/SidecarSupervisor.js.map +1 -0
- package/dist/voice/VoiceAgent.d.ts +23 -0
- package/dist/voice/VoiceAgent.d.ts.map +1 -0
- package/dist/voice/VoiceAgent.js +265 -0
- package/dist/voice/VoiceAgent.js.map +1 -0
- package/dist/voice/VoiceProviders.d.ts +29 -0
- package/dist/voice/VoiceProviders.d.ts.map +1 -0
- package/dist/voice/VoiceProviders.js +177 -0
- package/dist/voice/VoiceProviders.js.map +1 -0
- package/dist/voice/VoiceSession.d.ts +106 -0
- package/dist/voice/VoiceSession.d.ts.map +1 -0
- package/dist/voice/VoiceSession.js +454 -0
- package/dist/voice/VoiceSession.js.map +1 -0
- package/dist/voice/VoiceSocket.d.ts +49 -0
- package/dist/voice/VoiceSocket.d.ts.map +1 -0
- package/dist/voice/VoiceSocket.js +274 -0
- package/dist/voice/VoiceSocket.js.map +1 -0
- package/dist/voice/stt/DeepgramSTT.d.ts +26 -0
- package/dist/voice/stt/DeepgramSTT.d.ts.map +1 -0
- package/dist/voice/stt/DeepgramSTT.js +188 -0
- package/dist/voice/stt/DeepgramSTT.js.map +1 -0
- package/dist/voice/stt/GroqSTT.d.ts +28 -0
- package/dist/voice/stt/GroqSTT.d.ts.map +1 -0
- package/dist/voice/stt/GroqSTT.js +169 -0
- package/dist/voice/stt/GroqSTT.js.map +1 -0
- package/dist/voice/stt/STTAdapter.d.ts +47 -0
- package/dist/voice/stt/STTAdapter.d.ts.map +1 -0
- package/dist/voice/stt/STTAdapter.js +27 -0
- package/dist/voice/stt/STTAdapter.js.map +1 -0
- package/dist/voice/transcribe.d.ts +33 -0
- package/dist/voice/transcribe.d.ts.map +1 -0
- package/dist/voice/transcribe.js +73 -0
- package/dist/voice/transcribe.js.map +1 -0
- package/dist/voice/transcriptFilter.d.ts +16 -0
- package/dist/voice/transcriptFilter.d.ts.map +1 -0
- package/dist/voice/transcriptFilter.js +36 -0
- package/dist/voice/transcriptFilter.js.map +1 -0
- package/dist/voice/tts/CartesiaTTS.d.ts +31 -0
- package/dist/voice/tts/CartesiaTTS.d.ts.map +1 -0
- package/dist/voice/tts/CartesiaTTS.js +201 -0
- package/dist/voice/tts/CartesiaTTS.js.map +1 -0
- package/dist/voice/tts/ElevenLabsTTS.d.ts +29 -0
- package/dist/voice/tts/ElevenLabsTTS.d.ts.map +1 -0
- package/dist/voice/tts/ElevenLabsTTS.js +210 -0
- package/dist/voice/tts/ElevenLabsTTS.js.map +1 -0
- package/dist/voice/tts/OpenAITTS.d.ts +23 -0
- package/dist/voice/tts/OpenAITTS.d.ts.map +1 -0
- package/dist/voice/tts/OpenAITTS.js +124 -0
- package/dist/voice/tts/OpenAITTS.js.map +1 -0
- package/dist/voice/tts/TTSAdapter.d.ts +46 -0
- package/dist/voice/tts/TTSAdapter.d.ts.map +1 -0
- package/dist/voice/tts/TTSAdapter.js +26 -0
- package/dist/voice/tts/TTSAdapter.js.map +1 -0
- package/dist/voice-worker.mjs +607 -0
- package/dist/watchers/FileWatcher.d.ts +47 -0
- package/dist/watchers/FileWatcher.d.ts.map +1 -0
- package/dist/watchers/FileWatcher.js +103 -0
- package/dist/watchers/FileWatcher.js.map +1 -0
- package/dist/watchers/IntegrationWatcher.d.ts +68 -0
- package/dist/watchers/IntegrationWatcher.d.ts.map +1 -0
- package/dist/watchers/IntegrationWatcher.js +347 -0
- package/dist/watchers/IntegrationWatcher.js.map +1 -0
- package/dist/watchers/PollWatcher.d.ts +54 -0
- package/dist/watchers/PollWatcher.d.ts.map +1 -0
- package/dist/watchers/PollWatcher.js +135 -0
- package/dist/watchers/PollWatcher.js.map +1 -0
- package/dist/watchers/WatcherRunner.d.ts +49 -0
- package/dist/watchers/WatcherRunner.d.ts.map +1 -0
- package/dist/watchers/WatcherRunner.js +203 -0
- package/dist/watchers/WatcherRunner.js.map +1 -0
- package/dist/watchers/WatcherStore.d.ts +43 -0
- package/dist/watchers/WatcherStore.d.ts.map +1 -0
- package/dist/watchers/WatcherStore.js +78 -0
- package/dist/watchers/WatcherStore.js.map +1 -0
- package/dist/webhooks/WebhookHandler.d.ts +36 -0
- package/dist/webhooks/WebhookHandler.d.ts.map +1 -0
- package/dist/webhooks/WebhookHandler.js +264 -0
- package/dist/webhooks/WebhookHandler.js.map +1 -0
- package/dist/webhooks/WebhookTokenStore.d.ts +48 -0
- package/dist/webhooks/WebhookTokenStore.d.ts.map +1 -0
- package/dist/webhooks/WebhookTokenStore.js +136 -0
- package/dist/webhooks/WebhookTokenStore.js.map +1 -0
- package/dist/webhooks/hmac.d.ts +43 -0
- package/dist/webhooks/hmac.d.ts.map +1 -0
- package/dist/webhooks/hmac.js +98 -0
- package/dist/webhooks/hmac.js.map +1 -0
- package/dist/webhooks/watcherTemplates.d.ts +21 -0
- package/dist/webhooks/watcherTemplates.d.ts.map +1 -0
- package/dist/webhooks/watcherTemplates.js +164 -0
- package/dist/webhooks/watcherTemplates.js.map +1 -0
- package/package.json +119 -0
- package/public/architecture.svg +99 -0
- package/public/banner.png +0 -0
- package/public/banner.svg +141 -0
- package/public/multi-agent.svg +109 -0
- package/public/security.svg +84 -0
- package/public/steer-inject.svg +73 -0
- package/public/task-lifecycle.svg +77 -0
- package/skills/_template/SKILL.md +11 -0
- package/skills/api-development.md +35 -0
- package/skills/apple-notes/SKILL.md +77 -0
- package/skills/apple-reminders/SKILL.md +118 -0
- package/skills/artifacts-builder/SKILL.md +74 -0
- package/skills/artifacts-builder/scripts/bundle-artifact.sh +54 -0
- package/skills/artifacts-builder/scripts/init-artifact.sh +322 -0
- package/skills/artifacts-builder/scripts/shadcn-components.tar.gz +0 -0
- package/skills/brand-guidelines.md +73 -0
- package/skills/browser.md +77 -0
- package/skills/camsnap/SKILL.md +45 -0
- package/skills/changelog-generator.md +104 -0
- package/skills/coding-agent/SKILL.md +316 -0
- package/skills/content-research-writer.md +538 -0
- package/skills/create-new-skill.md +564 -0
- package/skills/data-analysis.md +27 -0
- package/skills/debugging.md +33 -0
- package/skills/devops.md +37 -0
- package/skills/discord/SKILL.md +197 -0
- package/skills/document-docx.md +197 -0
- package/skills/document-pptx.md +484 -0
- package/skills/document-xlsx.md +289 -0
- package/skills/documents.md +13 -0
- package/skills/domain-name-brainstormer.md +212 -0
- package/skills/email.md +13 -0
- package/skills/example-pdf/SKILL.md +17 -0
- package/skills/file-organizer.md +433 -0
- package/skills/frontend-design.md +42 -0
- package/skills/gif-search.md +53 -0
- package/skills/github/SKILL.md +163 -0
- package/skills/google-workspace.md +64 -0
- package/skills/image-enhancer.md +99 -0
- package/skills/image-gen.md +48 -0
- package/skills/invoice-organizer.md +446 -0
- package/skills/lead-research-assistant.md +199 -0
- package/skills/link-understanding.md +21 -0
- package/skills/macos-automation.md +62 -0
- package/skills/mcp-builder/SKILL.md +328 -0
- package/skills/mcp-builder/reference/evaluation.md +602 -0
- package/skills/mcp-builder/reference/mcp_best_practices.md +915 -0
- package/skills/mcp-builder/reference/node_mcp_server.md +916 -0
- package/skills/mcp-builder/reference/python_mcp_server.md +752 -0
- package/skills/mcp-builder/scripts/connections.py +151 -0
- package/skills/mcp-builder/scripts/evaluation.py +373 -0
- package/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
- package/skills/mcp-builder/scripts/requirements.txt +2 -0
- package/skills/meeting-attendance.md +37 -0
- package/skills/meeting-insights-analyzer.md +327 -0
- package/skills/model-usage/SKILL.md +69 -0
- package/skills/model-usage/references/codexbar-cli.md +33 -0
- package/skills/model-usage/scripts/model_usage.py +320 -0
- package/skills/model-usage/scripts/test_model_usage.py +40 -0
- package/skills/notion/SKILL.md +174 -0
- package/skills/obsidian/SKILL.md +81 -0
- package/skills/orchestration.md +114 -0
- package/skills/pdf.md +60 -0
- package/skills/planning/SKILL.md +98 -0
- package/skills/planning.md +168 -0
- package/skills/raffle-winner-picker.md +159 -0
- package/skills/remotion.md +126 -0
- package/skills/research.md +13 -0
- package/skills/skill-creator/SKILL.md +372 -0
- package/skills/skill-creator/license.txt +202 -0
- package/skills/skill-creator/scripts/init_skill.py +378 -0
- package/skills/skill-creator/scripts/package_skill.py +139 -0
- package/skills/skill-creator/scripts/quick_validate.py +159 -0
- package/skills/skill-creator/scripts/test_package_skill.py +160 -0
- package/skills/skill-creator/scripts/test_quick_validate.py +72 -0
- package/skills/slack/SKILL.md +144 -0
- package/skills/slack-gif-creator/SKILL.md +646 -0
- package/skills/slack-gif-creator/core/color_palettes.py +302 -0
- package/skills/slack-gif-creator/core/easing.py +230 -0
- package/skills/slack-gif-creator/core/frame_composer.py +469 -0
- package/skills/slack-gif-creator/core/gif_builder.py +246 -0
- package/skills/slack-gif-creator/core/typography.py +357 -0
- package/skills/slack-gif-creator/core/validators.py +264 -0
- package/skills/slack-gif-creator/core/visual_effects.py +494 -0
- package/skills/slack-gif-creator/requirements.txt +4 -0
- package/skills/slack-gif-creator/templates/bounce.py +106 -0
- package/skills/slack-gif-creator/templates/explode.py +331 -0
- package/skills/slack-gif-creator/templates/fade.py +329 -0
- package/skills/slack-gif-creator/templates/flip.py +291 -0
- package/skills/slack-gif-creator/templates/kaleidoscope.py +211 -0
- package/skills/slack-gif-creator/templates/morph.py +329 -0
- package/skills/slack-gif-creator/templates/move.py +293 -0
- package/skills/slack-gif-creator/templates/pulse.py +268 -0
- package/skills/slack-gif-creator/templates/shake.py +127 -0
- package/skills/slack-gif-creator/templates/slide.py +291 -0
- package/skills/slack-gif-creator/templates/spin.py +269 -0
- package/skills/slack-gif-creator/templates/wiggle.py +300 -0
- package/skills/slack-gif-creator/templates/zoom.py +312 -0
- package/skills/summarize/SKILL.md +87 -0
- package/skills/system-admin.md +44 -0
- package/skills/tailored-resume-generator.md +345 -0
- package/skills/task-decomposition/SKILL.md +113 -0
- package/skills/theme-factory/SKILL.md +59 -0
- package/skills/theme-factory/theme-showcase.pdf +0 -0
- package/skills/theme-factory/themes/arctic-frost.md +19 -0
- package/skills/theme-factory/themes/botanical-garden.md +19 -0
- package/skills/theme-factory/themes/desert-rose.md +19 -0
- package/skills/theme-factory/themes/forest-canopy.md +19 -0
- package/skills/theme-factory/themes/golden-hour.md +19 -0
- package/skills/theme-factory/themes/midnight-galaxy.md +19 -0
- package/skills/theme-factory/themes/modern-minimalist.md +19 -0
- package/skills/theme-factory/themes/ocean-depths.md +19 -0
- package/skills/theme-factory/themes/sunset-boulevard.md +19 -0
- package/skills/theme-factory/themes/tech-innovation.md +19 -0
- package/skills/things-mac/SKILL.md +86 -0
- package/skills/tmux/SKILL.md +170 -0
- package/skills/tmux/scripts/find-sessions.sh +112 -0
- package/skills/tmux/scripts/wait-for-text.sh +83 -0
- package/skills/trello/SKILL.md +108 -0
- package/skills/video-downloader.md +99 -0
- package/skills/video-frames/SKILL.md +46 -0
- package/skills/video-frames/scripts/frame.sh +81 -0
- package/skills/weather/SKILL.md +129 -0
- package/skills/web-development.md +32 -0
- package/skills/webapp-testing/SKILL.md +96 -0
- package/skills/webapp-testing/examples/console_logging.py +35 -0
- package/skills/webapp-testing/examples/element_discovery.py +40 -0
- package/skills/webapp-testing/examples/static_html_automation.py +33 -0
- package/skills/webapp-testing/scripts/with_server.py +106 -0
- package/ui/dist/assets/index-DuybLBDW.css +1 -0
- package/ui/dist/assets/index-kK4jTnXz.js +569 -0
- package/ui/dist/favicon.svg +29 -0
- package/ui/dist/index.html +16 -0
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 540" font-family="'Segoe UI', system-ui, -apple-system, sans-serif">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="bg" x1="0" y1="0" x2="0" y2="1">
|
|
4
|
+
<stop offset="0%" stop-color="#0d1117"/>
|
|
5
|
+
<stop offset="100%" stop-color="#161b22"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
<marker id="arr" markerWidth="8" markerHeight="6" refX="8" refY="3" orient="auto"><path d="M0,0 L8,3 L0,6" fill="#58a6ff"/></marker>
|
|
8
|
+
<marker id="arrO" markerWidth="8" markerHeight="6" refX="8" refY="3" orient="auto"><path d="M0,0 L8,3 L0,6" fill="#f0883e"/></marker>
|
|
9
|
+
<marker id="arrG" markerWidth="8" markerHeight="6" refX="8" refY="3" orient="auto"><path d="M0,0 L8,3 L0,6" fill="#3fb950"/></marker>
|
|
10
|
+
<marker id="arrP" markerWidth="8" markerHeight="6" refX="8" refY="3" orient="auto"><path d="M0,0 L8,3 L0,6" fill="#d2a8ff"/></marker>
|
|
11
|
+
</defs>
|
|
12
|
+
|
|
13
|
+
<rect width="900" height="540" fill="url(#bg)" rx="12"/>
|
|
14
|
+
|
|
15
|
+
<text x="450" y="34" text-anchor="middle" fill="#e6edf3" font-size="18" font-weight="700">Delegation - Crew Members + Project Teams</text>
|
|
16
|
+
|
|
17
|
+
<!-- Divider -->
|
|
18
|
+
<text x="230" y="62" text-anchor="middle" fill="#58a6ff" font-size="13" font-weight="700">useCrew / parallelCrew</text>
|
|
19
|
+
<text x="680" y="62" text-anchor="middle" fill="#d2a8ff" font-size="13" font-weight="700">teamTask - Project Teams</text>
|
|
20
|
+
<line x1="460" y1="50" x2="460" y2="510" stroke="#30363d" stroke-width="1" stroke-dasharray="4,4"/>
|
|
21
|
+
|
|
22
|
+
<!-- LEFT: Crew Delegation -->
|
|
23
|
+
<rect x="40" y="82" width="120" height="44" rx="8" fill="#1a2332" stroke="#58a6ff" stroke-width="1.5"/>
|
|
24
|
+
<text x="100" y="108" text-anchor="middle" fill="#58a6ff" font-size="12" font-weight="600">Main Agent</text>
|
|
25
|
+
|
|
26
|
+
<line x1="160" y1="104" x2="210" y2="104" stroke="#58a6ff" stroke-width="1.5" marker-end="url(#arr)"/>
|
|
27
|
+
<text x="185" y="96" text-anchor="middle" fill="#8b949e" font-size="9">useCrew</text>
|
|
28
|
+
|
|
29
|
+
<!-- Crew members -->
|
|
30
|
+
<rect x="212" y="82" width="110" height="44" rx="8" fill="#1a2332" stroke="#f0883e" stroke-width="1.5"/>
|
|
31
|
+
<text x="267" y="108" text-anchor="middle" fill="#f0883e" font-size="11" font-weight="600">Crew Member</text>
|
|
32
|
+
|
|
33
|
+
<!-- Or parallelCrew -->
|
|
34
|
+
<line x1="100" y1="126" x2="100" y2="160" stroke="#3fb950" stroke-width="1.5" marker-end="url(#arrG)"/>
|
|
35
|
+
<text x="100" y="152" text-anchor="middle" fill="#8b949e" font-size="9">parallelCrew</text>
|
|
36
|
+
|
|
37
|
+
<rect x="30" y="168" width="100" height="50" rx="8" fill="#1a2332" stroke="#3fb950" stroke-width="1.2"/>
|
|
38
|
+
<text x="80" y="190" text-anchor="middle" fill="#3fb950" font-size="10" font-weight="600">Researcher</text>
|
|
39
|
+
<text x="80" y="204" text-anchor="middle" fill="#8b949e" font-size="8">webSearch + fetch</text>
|
|
40
|
+
|
|
41
|
+
<rect x="145" y="168" width="100" height="50" rx="8" fill="#1a2332" stroke="#3fb950" stroke-width="1.2"/>
|
|
42
|
+
<text x="195" y="190" text-anchor="middle" fill="#3fb950" font-size="10" font-weight="600">Coder</text>
|
|
43
|
+
<text x="195" y="204" text-anchor="middle" fill="#8b949e" font-size="8">readFile + editFile</text>
|
|
44
|
+
|
|
45
|
+
<rect x="260" y="168" width="100" height="50" rx="8" fill="#1a2332" stroke="#3fb950" stroke-width="1.2"/>
|
|
46
|
+
<text x="310" y="190" text-anchor="middle" fill="#3fb950" font-size="10" font-weight="600">Writer</text>
|
|
47
|
+
<text x="310" y="204" text-anchor="middle" fill="#8b949e" font-size="8">createDocument</text>
|
|
48
|
+
|
|
49
|
+
<rect x="22" y="160" width="346" height="66" rx="10" fill="none" stroke="#3fb950" stroke-width="1" stroke-dasharray="4,3"/>
|
|
50
|
+
<text x="195" y="238" text-anchor="middle" fill="#3fb950" font-size="9">concurrent - results merge back to main agent</text>
|
|
51
|
+
|
|
52
|
+
<!-- Features -->
|
|
53
|
+
<rect x="30" y="260" width="400" height="36" rx="6" fill="#1a2332" stroke="#30363d" stroke-width="1"/>
|
|
54
|
+
<text x="230" y="283" text-anchor="middle" fill="#8b949e" font-size="9">Each crew member: own tools · own skills · persistent session · identity prompt</text>
|
|
55
|
+
|
|
56
|
+
<rect x="30" y="306" width="400" height="36" rx="6" fill="#1a2332" stroke="#30363d" stroke-width="1"/>
|
|
57
|
+
<text x="230" y="329" text-anchor="middle" fill="#8b949e" font-size="9">discoverCrew("what I need") → find the right specialist · 31 crew members available</text>
|
|
58
|
+
|
|
59
|
+
<!-- RIGHT: Team Lead Pattern -->
|
|
60
|
+
<rect x="500" y="82" width="140" height="44" rx="8" fill="#1a2332" stroke="#d2a8ff" stroke-width="1.5"/>
|
|
61
|
+
<text x="570" y="102" text-anchor="middle" fill="#d2a8ff" font-size="11" font-weight="600">Main Agent</text>
|
|
62
|
+
<text x="570" y="116" text-anchor="middle" fill="#8b949e" font-size="9">teamTask("createTeam")</text>
|
|
63
|
+
|
|
64
|
+
<line x1="570" y1="126" x2="570" y2="150" stroke="#d2a8ff" stroke-width="1.5" marker-end="url(#arrP)"/>
|
|
65
|
+
|
|
66
|
+
<!-- Team Lead -->
|
|
67
|
+
<rect x="500" y="152" width="140" height="44" rx="8" fill="#1a2332" stroke="#f0883e" stroke-width="1.5"/>
|
|
68
|
+
<text x="570" y="172" text-anchor="middle" fill="#f0883e" font-size="11" font-weight="700">Team Lead</text>
|
|
69
|
+
<text x="570" y="186" text-anchor="middle" fill="#8b949e" font-size="9">assigns · reviews · approves</text>
|
|
70
|
+
|
|
71
|
+
<!-- Workers -->
|
|
72
|
+
<line x1="520" y1="196" x2="520" y2="220" stroke="#3fb950" stroke-width="1.2" marker-end="url(#arrG)"/>
|
|
73
|
+
<line x1="570" y1="196" x2="620" y2="220" stroke="#3fb950" stroke-width="1.2" marker-end="url(#arrG)"/>
|
|
74
|
+
<line x1="620" y1="196" x2="720" y2="220" stroke="#3fb950" stroke-width="1.2" marker-end="url(#arrG)"/>
|
|
75
|
+
|
|
76
|
+
<rect x="490" y="224" width="80" height="44" rx="8" fill="#1a2332" stroke="#58a6ff" stroke-width="1.2"/>
|
|
77
|
+
<text x="530" y="244" text-anchor="middle" fill="#58a6ff" font-size="10" font-weight="600">Backend</text>
|
|
78
|
+
<text x="530" y="258" text-anchor="middle" fill="#8b949e" font-size="8">coder</text>
|
|
79
|
+
|
|
80
|
+
<rect x="585" y="224" width="80" height="44" rx="8" fill="#1a2332" stroke="#3fb950" stroke-width="1.2"/>
|
|
81
|
+
<text x="625" y="244" text-anchor="middle" fill="#3fb950" font-size="10" font-weight="600">Frontend</text>
|
|
82
|
+
<text x="625" y="258" text-anchor="middle" fill="#8b949e" font-size="8">frontend</text>
|
|
83
|
+
|
|
84
|
+
<rect x="680" y="224" width="80" height="44" rx="8" fill="#1a2332" stroke="#f0883e" stroke-width="1.2"/>
|
|
85
|
+
<text x="720" y="244" text-anchor="middle" fill="#f0883e" font-size="10" font-weight="600">Tester</text>
|
|
86
|
+
<text x="720" y="258" text-anchor="middle" fill="#8b949e" font-size="8">tester</text>
|
|
87
|
+
|
|
88
|
+
<!-- Plan Approval -->
|
|
89
|
+
<rect x="480" y="284" width="290" height="36" rx="6" fill="#1a2332" stroke="#d2a8ff" stroke-width="1.2"/>
|
|
90
|
+
<text x="625" y="300" text-anchor="middle" fill="#d2a8ff" font-size="10" font-weight="600">Plan Approval Flow</text>
|
|
91
|
+
<text x="625" y="314" text-anchor="middle" fill="#8b949e" font-size="9">submit plan → lead reviews → approve/reject</text>
|
|
92
|
+
|
|
93
|
+
<!-- Mailbox -->
|
|
94
|
+
<rect x="480" y="332" width="290" height="36" rx="6" fill="#1a2332" stroke="#f0883e" stroke-width="1.2"/>
|
|
95
|
+
<text x="625" y="350" text-anchor="middle" fill="#f0883e" font-size="10" font-weight="600">Persistent Mailbox (SQLite)</text>
|
|
96
|
+
<text x="625" y="362" text-anchor="middle" fill="#8b949e" font-size="9">7 message types · destructive read · broadcast</text>
|
|
97
|
+
|
|
98
|
+
<!-- Features -->
|
|
99
|
+
<rect x="480" y="380" width="290" height="56" rx="6" fill="#1a2332" stroke="#30363d" stroke-width="1"/>
|
|
100
|
+
<text x="625" y="398" text-anchor="middle" fill="#8b949e" font-size="9">Lead polls 30s · Sessions persist · Project re-launch</text>
|
|
101
|
+
<text x="625" y="414" text-anchor="middle" fill="#8b949e" font-size="9">5 templates: full-stack · backend · research</text>
|
|
102
|
+
<text x="625" y="428" text-anchor="middle" fill="#8b949e" font-size="9">code-review · devops-deploy</text>
|
|
103
|
+
|
|
104
|
+
<!-- When to use -->
|
|
105
|
+
<rect x="60" y="460" width="780" height="56" rx="8" fill="#1a2332" stroke="#30363d" stroke-width="1"/>
|
|
106
|
+
<text x="450" y="482" text-anchor="middle" fill="#e6edf3" font-size="11" font-weight="600">When to use which?</text>
|
|
107
|
+
<text x="250" y="500" text-anchor="middle" fill="#8b949e" font-size="9">useCrew / parallelCrew → independent, no coordination</text>
|
|
108
|
+
<text x="650" y="500" text-anchor="middle" fill="#8b949e" font-size="9">teamTask → dependencies, plan approval, project teams</text>
|
|
109
|
+
</svg>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 720" font-family="'Segoe UI', system-ui, -apple-system, sans-serif">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="bg" x1="0" y1="0" x2="0" y2="1">
|
|
4
|
+
<stop offset="0%" stop-color="#0d1117"/>
|
|
5
|
+
<stop offset="100%" stop-color="#161b22"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
</defs>
|
|
8
|
+
|
|
9
|
+
<rect width="900" height="720" fill="url(#bg)" rx="12"/>
|
|
10
|
+
|
|
11
|
+
<text x="450" y="36" text-anchor="middle" fill="#e6edf3" font-size="18" font-weight="700">14-Layer Security Architecture</text>
|
|
12
|
+
|
|
13
|
+
<g transform="translate(40, 52)">
|
|
14
|
+
<rect x="0" y="0" width="820" height="36" rx="6" fill="#1a2332" stroke="#f85149" stroke-width="1.2"/>
|
|
15
|
+
<text x="12" y="23" fill="#f85149" font-size="11" font-weight="700">LAYER 1</text>
|
|
16
|
+
<text x="90" y="23" fill="#e6edf3" font-size="12" font-weight="600">Permission Tiers</text>
|
|
17
|
+
<text x="808" y="23" text-anchor="end" fill="#8b949e" font-size="11">minimal · standard · full</text>
|
|
18
|
+
|
|
19
|
+
<rect x="0" y="40" width="820" height="36" rx="6" fill="#1a2332" stroke="#f0883e" stroke-width="1.2"/>
|
|
20
|
+
<text x="12" y="63" fill="#f0883e" font-size="11" font-weight="700">LAYER 2</text>
|
|
21
|
+
<text x="90" y="63" fill="#e6edf3" font-size="12" font-weight="600">Filesystem Sandbox</text>
|
|
22
|
+
<text x="808" y="63" text-anchor="end" fill="#8b949e" font-size="11">ALLOWED_PATHS · BLOCKED_PATHS · command path scanning</text>
|
|
23
|
+
|
|
24
|
+
<rect x="0" y="80" width="820" height="36" rx="6" fill="#1a2332" stroke="#d29922" stroke-width="1.2"/>
|
|
25
|
+
<text x="12" y="103" fill="#d29922" font-size="11" font-weight="700">LAYER 3</text>
|
|
26
|
+
<text x="90" y="103" fill="#e6edf3" font-size="12" font-weight="600">Secret Vault</text>
|
|
27
|
+
<text x="808" y="103" text-anchor="end" fill="#8b949e" font-size="11">AES-256-GCM · scrypt · passphrase on start</text>
|
|
28
|
+
|
|
29
|
+
<rect x="0" y="120" width="820" height="36" rx="6" fill="#1a2332" stroke="#3fb950" stroke-width="1.2"/>
|
|
30
|
+
<text x="12" y="143" fill="#3fb950" font-size="11" font-weight="700">LAYER 4</text>
|
|
31
|
+
<text x="90" y="143" fill="#e6edf3" font-size="12" font-weight="600">Channel Allowlists</text>
|
|
32
|
+
<text x="808" y="143" text-anchor="end" fill="#8b949e" font-size="11">per-channel user ID whitelist</text>
|
|
33
|
+
|
|
34
|
+
<rect x="0" y="160" width="820" height="36" rx="6" fill="#1a2332" stroke="#58a6ff" stroke-width="1.2"/>
|
|
35
|
+
<text x="12" y="183" fill="#58a6ff" font-size="11" font-weight="700">LAYER 5</text>
|
|
36
|
+
<text x="90" y="183" fill="#e6edf3" font-size="12" font-weight="600">Subprocess Env Isolation</text>
|
|
37
|
+
<text x="808" y="183" text-anchor="end" fill="#8b949e" font-size="11">secrets stripped from shell + MCP child env</text>
|
|
38
|
+
|
|
39
|
+
<rect x="0" y="200" width="820" height="36" rx="6" fill="#1a2332" stroke="#2f81f7" stroke-width="1.2"/>
|
|
40
|
+
<text x="12" y="223" fill="#2f81f7" font-size="11" font-weight="700">LAYER 6</text>
|
|
41
|
+
<text x="90" y="223" fill="#e6edf3" font-size="12" font-weight="600">Command Guard</text>
|
|
42
|
+
<text x="808" y="223" text-anchor="end" fill="#8b949e" font-size="11">blocks env dumps · .env reads · credential exfil</text>
|
|
43
|
+
|
|
44
|
+
<rect x="0" y="240" width="820" height="36" rx="6" fill="#1a2332" stroke="#8957e5" stroke-width="1.2"/>
|
|
45
|
+
<text x="12" y="263" fill="#8957e5" font-size="11" font-weight="700">LAYER 7</text>
|
|
46
|
+
<text x="90" y="263" fill="#e6edf3" font-size="12" font-weight="600">Secret Redaction</text>
|
|
47
|
+
<text x="808" y="263" text-anchor="end" fill="#8b949e" font-size="11">pattern + blind env redaction · live refresh on unlock</text>
|
|
48
|
+
|
|
49
|
+
<rect x="0" y="280" width="820" height="36" rx="6" fill="#1a2332" stroke="#d2a8ff" stroke-width="1.2"/>
|
|
50
|
+
<text x="12" y="303" fill="#d2a8ff" font-size="11" font-weight="700">LAYER 8</text>
|
|
51
|
+
<text x="90" y="303" fill="#e6edf3" font-size="12" font-weight="600">Log Sanitisation</text>
|
|
52
|
+
<text x="808" y="303" text-anchor="end" fill="#8b949e" font-size="11">params + output redacted before logging</text>
|
|
53
|
+
|
|
54
|
+
<rect x="0" y="320" width="820" height="36" rx="6" fill="#1a2332" stroke="#f85149" stroke-width="1.2"/>
|
|
55
|
+
<text x="12" y="343" fill="#f85149" font-size="11" font-weight="700">LAYER 9</text>
|
|
56
|
+
<text x="90" y="343" fill="#e6edf3" font-size="12" font-weight="600">Network Egress Guard</text>
|
|
57
|
+
<text x="808" y="343" text-anchor="end" fill="#8b949e" font-size="11">blocks outbound requests containing secrets</text>
|
|
58
|
+
|
|
59
|
+
<rect x="0" y="360" width="820" height="36" rx="6" fill="#1a2332" stroke="#3fb950" stroke-width="1.2"/>
|
|
60
|
+
<text x="12" y="383" fill="#3fb950" font-size="11" font-weight="700">LAYER 10</text>
|
|
61
|
+
<text x="100" y="383" fill="#e6edf3" font-size="12" font-weight="600">Plugin Isolation</text>
|
|
62
|
+
<text x="808" y="383" text-anchor="end" fill="#8b949e" font-size="11">crew plugins sandboxed from host secrets</text>
|
|
63
|
+
|
|
64
|
+
<rect x="0" y="400" width="820" height="36" rx="6" fill="#1a2332" stroke="#58a6ff" stroke-width="1.2"/>
|
|
65
|
+
<text x="12" y="423" fill="#58a6ff" font-size="11" font-weight="700">LAYER 11</text>
|
|
66
|
+
<text x="100" y="423" fill="#e6edf3" font-size="12" font-weight="600">A2A Security</text>
|
|
67
|
+
<text x="808" y="423" text-anchor="end" fill="#8b949e" font-size="11">bearer token · agent allowlist · rate limiting</text>
|
|
68
|
+
|
|
69
|
+
<rect x="0" y="440" width="820" height="36" rx="6" fill="#1a2332" stroke="#f0883e" stroke-width="1.2"/>
|
|
70
|
+
<text x="12" y="463" fill="#f0883e" font-size="11" font-weight="700">LAYER 12</text>
|
|
71
|
+
<text x="100" y="463" fill="#e6edf3" font-size="12" font-weight="600">Supervisor Agent</text>
|
|
72
|
+
<text x="808" y="463" text-anchor="end" fill="#8b949e" font-size="11">runaway loops · cost overruns · dangerous patterns</text>
|
|
73
|
+
|
|
74
|
+
<rect x="0" y="480" width="820" height="36" rx="6" fill="#1a2332" stroke="#d29922" stroke-width="1.2"/>
|
|
75
|
+
<text x="12" y="503" fill="#d29922" font-size="11" font-weight="700">LAYER 13</text>
|
|
76
|
+
<text x="100" y="503" fill="#e6edf3" font-size="12" font-weight="600">Input Sanitisation</text>
|
|
77
|
+
<text x="808" y="503" text-anchor="end" fill="#8b949e" font-size="11">untrusted-input wrapping · injection detection</text>
|
|
78
|
+
|
|
79
|
+
<rect x="0" y="520" width="820" height="36" rx="6" fill="#1a2332" stroke="#8957e5" stroke-width="1.2"/>
|
|
80
|
+
<text x="12" y="543" fill="#8957e5" font-size="11" font-weight="700">LAYER 14</text>
|
|
81
|
+
<text x="100" y="543" fill="#e6edf3" font-size="12" font-weight="600">Secret Access Audit</text>
|
|
82
|
+
<text x="808" y="543" text-anchor="end" fill="#8b949e" font-size="11">every key read logged · caller + timestamp</text>
|
|
83
|
+
</g>
|
|
84
|
+
</svg>
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 780 340" font-family="'Segoe UI', system-ui, -apple-system, sans-serif">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="bg" x1="0" y1="0" x2="0" y2="1">
|
|
4
|
+
<stop offset="0%" stop-color="#0d1117"/>
|
|
5
|
+
<stop offset="100%" stop-color="#161b22"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
<marker id="arr" markerWidth="8" markerHeight="6" refX="8" refY="3" orient="auto"><path d="M0,0 L8,3 L0,6" fill="#58a6ff"/></marker>
|
|
8
|
+
<marker id="arrO" markerWidth="8" markerHeight="6" refX="8" refY="3" orient="auto"><path d="M0,0 L8,3 L0,6" fill="#f0883e"/></marker>
|
|
9
|
+
<marker id="arrG" markerWidth="8" markerHeight="6" refX="8" refY="3" orient="auto"><path d="M0,0 L8,3 L0,6" fill="#3fb950"/></marker>
|
|
10
|
+
</defs>
|
|
11
|
+
|
|
12
|
+
<rect width="780" height="340" fill="url(#bg)" rx="12"/>
|
|
13
|
+
|
|
14
|
+
<text x="390" y="34" text-anchor="middle" fill="#e6edf3" font-size="18" font-weight="700">Steer/Inject - Follow-up Mid-Task</text>
|
|
15
|
+
|
|
16
|
+
<!-- Timeline -->
|
|
17
|
+
<!-- Step 1: User sends task -->
|
|
18
|
+
<rect x="40" y="60" width="130" height="40" rx="8" fill="#1a2332" stroke="#58a6ff" stroke-width="1.5"/>
|
|
19
|
+
<text x="105" y="78" text-anchor="middle" fill="#58a6ff" font-size="11" font-weight="600">User</text>
|
|
20
|
+
<text x="105" y="92" text-anchor="middle" fill="#8b949e" font-size="9">"Fix login bug"</text>
|
|
21
|
+
|
|
22
|
+
<line x1="170" y1="80" x2="210" y2="80" stroke="#58a6ff" stroke-width="1.5" marker-end="url(#arr)"/>
|
|
23
|
+
|
|
24
|
+
<rect x="212" y="60" width="110" height="40" rx="8" fill="#1a2332" stroke="#3fb950" stroke-width="1.5"/>
|
|
25
|
+
<text x="267" y="84" text-anchor="middle" fill="#3fb950" font-size="11" font-weight="600">TaskQueue</text>
|
|
26
|
+
|
|
27
|
+
<line x1="322" y1="80" x2="362" y2="80" stroke="#3fb950" stroke-width="1.5" marker-end="url(#arrG)"/>
|
|
28
|
+
|
|
29
|
+
<rect x="364" y="60" width="110" height="40" rx="8" fill="#1a2332" stroke="#f0883e" stroke-width="1.5"/>
|
|
30
|
+
<text x="419" y="84" text-anchor="middle" fill="#f0883e" font-size="11" font-weight="600">AgentLoop</text>
|
|
31
|
+
|
|
32
|
+
<line x1="474" y1="80" x2="510" y2="80" stroke="#f0883e" stroke-width="1.5" marker-end="url(#arrO)"/>
|
|
33
|
+
|
|
34
|
+
<!-- Working indicator -->
|
|
35
|
+
<rect x="512" y="56" width="200" height="48" rx="8" fill="#1a2332" stroke="#30363d" stroke-width="1" stroke-dasharray="4,3"/>
|
|
36
|
+
<text x="612" y="78" text-anchor="middle" fill="#8b949e" font-size="10">readFile("auth.js") ...</text>
|
|
37
|
+
<text x="612" y="94" text-anchor="middle" fill="#8b949e" font-size="10">editFile("auth.js", patch) ...</text>
|
|
38
|
+
|
|
39
|
+
<!-- Step 2: User sends follow-up -->
|
|
40
|
+
<rect x="40" y="130" width="200" height="40" rx="8" fill="#1a2332" stroke="#d2a8ff" stroke-width="1.5"/>
|
|
41
|
+
<text x="140" y="148" text-anchor="middle" fill="#d2a8ff" font-size="11" font-weight="600">User (while agent is working)</text>
|
|
42
|
+
<text x="140" y="162" text-anchor="middle" fill="#8b949e" font-size="9">"Also fix the signup form"</text>
|
|
43
|
+
|
|
44
|
+
<line x1="240" y1="150" x2="277" y2="150" stroke="#d2a8ff" stroke-width="1.5"/>
|
|
45
|
+
<defs><marker id="arrPu" markerWidth="8" markerHeight="6" refX="8" refY="3" orient="auto"><path d="M0,0 L8,3 L0,6" fill="#d2a8ff"/></marker></defs>
|
|
46
|
+
|
|
47
|
+
<!-- Decision point -->
|
|
48
|
+
<rect x="280" y="130" width="160" height="40" rx="8" fill="#1a2332" stroke="#f0883e" stroke-width="1.5"/>
|
|
49
|
+
<text x="360" y="148" text-anchor="middle" fill="#f0883e" font-size="10" font-weight="600">Session active → inject</text>
|
|
50
|
+
<text x="360" y="162" text-anchor="middle" fill="#8b949e" font-size="9">don't queue separately</text>
|
|
51
|
+
|
|
52
|
+
<!-- Inject arrow -->
|
|
53
|
+
<line x1="440" y1="150" x2="480" y2="150" stroke="#f0883e" stroke-width="1.5" marker-end="url(#arrO)"/>
|
|
54
|
+
|
|
55
|
+
<!-- steerQueue -->
|
|
56
|
+
<rect x="482" y="130" width="130" height="40" rx="8" fill="#1a2332" stroke="#f0883e" stroke-width="1.5"/>
|
|
57
|
+
<text x="547" y="154" text-anchor="middle" fill="#f0883e" font-size="11" font-weight="600">steerQueue.push</text>
|
|
58
|
+
|
|
59
|
+
<!-- Drain between tool calls -->
|
|
60
|
+
<path d="M 547,170 L 547,210 L 419,210 L 419,230" fill="none" stroke="#f0883e" stroke-width="1.5" marker-end="url(#arrO)"/>
|
|
61
|
+
<text x="500" y="202" text-anchor="middle" fill="#8b949e" font-size="9">drained between tool calls</text>
|
|
62
|
+
|
|
63
|
+
<!-- AgentLoop with both tasks -->
|
|
64
|
+
<rect x="334" y="232" width="170" height="48" rx="8" fill="#1a2332" stroke="#3fb950" stroke-width="1.5"/>
|
|
65
|
+
<text x="419" y="254" text-anchor="middle" fill="#3fb950" font-size="11" font-weight="600">AgentLoop</text>
|
|
66
|
+
<text x="419" y="270" text-anchor="middle" fill="#8b949e" font-size="9">both tasks now in context</text>
|
|
67
|
+
|
|
68
|
+
<!-- Result -->
|
|
69
|
+
<line x1="334" y1="256" x2="40" y2="300" stroke="#3fb950" stroke-width="1.5" marker-end="url(#arrG)"/>
|
|
70
|
+
|
|
71
|
+
<rect x="40" y="292" width="670" height="36" rx="8" fill="#1a2332" stroke="#3fb950" stroke-width="1.5"/>
|
|
72
|
+
<text x="375" y="315" text-anchor="middle" fill="#3fb950" font-size="12" font-weight="600">"Fixed login bug AND signup form validation"</text>
|
|
73
|
+
</svg>
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 880 420" font-family="'Segoe UI', system-ui, -apple-system, sans-serif">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="bg" x1="0" y1="0" x2="0" y2="1">
|
|
4
|
+
<stop offset="0%" stop-color="#0d1117"/>
|
|
5
|
+
<stop offset="100%" stop-color="#161b22"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
<marker id="arr" markerWidth="8" markerHeight="6" refX="8" refY="3" orient="auto"><path d="M0,0 L8,3 L0,6" fill="#58a6ff"/></marker>
|
|
8
|
+
<marker id="arrG" markerWidth="8" markerHeight="6" refX="8" refY="3" orient="auto"><path d="M0,0 L8,3 L0,6" fill="#3fb950"/></marker>
|
|
9
|
+
<marker id="arrO" markerWidth="8" markerHeight="6" refX="8" refY="3" orient="auto"><path d="M0,0 L8,3 L0,6" fill="#f0883e"/></marker>
|
|
10
|
+
<marker id="arrP" markerWidth="8" markerHeight="6" refX="8" refY="3" orient="auto"><path d="M0,0 L8,3 L0,6" fill="#8957e5"/></marker>
|
|
11
|
+
</defs>
|
|
12
|
+
|
|
13
|
+
<rect width="880" height="420" fill="url(#bg)" rx="12"/>
|
|
14
|
+
|
|
15
|
+
<text x="440" y="34" text-anchor="middle" fill="#e6edf3" font-size="18" font-weight="700">Task Lifecycle - Message to Response</text>
|
|
16
|
+
|
|
17
|
+
<!-- Nodes -->
|
|
18
|
+
<!-- User -->
|
|
19
|
+
<circle cx="60" cy="200" r="28" fill="#1a2332" stroke="#58a6ff" stroke-width="1.5"/>
|
|
20
|
+
<text x="60" y="196" text-anchor="middle" fill="#58a6ff" font-size="10" font-weight="700">User</text>
|
|
21
|
+
<text x="60" y="210" text-anchor="middle" fill="#8b949e" font-size="9">(Telegram)</text>
|
|
22
|
+
|
|
23
|
+
<!-- Channel -->
|
|
24
|
+
<rect x="120" y="174" width="90" height="52" rx="8" fill="#1a2332" stroke="#2f81f7" stroke-width="1.5"/>
|
|
25
|
+
<text x="165" y="204" text-anchor="middle" fill="#2f81f7" font-size="12" font-weight="600">Channel</text>
|
|
26
|
+
|
|
27
|
+
<!-- TaskQueue -->
|
|
28
|
+
<rect x="245" y="174" width="100" height="52" rx="8" fill="#1a2332" stroke="#3fb950" stroke-width="1.5"/>
|
|
29
|
+
<text x="295" y="204" text-anchor="middle" fill="#3fb950" font-size="12" font-weight="600">TaskQueue</text>
|
|
30
|
+
|
|
31
|
+
<!-- RequestContext -->
|
|
32
|
+
<rect x="380" y="174" width="110" height="52" rx="8" fill="#1a2332" stroke="#8957e5" stroke-width="1.5"/>
|
|
33
|
+
<text x="435" y="198" text-anchor="middle" fill="#8957e5" font-size="11" font-weight="600">Request</text>
|
|
34
|
+
<text x="435" y="214" text-anchor="middle" fill="#8957e5" font-size="11" font-weight="600">Context</text>
|
|
35
|
+
|
|
36
|
+
<!-- AgentLoop -->
|
|
37
|
+
<rect x="525" y="174" width="100" height="52" rx="8" fill="#1a2332" stroke="#58a6ff" stroke-width="1.5"/>
|
|
38
|
+
<text x="575" y="204" text-anchor="middle" fill="#58a6ff" font-size="12" font-weight="600">AgentLoop</text>
|
|
39
|
+
|
|
40
|
+
<!-- Tools -->
|
|
41
|
+
<rect x="665" y="120" width="80" height="44" rx="8" fill="#1a2332" stroke="#f0883e" stroke-width="1.5"/>
|
|
42
|
+
<text x="705" y="146" text-anchor="middle" fill="#f0883e" font-size="12" font-weight="600">Tools</text>
|
|
43
|
+
|
|
44
|
+
<!-- MCP -->
|
|
45
|
+
<rect x="665" y="236" width="80" height="44" rx="8" fill="#1a2332" stroke="#3fb950" stroke-width="1.5"/>
|
|
46
|
+
<text x="705" y="262" text-anchor="middle" fill="#3fb950" font-size="12" font-weight="600">MCP</text>
|
|
47
|
+
|
|
48
|
+
<!-- Arrows -->
|
|
49
|
+
<line x1="88" y1="200" x2="118" y2="200" stroke="#58a6ff" stroke-width="1.5" marker-end="url(#arr)"/>
|
|
50
|
+
<line x1="210" y1="200" x2="243" y2="200" stroke="#2f81f7" stroke-width="1.5" marker-end="url(#arr)"/>
|
|
51
|
+
<line x1="345" y1="200" x2="378" y2="200" stroke="#3fb950" stroke-width="1.5" marker-end="url(#arrG)"/>
|
|
52
|
+
<line x1="490" y1="200" x2="523" y2="200" stroke="#8957e5" stroke-width="1.5" marker-end="url(#arrP)"/>
|
|
53
|
+
<line x1="625" y1="185" x2="663" y2="150" stroke="#f0883e" stroke-width="1.5" marker-end="url(#arrO)"/>
|
|
54
|
+
<line x1="625" y1="215" x2="663" y2="252" stroke="#3fb950" stroke-width="1.5" marker-end="url(#arrG)"/>
|
|
55
|
+
|
|
56
|
+
<!-- Return arrows (dashed) -->
|
|
57
|
+
<line x1="705" y1="120" x2="575" y2="82" stroke="#f0883e" stroke-width="1" stroke-dasharray="4,3"/>
|
|
58
|
+
<line x1="705" y1="280" x2="575" y2="310" stroke="#3fb950" stroke-width="1" stroke-dasharray="4,3"/>
|
|
59
|
+
|
|
60
|
+
<!-- Loop back to user -->
|
|
61
|
+
<path d="M 525,226 L 525,340 L 60,340 L 60,228" fill="none" stroke="#3fb950" stroke-width="1.5" stroke-dasharray="6,3" marker-end="url(#arrG)"/>
|
|
62
|
+
|
|
63
|
+
<!-- Labels on arrows -->
|
|
64
|
+
<text x="105" y="162" text-anchor="middle" fill="#8b949e" font-size="9">"Fix the auth bug"</text>
|
|
65
|
+
<text x="228" y="168" text-anchor="middle" fill="#8b949e" font-size="9">enqueue</text>
|
|
66
|
+
<text x="365" y="168" text-anchor="middle" fill="#8b949e" font-size="9">run</text>
|
|
67
|
+
<text x="510" y="168" text-anchor="middle" fill="#8b949e" font-size="9">loop</text>
|
|
68
|
+
<text x="640" y="130" text-anchor="middle" fill="#8b949e" font-size="9">readFile, editFile</text>
|
|
69
|
+
<text x="640" y="246" text-anchor="middle" fill="#8b949e" font-size="9">useMCP(github)</text>
|
|
70
|
+
|
|
71
|
+
<!-- Result label -->
|
|
72
|
+
<text x="290" y="358" text-anchor="middle" fill="#3fb950" font-size="11" font-weight="600">"Fixed auth bug, opened PR #42"</text>
|
|
73
|
+
|
|
74
|
+
<!-- Steps legend -->
|
|
75
|
+
<rect x="60" y="374" width="760" height="34" rx="6" fill="#1a2332" stroke="#30363d" stroke-width="1"/>
|
|
76
|
+
<text x="440" y="396" text-anchor="middle" fill="#8b949e" font-size="11">Message → Channel → TaskQueue → RequestContext (isolation) → AgentLoop (tool calls) → Response</text>
|
|
77
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: _template
|
|
3
|
+
name: Skill Template
|
|
4
|
+
description: Copy this folder to add a new skill. Edit the frontmatter and body.
|
|
5
|
+
triggers: []
|
|
6
|
+
enabled: false
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Skill body
|
|
10
|
+
|
|
11
|
+
Markdown content the agent reads when this skill is loaded. Keep concise — only what the agent needs to know to act, not encyclopaedia background.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: api-development
|
|
3
|
+
description: REST API design, endpoint implementation, request validation, error handling
|
|
4
|
+
triggers: api, rest, endpoint, route, controller, middleware, request, response, http, express, fastify, status code, authentication, authorization, jwt, oauth, cors, rate limit
|
|
5
|
+
---
|
|
6
|
+
## Workflow: Design → Implement → Validate → Test → Document
|
|
7
|
+
|
|
8
|
+
1. **Design** - define routes, HTTP methods, request/response shapes. Follow REST conventions.
|
|
9
|
+
2. **Implement** - write handler, validation, business logic. Keep handlers thin.
|
|
10
|
+
3. **Validate** - validate request body/params/query at the boundary. Return 400 for bad input.
|
|
11
|
+
4. **Test** - `curl` or write a test. Check success + error cases + edge cases.
|
|
12
|
+
5. **Document** - update API docs or add inline route comments.
|
|
13
|
+
|
|
14
|
+
## REST Conventions
|
|
15
|
+
- `GET /items` → list, `GET /items/:id` → get one
|
|
16
|
+
- `POST /items` → create (201), `PUT /items/:id` → replace, `PATCH /items/:id` → partial update
|
|
17
|
+
- `DELETE /items/:id` → delete (204 or 200)
|
|
18
|
+
- Plural nouns for resources. No verbs in URLs.
|
|
19
|
+
|
|
20
|
+
## Status Codes
|
|
21
|
+
- 200 OK, 201 Created, 204 No Content
|
|
22
|
+
- 400 Bad Request (validation), 401 Unauthorized, 403 Forbidden, 404 Not Found, 409 Conflict
|
|
23
|
+
- 429 Too Many Requests, 500 Internal Server Error
|
|
24
|
+
|
|
25
|
+
## Error Format
|
|
26
|
+
```json
|
|
27
|
+
{ "error": { "message": "human readable", "code": "MACHINE_CODE", "details": {} } }
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Security
|
|
31
|
+
- Validate all input at the boundary - never trust client data
|
|
32
|
+
- Use parameterized queries (no SQL injection)
|
|
33
|
+
- Rate limit public endpoints
|
|
34
|
+
- Don't expose stack traces in production errors
|
|
35
|
+
- Authenticate before authorize
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: apple-notes
|
|
3
|
+
description: Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks Daemora to add a note, list notes, search notes, or manage note folders.
|
|
4
|
+
homepage: https://github.com/antoniorodr/memo
|
|
5
|
+
metadata:
|
|
6
|
+
{
|
|
7
|
+
"daemora":
|
|
8
|
+
{
|
|
9
|
+
"emoji": "📝",
|
|
10
|
+
"os": ["darwin"],
|
|
11
|
+
"requires": { "bins": ["memo"] },
|
|
12
|
+
"install":
|
|
13
|
+
[
|
|
14
|
+
{
|
|
15
|
+
"id": "brew",
|
|
16
|
+
"kind": "brew",
|
|
17
|
+
"formula": "antoniorodr/memo/memo",
|
|
18
|
+
"bins": ["memo"],
|
|
19
|
+
"label": "Install memo via Homebrew",
|
|
20
|
+
},
|
|
21
|
+
],
|
|
22
|
+
},
|
|
23
|
+
}
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
# Apple Notes CLI
|
|
27
|
+
|
|
28
|
+
Use `memo notes` to manage Apple Notes directly from the terminal. Create, view, edit, delete, search, move notes between folders, and export to HTML/Markdown.
|
|
29
|
+
|
|
30
|
+
Setup
|
|
31
|
+
|
|
32
|
+
- Install (Homebrew): `brew tap antoniorodr/memo && brew install antoniorodr/memo/memo`
|
|
33
|
+
- Manual (pip): `pip install .` (after cloning the repo)
|
|
34
|
+
- macOS-only; if prompted, grant Automation access to Notes.app.
|
|
35
|
+
|
|
36
|
+
View Notes
|
|
37
|
+
|
|
38
|
+
- List all notes: `memo notes`
|
|
39
|
+
- Filter by folder: `memo notes -f "Folder Name"`
|
|
40
|
+
- Search notes (fuzzy): `memo notes -s "query"`
|
|
41
|
+
|
|
42
|
+
Create Notes
|
|
43
|
+
|
|
44
|
+
- Add a new note: `memo notes -a`
|
|
45
|
+
- Opens an interactive editor to compose the note.
|
|
46
|
+
- Quick add with title: `memo notes -a "Note Title"`
|
|
47
|
+
|
|
48
|
+
Edit Notes
|
|
49
|
+
|
|
50
|
+
- Edit existing note: `memo notes -e`
|
|
51
|
+
- Interactive selection of note to edit.
|
|
52
|
+
|
|
53
|
+
Delete Notes
|
|
54
|
+
|
|
55
|
+
- Delete a note: `memo notes -d`
|
|
56
|
+
- Interactive selection of note to delete.
|
|
57
|
+
|
|
58
|
+
Move Notes
|
|
59
|
+
|
|
60
|
+
- Move note to folder: `memo notes -m`
|
|
61
|
+
- Interactive selection of note and destination folder.
|
|
62
|
+
|
|
63
|
+
Export Notes
|
|
64
|
+
|
|
65
|
+
- Export to HTML/Markdown: `memo notes -ex`
|
|
66
|
+
- Exports selected note; uses Mistune for markdown processing.
|
|
67
|
+
|
|
68
|
+
Limitations
|
|
69
|
+
|
|
70
|
+
- Cannot edit notes containing images or attachments.
|
|
71
|
+
- Interactive prompts may require terminal access.
|
|
72
|
+
|
|
73
|
+
Notes
|
|
74
|
+
|
|
75
|
+
- macOS-only.
|
|
76
|
+
- Requires Apple Notes.app to be accessible.
|
|
77
|
+
- For automation, grant permissions in System Settings > Privacy & Security > Automation.
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: apple-reminders
|
|
3
|
+
description: Manage Apple Reminders via remindctl CLI (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output.
|
|
4
|
+
homepage: https://github.com/steipete/remindctl
|
|
5
|
+
metadata:
|
|
6
|
+
{
|
|
7
|
+
"daemora":
|
|
8
|
+
{
|
|
9
|
+
"emoji": "⏰",
|
|
10
|
+
"os": ["darwin"],
|
|
11
|
+
"requires": { "bins": ["remindctl"] },
|
|
12
|
+
"install":
|
|
13
|
+
[
|
|
14
|
+
{
|
|
15
|
+
"id": "brew",
|
|
16
|
+
"kind": "brew",
|
|
17
|
+
"formula": "steipete/tap/remindctl",
|
|
18
|
+
"bins": ["remindctl"],
|
|
19
|
+
"label": "Install remindctl via Homebrew",
|
|
20
|
+
},
|
|
21
|
+
],
|
|
22
|
+
},
|
|
23
|
+
}
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
# Apple Reminders CLI (remindctl)
|
|
27
|
+
|
|
28
|
+
Use `remindctl` to manage Apple Reminders directly from the terminal.
|
|
29
|
+
|
|
30
|
+
## When to Use
|
|
31
|
+
|
|
32
|
+
✅ **USE this skill when:**
|
|
33
|
+
|
|
34
|
+
- User explicitly mentions "reminder" or "Reminders app"
|
|
35
|
+
- Creating personal to-dos with due dates that sync to iOS
|
|
36
|
+
- Managing Apple Reminders lists
|
|
37
|
+
- User wants tasks to appear in their iPhone/iPad Reminders app
|
|
38
|
+
|
|
39
|
+
## When NOT to Use
|
|
40
|
+
|
|
41
|
+
❌ **DON'T use this skill when:**
|
|
42
|
+
|
|
43
|
+
- Scheduling Daemora tasks or alerts → use `cron` tool with systemEvent instead
|
|
44
|
+
- Calendar events or appointments → use Apple Calendar
|
|
45
|
+
- Project/work task management → use Notion, GitHub Issues, or task queue
|
|
46
|
+
- One-time notifications → use `cron` tool for timed alerts
|
|
47
|
+
- User says "remind me" but means an Daemora alert → clarify first
|
|
48
|
+
|
|
49
|
+
## Setup
|
|
50
|
+
|
|
51
|
+
- Install: `brew install steipete/tap/remindctl`
|
|
52
|
+
- macOS-only; grant Reminders permission when prompted
|
|
53
|
+
- Check status: `remindctl status`
|
|
54
|
+
- Request access: `remindctl authorize`
|
|
55
|
+
|
|
56
|
+
## Common Commands
|
|
57
|
+
|
|
58
|
+
### View Reminders
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
remindctl # Today's reminders
|
|
62
|
+
remindctl today # Today
|
|
63
|
+
remindctl tomorrow # Tomorrow
|
|
64
|
+
remindctl week # This week
|
|
65
|
+
remindctl overdue # Past due
|
|
66
|
+
remindctl all # Everything
|
|
67
|
+
remindctl 2026-01-04 # Specific date
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### Manage Lists
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
remindctl list # List all lists
|
|
74
|
+
remindctl list Work # Show specific list
|
|
75
|
+
remindctl list Projects --create # Create list
|
|
76
|
+
remindctl list Work --delete # Delete list
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### Create Reminders
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
remindctl add "Buy milk"
|
|
83
|
+
remindctl add --title "Call mom" --list Personal --due tomorrow
|
|
84
|
+
remindctl add --title "Meeting prep" --due "2026-02-15 09:00"
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
### Complete/Delete
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
remindctl complete 1 2 3 # Complete by ID
|
|
91
|
+
remindctl delete 4A83 --force # Delete by ID
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### Output Formats
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
remindctl today --json # JSON for scripting
|
|
98
|
+
remindctl today --plain # TSV format
|
|
99
|
+
remindctl today --quiet # Counts only
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
## Date Formats
|
|
103
|
+
|
|
104
|
+
Accepted by `--due` and date filters:
|
|
105
|
+
|
|
106
|
+
- `today`, `tomorrow`, `yesterday`
|
|
107
|
+
- `YYYY-MM-DD`
|
|
108
|
+
- `YYYY-MM-DD HH:mm`
|
|
109
|
+
- ISO 8601 (`2026-01-04T12:34:56Z`)
|
|
110
|
+
|
|
111
|
+
## Example: Clarifying User Intent
|
|
112
|
+
|
|
113
|
+
User: "Remind me to check on the deploy in 2 hours"
|
|
114
|
+
|
|
115
|
+
**Ask:** "Do you want this in Apple Reminders (syncs to your phone) or as an Daemora alert (I'll message you here)?"
|
|
116
|
+
|
|
117
|
+
- Apple Reminders → use this skill
|
|
118
|
+
- Daemora alert → use `cron` tool with systemEvent
|