luca 3.0.0 → 3.1.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/.github/workflows/release.yaml +1 -0
- package/CLAUDE.md +10 -2
- package/README.md +130 -112
- package/assistants/codingAssistant/CORE.md +6 -1
- package/assistants/codingAssistant/hooks.ts +1 -1
- package/assistants/inkbot/hooks.ts +1 -1
- package/assistants/inkbot/tools.ts +1 -1
- package/bun.lock +264 -321
- package/commands/audit-docs.ts +2 -2
- package/commands/build-bootstrap.ts +2 -3
- package/commands/build-python-bridge.ts +2 -3
- package/commands/build-scaffolds.ts +2 -3
- package/commands/bundle-consumer-project.ts +521 -0
- package/commands/generate-api-docs.ts +2 -2
- package/commands/inkbot.ts +2 -2
- package/commands/release.ts +2 -2
- package/commands/social.ts +137 -0
- package/commands/try-all-challenges.ts +3 -3
- package/commands/try-challenge.ts +3 -3
- package/datasets/lora/agentic-loop-session-candidates.jsonl +91 -0
- package/datasets/lora/agentic-loop-session-curation-summary.json +123 -0
- package/datasets/lora/luca-session-candidates.jsonl +29 -0
- package/datasets/lora/luca-session-curation-summary.json +121 -0
- package/datasets/lora/review-batch-1.jsonl +30 -0
- package/datasets/lora/review-manifest.json +41 -0
- package/datasets/lora/review-queue.jsonl +120 -0
- package/datasets/lora/review-schema.json +134 -0
- package/datasets/lora/review-template.jsonl +2 -0
- package/datasets/lora/review-ui.html +725 -0
- package/dist/agi/container.server.d.ts +2 -2
- package/dist/agi/features/assistant.d.ts +2 -2
- package/dist/agi/features/assistants-manager.d.ts +1 -1
- package/dist/agi/features/autonomous-assistant.d.ts +1 -1
- package/dist/agi/features/browser-use.d.ts +1 -1
- package/dist/agi/features/claude-code.d.ts +1 -1
- package/dist/agi/features/conversation-history.d.ts +2 -2
- package/dist/agi/features/conversation.d.ts +1 -1
- package/dist/agi/features/docs-reader.d.ts +1 -1
- package/dist/agi/features/file-tools.d.ts +1 -1
- package/dist/agi/features/luca-coder.d.ts +1 -1
- package/dist/agi/features/openai-codex.d.ts +1 -1
- package/dist/agi/features/skills-library.d.ts +1 -1
- package/dist/clients/civitai/index.d.ts +4 -4
- package/dist/clients/client-template.d.ts +4 -4
- package/dist/clients/comfyui/index.d.ts +2 -2
- package/dist/clients/elevenlabs/index.d.ts +2 -2
- package/dist/clients/openai/index.d.ts +2 -2
- package/dist/clients/supabase/index.d.ts +3 -3
- package/dist/command.d.ts +1 -1
- package/dist/node/container.d.ts +1 -1
- package/dist/node/features/helpers.d.ts +3 -3
- package/dist/node/features/semantic-search.d.ts +1 -1
- package/dist/node/features/vm.d.ts +3 -3
- package/dist/node.d.ts +1 -1
- package/dist/scaffolds/generated.d.ts +1 -1
- package/dist/selector.d.ts +1 -1
- package/features/cipher-social.ts +493 -0
- package/index.html +217 -190
- package/luca.console.ts +1 -1
- package/package.json +7 -2
- package/public/index.html +217 -190
- package/public/slides-ai-native.html +1 -1
- package/public/slides-intro.html +2 -2
- package/scripts/curate-claude-sessions.ts +561 -0
- package/scripts/examples/ask-luca-expert.ts +1 -1
- package/scripts/examples/assistant-questions.ts +1 -1
- package/scripts/examples/excalidraw-expert.ts +1 -1
- package/scripts/examples/file-manager.ts +1 -1
- package/scripts/examples/ideas.ts +1 -1
- package/scripts/examples/interactive-chat.ts +1 -1
- package/scripts/examples/opening-a-web-browser.ts +1 -1
- package/scripts/examples/telegram-bot.ts +1 -1
- package/scripts/examples/using-assistant-with-mcp.ts +1 -1
- package/scripts/examples/using-claude-code.ts +1 -1
- package/scripts/examples/using-contentdb.ts +2 -2
- package/scripts/examples/using-conversations.ts +1 -1
- package/scripts/examples/using-disk-cache.ts +1 -1
- package/scripts/examples/using-docker-shell.ts +1 -1
- package/scripts/examples/using-elevenlabs.ts +1 -1
- package/scripts/examples/using-google-calendar.ts +1 -1
- package/scripts/examples/using-google-docs.ts +1 -1
- package/scripts/examples/using-google-drive.ts +1 -1
- package/scripts/examples/using-google-sheets.ts +1 -1
- package/scripts/examples/using-nlp.ts +1 -1
- package/scripts/examples/using-ollama.ts +1 -1
- package/scripts/examples/using-postgres.ts +1 -1
- package/scripts/examples/using-runpod.ts +1 -1
- package/scripts/examples/using-tts.ts +1 -1
- package/scripts/scaffold.ts +5 -5
- package/scripts/scratch.ts +1 -1
- package/scripts/test-assistant-hooks.ts +1 -1
- package/scripts/test-docs-reader.ts +1 -1
- package/src/agi/container.server.ts +6 -2
- package/src/agi/features/agent-memory.ts +25 -25
- package/src/agi/features/assistant.ts +34 -5
- package/src/agi/features/assistants-manager.ts +122 -6
- package/src/agi/features/autonomous-assistant.ts +1 -1
- package/src/agi/features/browser-use.ts +20 -1
- package/src/agi/features/claude-code.ts +51 -5
- package/src/agi/features/coding-tools.ts +1 -1
- package/src/agi/features/conversation-history.ts +181 -4
- package/src/agi/features/conversation.ts +186 -15
- package/src/agi/features/docs-reader.ts +2 -2
- package/src/agi/features/file-tools.ts +49 -2
- package/src/agi/features/luca-coder.ts +7 -5
- package/src/agi/features/mcp-bridge.ts +532 -0
- package/src/agi/features/openai-codex.ts +2 -2
- package/src/agi/features/skills-library.ts +131 -52
- package/src/agi/lib/token-counter.ts +80 -0
- package/src/bootstrap/generated.ts +56 -57
- package/src/browser.ts +1 -1
- package/src/cli/build-info.ts +2 -2
- package/src/cli/cli.ts +2 -2
- package/src/clients/civitai/index.ts +5 -5
- package/src/clients/client-template.ts +4 -4
- package/src/clients/comfyui/index.ts +4 -4
- package/src/clients/elevenlabs/index.ts +4 -4
- package/src/clients/openai/index.ts +7 -7
- package/src/clients/supabase/index.ts +4 -4
- package/src/clients/voicebox/index.ts +4 -4
- package/src/command.ts +2 -1
- package/src/commands/chat.ts +1 -0
- package/src/commands/eval.ts +2 -56
- package/src/commands/introspect.ts +1 -1
- package/src/commands/prompt.ts +41 -9
- package/src/container-describer.ts +8 -1
- package/src/container.ts +13 -0
- package/src/entity.ts +2 -2
- package/src/helper.ts +1 -1
- package/src/introspection/generated.agi.ts +29596 -27654
- package/src/introspection/generated.node.ts +20284 -19247
- package/src/introspection/generated.web.ts +605 -584
- package/src/introspection/scan.ts +11 -6
- package/src/node/container.ts +9 -1
- package/src/node/features/content-db.ts +39 -2
- package/src/node/features/display-result.ts +57 -0
- package/src/node/features/helpers.ts +46 -7
- package/src/node/features/python.ts +25 -19
- package/src/node/features/repl.ts +1 -1
- package/src/node/features/secure-shell.ts +11 -17
- package/src/node/features/semantic-search.ts +2 -2
- package/src/node/features/socket-repl.ts +336 -0
- package/src/node/features/telnyx-assistant-connector.ts +1206 -0
- package/src/node/features/transpiler.ts +2 -3
- package/src/node/features/ui.ts +5 -0
- package/src/node/features/vm.ts +20 -3
- package/src/node.ts +3 -3
- package/src/python/generated.ts +0 -1
- package/src/scaffolds/generated.ts +82 -83
- package/src/selector.ts +1 -1
- package/src/servers/express.ts +1 -1
- package/src/web/features/helpers.ts +22 -0
- package/tsconfig.json +12 -12
- package/docs/CLI.md +0 -335
- package/docs/CNAME +0 -1
- package/docs/README.md +0 -60
- package/docs/TABLE-OF-CONTENTS.md +0 -183
- package/docs/apis/clients/elevenlabs.md +0 -308
- package/docs/apis/clients/graph.md +0 -107
- package/docs/apis/clients/openai.md +0 -429
- package/docs/apis/clients/rest.md +0 -161
- package/docs/apis/clients/websocket.md +0 -174
- package/docs/apis/features/agi/assistant.md +0 -625
- package/docs/apis/features/agi/assistants-manager.md +0 -282
- package/docs/apis/features/agi/auto-assistant.md +0 -279
- package/docs/apis/features/agi/browser-use.md +0 -802
- package/docs/apis/features/agi/claude-code.md +0 -884
- package/docs/apis/features/agi/conversation-history.md +0 -364
- package/docs/apis/features/agi/conversation.md +0 -548
- package/docs/apis/features/agi/docs-reader.md +0 -99
- package/docs/apis/features/agi/file-tools.md +0 -163
- package/docs/apis/features/agi/luca-coder.md +0 -407
- package/docs/apis/features/agi/openai-codex.md +0 -396
- package/docs/apis/features/agi/openapi.md +0 -138
- package/docs/apis/features/agi/semantic-search.md +0 -387
- package/docs/apis/features/agi/skills-library.md +0 -239
- package/docs/apis/features/node/container-link.md +0 -192
- package/docs/apis/features/node/content-db.md +0 -450
- package/docs/apis/features/node/disk-cache.md +0 -379
- package/docs/apis/features/node/dns.md +0 -652
- package/docs/apis/features/node/docker.md +0 -706
- package/docs/apis/features/node/downloader.md +0 -81
- package/docs/apis/features/node/esbuild.md +0 -60
- package/docs/apis/features/node/file-manager.md +0 -191
- package/docs/apis/features/node/fs.md +0 -1217
- package/docs/apis/features/node/git.md +0 -371
- package/docs/apis/features/node/google-auth.md +0 -193
- package/docs/apis/features/node/google-calendar.md +0 -202
- package/docs/apis/features/node/google-docs.md +0 -173
- package/docs/apis/features/node/google-drive.md +0 -246
- package/docs/apis/features/node/google-mail.md +0 -214
- package/docs/apis/features/node/google-sheets.md +0 -194
- package/docs/apis/features/node/grep.md +0 -292
- package/docs/apis/features/node/helpers.md +0 -164
- package/docs/apis/features/node/ink.md +0 -334
- package/docs/apis/features/node/ipc-socket.md +0 -249
- package/docs/apis/features/node/json-tree.md +0 -86
- package/docs/apis/features/node/networking.md +0 -316
- package/docs/apis/features/node/nlp.md +0 -133
- package/docs/apis/features/node/opener.md +0 -97
- package/docs/apis/features/node/os.md +0 -146
- package/docs/apis/features/node/package-finder.md +0 -392
- package/docs/apis/features/node/postgres.md +0 -234
- package/docs/apis/features/node/proc.md +0 -399
- package/docs/apis/features/node/process-manager.md +0 -305
- package/docs/apis/features/node/python.md +0 -604
- package/docs/apis/features/node/redis.md +0 -380
- package/docs/apis/features/node/repl.md +0 -88
- package/docs/apis/features/node/runpod.md +0 -674
- package/docs/apis/features/node/secure-shell.md +0 -176
- package/docs/apis/features/node/semantic-search.md +0 -408
- package/docs/apis/features/node/sqlite.md +0 -233
- package/docs/apis/features/node/telegram.md +0 -279
- package/docs/apis/features/node/transpiler.md +0 -74
- package/docs/apis/features/node/tts.md +0 -133
- package/docs/apis/features/node/ui.md +0 -701
- package/docs/apis/features/node/vault.md +0 -59
- package/docs/apis/features/node/vm.md +0 -75
- package/docs/apis/features/node/yaml-tree.md +0 -85
- package/docs/apis/features/node/yaml.md +0 -176
- package/docs/apis/features/web/asset-loader.md +0 -59
- package/docs/apis/features/web/container-link.md +0 -192
- package/docs/apis/features/web/esbuild.md +0 -54
- package/docs/apis/features/web/helpers.md +0 -164
- package/docs/apis/features/web/network.md +0 -44
- package/docs/apis/features/web/speech.md +0 -69
- package/docs/apis/features/web/vault.md +0 -59
- package/docs/apis/features/web/vm.md +0 -75
- package/docs/apis/features/web/voice.md +0 -84
- package/docs/apis/servers/express.md +0 -171
- package/docs/apis/servers/mcp.md +0 -238
- package/docs/apis/servers/websocket.md +0 -170
- package/docs/bootstrap/CLAUDE.md +0 -101
- package/docs/bootstrap/SKILL.md +0 -341
- package/docs/bootstrap/templates/about-command.ts +0 -41
- package/docs/bootstrap/templates/docs-models.ts +0 -22
- package/docs/bootstrap/templates/docs-readme.md +0 -43
- package/docs/bootstrap/templates/example-feature.ts +0 -53
- package/docs/bootstrap/templates/health-endpoint.ts +0 -15
- package/docs/bootstrap/templates/luca-cli.ts +0 -30
- package/docs/bootstrap/templates/runme.md +0 -54
- package/docs/challenges/caching-proxy.md +0 -16
- package/docs/challenges/content-db-round-trip.md +0 -14
- package/docs/challenges/custom-command.md +0 -9
- package/docs/challenges/file-watcher-pipeline.md +0 -11
- package/docs/challenges/grep-audit-report.md +0 -15
- package/docs/challenges/multi-feature-dashboard.md +0 -14
- package/docs/challenges/process-orchestrator.md +0 -17
- package/docs/challenges/rest-api-server-with-client.md +0 -12
- package/docs/challenges/script-runner-with-vm.md +0 -11
- package/docs/challenges/simple-rest-api.md +0 -15
- package/docs/challenges/websocket-serve-and-client.md +0 -11
- package/docs/challenges/yaml-config-system.md +0 -14
- package/docs/command-system-overhaul.md +0 -94
- package/docs/documentation-audit.md +0 -134
- package/docs/examples/assistant/CORE.md +0 -18
- package/docs/examples/assistant/hooks.ts +0 -3
- package/docs/examples/assistant/tools.ts +0 -10
- package/docs/examples/assistant-hooks-reference.ts +0 -171
- package/docs/examples/assistant-with-process-manager.md +0 -84
- package/docs/examples/content-db.md +0 -77
- package/docs/examples/disk-cache.md +0 -83
- package/docs/examples/docker.md +0 -101
- package/docs/examples/downloader.md +0 -70
- package/docs/examples/entity.md +0 -124
- package/docs/examples/esbuild.md +0 -80
- package/docs/examples/feature-as-tool-provider.md +0 -143
- package/docs/examples/file-manager.md +0 -82
- package/docs/examples/fs.md +0 -83
- package/docs/examples/git.md +0 -85
- package/docs/examples/google-auth.md +0 -88
- package/docs/examples/google-calendar.md +0 -94
- package/docs/examples/google-docs.md +0 -82
- package/docs/examples/google-drive.md +0 -96
- package/docs/examples/google-sheets.md +0 -95
- package/docs/examples/grep.md +0 -85
- package/docs/examples/ink-blocks.md +0 -75
- package/docs/examples/ink-renderer.md +0 -41
- package/docs/examples/ink.md +0 -103
- package/docs/examples/ipc-socket.md +0 -103
- package/docs/examples/json-tree.md +0 -91
- package/docs/examples/networking.md +0 -58
- package/docs/examples/nlp.md +0 -91
- package/docs/examples/opener.md +0 -78
- package/docs/examples/os.md +0 -72
- package/docs/examples/package-finder.md +0 -89
- package/docs/examples/postgres.md +0 -91
- package/docs/examples/proc.md +0 -81
- package/docs/examples/process-manager.md +0 -79
- package/docs/examples/python.md +0 -132
- package/docs/examples/repl.md +0 -93
- package/docs/examples/runpod.md +0 -119
- package/docs/examples/secure-shell.md +0 -92
- package/docs/examples/sqlite.md +0 -86
- package/docs/examples/structured-output-with-assistants.md +0 -144
- package/docs/examples/telegram.md +0 -77
- package/docs/examples/tts.md +0 -86
- package/docs/examples/ui.md +0 -80
- package/docs/examples/vault.md +0 -70
- package/docs/examples/vm.md +0 -86
- package/docs/examples/websocket-ask-and-reply-example.md +0 -128
- package/docs/examples/yaml-tree.md +0 -93
- package/docs/examples/yaml.md +0 -104
- package/docs/ideas/assistant-factory-pattern.md +0 -142
- package/docs/in-memory-fs.md +0 -4
- package/docs/introspection-audit.md +0 -49
- package/docs/introspection.md +0 -164
- package/docs/mcp/readme.md +0 -162
- package/docs/models.ts +0 -41
- package/docs/philosophy.md +0 -86
- package/docs/principles.md +0 -7
- package/docs/prompts/audit-codebase-for-failures-to-use-the-container.md +0 -34
- package/docs/prompts/check-for-undocumented-features.md +0 -27
- package/docs/prompts/mcp-test-easy-command.md +0 -27
- package/docs/scaffolds/client.md +0 -149
- package/docs/scaffolds/command.md +0 -120
- package/docs/scaffolds/endpoint.md +0 -171
- package/docs/scaffolds/feature.md +0 -158
- package/docs/scaffolds/selector.md +0 -91
- package/docs/scaffolds/server.md +0 -196
- package/docs/selectors.md +0 -115
- package/docs/sessions/custom-command/attempt-log-2.md +0 -195
- package/docs/sessions/file-watcher-pipeline/attempt-log-1.md +0 -728
- package/docs/sessions/file-watcher-pipeline/attempt-log-2.md +0 -555
- package/docs/sessions/grep-audit-report/attempt-log-1.md +0 -289
- package/docs/sessions/multi-feature-dashboard/attempt-log-2.md +0 -679
- package/docs/sessions/rest-api-server-with-client/attempt-log-1.md +0 -1
- package/docs/sessions/rest-api-server-with-client/attempt-log-3.md +0 -920
- package/docs/sessions/simple-rest-api/attempt-log-1.md +0 -593
- package/docs/sessions/websocket-serve-and-client/attempt-log-2.md +0 -995
- package/docs/tutorials/00-bootstrap.md +0 -166
- package/docs/tutorials/01-getting-started.md +0 -106
- package/docs/tutorials/02-container.md +0 -210
- package/docs/tutorials/03-scripts.md +0 -194
- package/docs/tutorials/04-features-overview.md +0 -196
- package/docs/tutorials/05-state-and-events.md +0 -171
- package/docs/tutorials/06-servers.md +0 -157
- package/docs/tutorials/07-endpoints.md +0 -198
- package/docs/tutorials/08-commands.md +0 -252
- package/docs/tutorials/09-clients.md +0 -162
- package/docs/tutorials/10-creating-features.md +0 -203
- package/docs/tutorials/11-contentbase.md +0 -191
- package/docs/tutorials/12-assistants.md +0 -215
- package/docs/tutorials/13-introspection.md +0 -157
- package/docs/tutorials/14-type-system.md +0 -174
- package/docs/tutorials/15-project-patterns.md +0 -222
- package/docs/tutorials/16-google-features.md +0 -534
- package/docs/tutorials/17-tui-blocks.md +0 -530
- package/docs/tutorials/18-semantic-search.md +0 -334
- package/docs/tutorials/19-python-sessions.md +0 -401
- package/docs/tutorials/20-browser-esm.md +0 -234
- package/index.ts +0 -1
- package/src/agi/endpoints/ask.ts +0 -60
- package/src/agi/endpoints/conversations/[id].ts +0 -45
- package/src/agi/endpoints/conversations.ts +0 -31
- package/src/agi/endpoints/experts.ts +0 -37
- package/test/assistant-hooks.test.ts +0 -306
- package/test/assistant.test.ts +0 -81
- package/test/bus.test.ts +0 -134
- package/test/clients-servers.test.ts +0 -217
- package/test/command.test.ts +0 -267
- package/test/container-link.test.ts +0 -274
- package/test/conversation.test.ts +0 -220
- package/test/features.test.ts +0 -160
- package/test/fork-and-research.test.ts +0 -450
- package/test/integration.test.ts +0 -787
- package/test/interceptor-chain.test.ts +0 -61
- package/test/node-container.test.ts +0 -121
- package/test/python-session.test.ts +0 -105
- package/test/rate-limit.test.ts +0 -272
- package/test/semantic-search.test.ts +0 -550
- package/test/state.test.ts +0 -121
- package/test/vm-context.test.ts +0 -146
- package/test/vm-loadmodule.test.ts +0 -213
- package/test/websocket-ask.test.ts +0 -101
- package/test-integration/assistant.test.ts +0 -138
- package/test-integration/assistants-manager.test.ts +0 -113
- package/test-integration/claude-code.test.ts +0 -98
- package/test-integration/conversation-history.test.ts +0 -205
- package/test-integration/conversation.test.ts +0 -137
- package/test-integration/elevenlabs.test.ts +0 -55
- package/test-integration/google-services.test.ts +0 -80
- package/test-integration/helpers.ts +0 -89
- package/test-integration/memory.test.ts +0 -204
- package/test-integration/openai-codex.test.ts +0 -93
- package/test-integration/runpod.test.ts +0 -58
- package/test-integration/server-endpoints.test.ts +0 -97
- package/test-integration/telegram.test.ts +0 -46
|
@@ -0,0 +1,493 @@
|
|
|
1
|
+
import { z } from 'zod'
|
|
2
|
+
import { Feature, FeatureStateSchema, FeatureOptionsSchema, FeatureEventsSchema } from 'luca'
|
|
3
|
+
import type { ContainerContext } from 'luca'
|
|
4
|
+
import { x25519 } from '@noble/curves/ed25519.js'
|
|
5
|
+
import { xchacha20poly1305 } from '@noble/ciphers/chacha.js'
|
|
6
|
+
import { blake3 } from '@noble/hashes/blake3.js'
|
|
7
|
+
import { randomBytes } from '@noble/hashes/utils.js'
|
|
8
|
+
import { Iroh, SetTagOption, BlobDownloadOptions } from '@number0/iroh'
|
|
9
|
+
import type { NodeAddr } from '@number0/iroh'
|
|
10
|
+
|
|
11
|
+
export interface BlobMeta {
|
|
12
|
+
hash: string
|
|
13
|
+
format: string
|
|
14
|
+
size: number
|
|
15
|
+
filename: string
|
|
16
|
+
nodeAddr: NodeAddr
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// Default topic — matches Cipher's public topic_to_id() Rust implementation
|
|
20
|
+
const DEFAULT_TOPIC_BYTES = Array.from(blake3(new TextEncoder().encode('cipher/content/v1')))
|
|
21
|
+
|
|
22
|
+
declare module 'luca' {
|
|
23
|
+
interface AvailableFeatures {
|
|
24
|
+
cipherSocial: typeof CipherSocialFeature
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export const CipherOptionsSchema = FeatureOptionsSchema.extend({
|
|
29
|
+
/** Name for this agent — used as display name and to namespace stored identity */
|
|
30
|
+
name: z.string().default('luca-agent').describe('Agent display name'),
|
|
31
|
+
/** Override directory for Iroh node data and identity. Defaults to ~/.luca/cipher/<name> */
|
|
32
|
+
dataDir: z.string().optional().describe('Data directory override'),
|
|
33
|
+
/**
|
|
34
|
+
* Full Iroh NodeAddr JSON objects for bootstrap peers.
|
|
35
|
+
* Each entry: { nodeId: string, relayUrl?: string, addresses?: string[] }
|
|
36
|
+
* Get this from another agent's `nodeAddr` state field.
|
|
37
|
+
*/
|
|
38
|
+
bootstrapAddrs: z.array(z.string()).default([]).describe('JSON-encoded Iroh NodeAddr objects for bootstrap'),
|
|
39
|
+
/**
|
|
40
|
+
* Private mesh identifier. All agents sharing this value subscribe to the same
|
|
41
|
+
* derived gossip topic and are invisible to agents on different meshes.
|
|
42
|
+
* Defaults to the public Cipher topic — omit only if you want interop with
|
|
43
|
+
* the Cipher desktop app.
|
|
44
|
+
*/
|
|
45
|
+
meshId: z.string().optional().describe('Private mesh ID — derives a closed gossip topic'),
|
|
46
|
+
})
|
|
47
|
+
export type CipherOptions = z.infer<typeof CipherOptionsSchema>
|
|
48
|
+
|
|
49
|
+
export const CipherStateSchema = FeatureStateSchema.extend({
|
|
50
|
+
connected: z.boolean().default(false).describe('Whether connected to the Cipher gossip mesh'),
|
|
51
|
+
nodeId: z.string().optional().describe('Iroh transport node ID'),
|
|
52
|
+
nodeAddr: z.string().optional().describe('Full Iroh NodeAddr as JSON — share with peers for bootstrapping'),
|
|
53
|
+
publicKey: z.string().optional().describe('Agent X25519 public key (base64) — share this with peers'),
|
|
54
|
+
peers: z.number().default(0).describe('Known peers seen via presence announcements'),
|
|
55
|
+
})
|
|
56
|
+
export type CipherState = z.infer<typeof CipherStateSchema>
|
|
57
|
+
|
|
58
|
+
export const CipherEventsSchema = FeatureEventsSchema.extend({
|
|
59
|
+
connected: z.tuple([z.object({
|
|
60
|
+
nodeId: z.string(),
|
|
61
|
+
publicKey: z.string(),
|
|
62
|
+
})]).describe('Connected to mesh'),
|
|
63
|
+
message: z.tuple([z.object({
|
|
64
|
+
from: z.string(),
|
|
65
|
+
payload: z.any(),
|
|
66
|
+
timestamp: z.number(),
|
|
67
|
+
})]).describe('Decrypted message received'),
|
|
68
|
+
presence: z.tuple([z.object({
|
|
69
|
+
publicKey: z.string(),
|
|
70
|
+
name: z.string(),
|
|
71
|
+
nodeId: z.string().optional(),
|
|
72
|
+
})]).describe('Peer announced presence'),
|
|
73
|
+
error: z.tuple([z.string()]).describe('Error occurred'),
|
|
74
|
+
})
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Cipher P2P feature — connects a Luca agent to the Cipher encrypted social network.
|
|
78
|
+
*
|
|
79
|
+
* Each agent gets a persistent X25519 identity. Messages are encrypted using
|
|
80
|
+
* Cipher's GossipEnvelope/SealedBox format (ephemeral X25519 ECDH + XChaCha20-Poly1305),
|
|
81
|
+
* fully compatible with the Cipher desktop app.
|
|
82
|
+
*
|
|
83
|
+
* @example
|
|
84
|
+
* ```typescript
|
|
85
|
+
* const cipher = container.feature('cipher', { name: 'planner-agent' })
|
|
86
|
+
* await cipher.connect()
|
|
87
|
+
* console.log('My public key:', cipher.publicKey)
|
|
88
|
+
*
|
|
89
|
+
* cipher.on('message', ({ from, payload }) => {
|
|
90
|
+
* console.log('Message from', from.slice(0, 8), payload)
|
|
91
|
+
* })
|
|
92
|
+
*
|
|
93
|
+
* await cipher.send(recipientPublicKey, { type: 'task', data: { ... } })
|
|
94
|
+
* ```
|
|
95
|
+
*/
|
|
96
|
+
export class CipherSocialFeature extends Feature<CipherState, CipherOptions> {
|
|
97
|
+
static override shortcut = 'features.cipherSocial' as const
|
|
98
|
+
static override stateSchema = CipherStateSchema
|
|
99
|
+
static override optionsSchema = CipherOptionsSchema
|
|
100
|
+
static override eventsSchema = CipherEventsSchema
|
|
101
|
+
static { Feature.register(this, 'cipherSocial') }
|
|
102
|
+
|
|
103
|
+
private _iroh: Awaited<ReturnType<typeof Iroh.persistent>> | null = null
|
|
104
|
+
private _sender: any = null
|
|
105
|
+
private _privateKey: Uint8Array | null = null
|
|
106
|
+
private _publicKey: Uint8Array | null = null
|
|
107
|
+
private _knownPeers: Map<string, { name: string; nodeId?: string }> = new Map()
|
|
108
|
+
|
|
109
|
+
private get fs() { return this.container.feature('fs') }
|
|
110
|
+
private get os() { return this.container.feature('os') as any }
|
|
111
|
+
|
|
112
|
+
private get topicBytes(): number[] {
|
|
113
|
+
if (this.options.meshId) {
|
|
114
|
+
return Array.from(blake3(new TextEncoder().encode(`luca/mesh/v1/${this.options.meshId}`)))
|
|
115
|
+
}
|
|
116
|
+
return DEFAULT_TOPIC_BYTES
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
private get identityPath(): string {
|
|
120
|
+
return this.container.paths.resolve(this.dataDir, 'identity.json')
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
private get irohDataDir(): string {
|
|
124
|
+
return this.container.paths.resolve(this.dataDir, 'iroh')
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/** Connect to the Cipher gossip mesh. Generates identity on first run. */
|
|
128
|
+
async connect(): Promise<void> {
|
|
129
|
+
await this.loadOrGenerateKeypair()
|
|
130
|
+
|
|
131
|
+
this.fs.ensureFolder(this.irohDataDir)
|
|
132
|
+
this._iroh = await Iroh.persistent(this.irohDataDir)
|
|
133
|
+
const nodeId = await this._iroh.net.nodeId()
|
|
134
|
+
const nodeAddr = await this._iroh.net.nodeAddr()
|
|
135
|
+
|
|
136
|
+
// Add bootstrap peer addresses so Iroh knows how to reach them
|
|
137
|
+
const bootstrapNodeIds: string[] = []
|
|
138
|
+
for (const addrJson of this.options.bootstrapAddrs) {
|
|
139
|
+
try {
|
|
140
|
+
const addr = JSON.parse(addrJson)
|
|
141
|
+
await this._iroh.net.addNodeAddr(addr)
|
|
142
|
+
bootstrapNodeIds.push(addr.nodeId)
|
|
143
|
+
} catch (e) {
|
|
144
|
+
// ignore malformed bootstrap entries
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
// When bootstrapping, wait for the joined event before considering the mesh ready.
|
|
149
|
+
// Without this, broadcast() fires before the gossip connection is established.
|
|
150
|
+
let meshReady: (() => void) | null = null
|
|
151
|
+
const meshJoined = bootstrapNodeIds.length > 0
|
|
152
|
+
? new Promise<void>(resolve => { meshReady = resolve })
|
|
153
|
+
: Promise.resolve()
|
|
154
|
+
|
|
155
|
+
this._sender = await this._iroh.gossip.subscribe(
|
|
156
|
+
this.topicBytes,
|
|
157
|
+
bootstrapNodeIds,
|
|
158
|
+
(error: Error | null, event: any) => {
|
|
159
|
+
if (error) {
|
|
160
|
+
this.emit('error', error.message)
|
|
161
|
+
return
|
|
162
|
+
}
|
|
163
|
+
if (event.joined && meshReady) {
|
|
164
|
+
meshReady()
|
|
165
|
+
meshReady = null
|
|
166
|
+
}
|
|
167
|
+
if (event.received) {
|
|
168
|
+
this.handleIncoming(event.received)
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
)
|
|
172
|
+
|
|
173
|
+
// Wait for mesh to be ready (or 8s timeout to avoid hanging forever)
|
|
174
|
+
await Promise.race([
|
|
175
|
+
meshJoined,
|
|
176
|
+
new Promise<void>(resolve => setTimeout(resolve, 8000)),
|
|
177
|
+
])
|
|
178
|
+
|
|
179
|
+
const publicKey = Buffer.from(this._publicKey!).toString('base64')
|
|
180
|
+
this.setState({ connected: true, nodeId, nodeAddr: JSON.stringify(nodeAddr), publicKey })
|
|
181
|
+
this.emit('connected', { nodeId, publicKey })
|
|
182
|
+
|
|
183
|
+
await this.announcePresence()
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* Send an encrypted message to a specific agent by their X25519 public key.
|
|
188
|
+
* The payload can be any JSON-serializable value.
|
|
189
|
+
*/
|
|
190
|
+
async send(recipientPublicKey: string, payload: any): Promise<void> {
|
|
191
|
+
if (!this._sender || !this._publicKey) throw new Error('Not connected — call connect() first')
|
|
192
|
+
|
|
193
|
+
const contentPayload = {
|
|
194
|
+
DirectMessage: {
|
|
195
|
+
content: JSON.stringify({ 'luca:v1': payload }),
|
|
196
|
+
thread_id: null,
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
const envelope = this.buildEnvelope([recipientPublicKey], contentPayload)
|
|
201
|
+
const p2pMessage = { SealedEnvelope: { envelope_json: JSON.stringify(envelope) } }
|
|
202
|
+
await this._sender.broadcast(Array.from(Buffer.from(JSON.stringify(p2pMessage))))
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
/** Broadcast presence so other agents learn your public key and name. */
|
|
206
|
+
async announcePresence(): Promise<void> {
|
|
207
|
+
if (!this._sender || !this._publicKey) return
|
|
208
|
+
const presence = {
|
|
209
|
+
Presence: {
|
|
210
|
+
public_key: Buffer.from(this._publicKey).toString('base64'),
|
|
211
|
+
display_name: this.options.name,
|
|
212
|
+
node_id: this.state.get('nodeId') ?? '',
|
|
213
|
+
timestamp: Date.now(),
|
|
214
|
+
// Required fields for Cipher protocol compat
|
|
215
|
+
user_id: this.agentUserId,
|
|
216
|
+
encryption_public_key: Buffer.from(this._publicKey).toString('base64'),
|
|
217
|
+
device_id: this.agentUserId,
|
|
218
|
+
bio: 'Luca agent',
|
|
219
|
+
profile_picture: '',
|
|
220
|
+
profile_signature: null,
|
|
221
|
+
node_addr: { node_id: this.state.get('nodeId') ?? '', relay_url: null, direct_addresses: [] },
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
await this._sender.broadcast(Array.from(Buffer.from(JSON.stringify(presence))))
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
async disconnect(): Promise<void> {
|
|
228
|
+
await this._sender?.close()
|
|
229
|
+
await this._iroh?.node.shutdown()
|
|
230
|
+
this._iroh = null
|
|
231
|
+
this._sender = null
|
|
232
|
+
this.setState({ connected: false })
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
get publicKey(): string | undefined {
|
|
236
|
+
return this.state.get('publicKey')
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
get nodeId(): string | undefined {
|
|
240
|
+
return this.state.get('nodeId')
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
/** Full NodeAddr JSON — pass this to other agents via --bootstrap-addr for immediate connectivity */
|
|
244
|
+
get nodeAddrJson(): string | undefined {
|
|
245
|
+
return this.state.get('nodeAddr')
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
get knownPeers(): Map<string, { name: string; nodeId?: string }> {
|
|
249
|
+
return this._knownPeers
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
/**
|
|
253
|
+
* Store a file as an Iroh blob. Returns a BlobMeta object that you can
|
|
254
|
+
* include in a message so the recipient can fetch the file.
|
|
255
|
+
* @param filePath Path to the file (relative to container.cwd)
|
|
256
|
+
*/
|
|
257
|
+
async storeFile(filePath: string): Promise<BlobMeta> {
|
|
258
|
+
if (!this._iroh) throw new Error('Not connected — call connect() first')
|
|
259
|
+
const absolutePath = this.container.paths.resolve(filePath)
|
|
260
|
+
const filename = absolutePath.split('/').pop() ?? filePath
|
|
261
|
+
|
|
262
|
+
const hash = await new Promise<string>((resolve, reject) => {
|
|
263
|
+
this._iroh!.blobs.addFromPath(
|
|
264
|
+
absolutePath,
|
|
265
|
+
true,
|
|
266
|
+
SetTagOption.auto(),
|
|
267
|
+
{ wrap: false },
|
|
268
|
+
(err: Error | null, progress: any) => {
|
|
269
|
+
if (err) return reject(err)
|
|
270
|
+
if (progress.allDone) resolve(progress.allDone.hash)
|
|
271
|
+
}
|
|
272
|
+
)
|
|
273
|
+
})
|
|
274
|
+
|
|
275
|
+
const size = Number(await this._iroh.blobs.size(hash))
|
|
276
|
+
const nodeAddr = await this._iroh.net.nodeAddr()
|
|
277
|
+
|
|
278
|
+
return { hash, format: 'Raw', size, filename, nodeAddr }
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
/**
|
|
282
|
+
* Store raw bytes as an Iroh blob. Useful for in-memory data like
|
|
283
|
+
* generated images, JSON exports, etc.
|
|
284
|
+
* @param data Buffer or Uint8Array to store
|
|
285
|
+
* @param filename Optional logical filename to include in the metadata
|
|
286
|
+
*/
|
|
287
|
+
async storeBytes(data: Buffer | Uint8Array, filename = 'blob'): Promise<BlobMeta> {
|
|
288
|
+
if (!this._iroh) throw new Error('Not connected — call connect() first')
|
|
289
|
+
const outcome = await this._iroh.blobs.addBytes(Array.from(data))
|
|
290
|
+
const size = Number(await this._iroh.blobs.size(outcome.hash))
|
|
291
|
+
const nodeAddr = await this._iroh.net.nodeAddr()
|
|
292
|
+
return { hash: outcome.hash, format: outcome.format, size, filename, nodeAddr }
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* Fetch a blob from a peer and return its contents as a Buffer.
|
|
297
|
+
* @param hash Blob hash from the message payload
|
|
298
|
+
* @param senderNodeAddr NodeAddr of the sender (from the message payload)
|
|
299
|
+
*/
|
|
300
|
+
async fetchBlob(hash: string, senderNodeAddr: NodeAddr): Promise<Buffer> {
|
|
301
|
+
if (!this._iroh) throw new Error('Not connected — call connect() first')
|
|
302
|
+
await this._iroh.net.addNodeAddr(senderNodeAddr)
|
|
303
|
+
const opts = new BlobDownloadOptions('Raw', [senderNodeAddr], SetTagOption.auto())
|
|
304
|
+
|
|
305
|
+
await new Promise<void>((resolve, reject) => {
|
|
306
|
+
this._iroh!.blobs.download(hash, opts, (err: Error | null, progress: any) => {
|
|
307
|
+
if (err) return reject(err)
|
|
308
|
+
if (progress.allDone) resolve()
|
|
309
|
+
})
|
|
310
|
+
})
|
|
311
|
+
|
|
312
|
+
return Buffer.from(await this._iroh.blobs.readToBytes(hash))
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
/**
|
|
316
|
+
* Fetch a blob from a peer and save it to disk.
|
|
317
|
+
* @param hash Blob hash from the message payload
|
|
318
|
+
* @param senderNodeAddr NodeAddr of the sender
|
|
319
|
+
* @param outputPath Where to save the file (relative to container.cwd)
|
|
320
|
+
*/
|
|
321
|
+
async fetchBlobToFile(hash: string, senderNodeAddr: NodeAddr, outputPath: string): Promise<void> {
|
|
322
|
+
if (!this._iroh) throw new Error('Not connected — call connect() first')
|
|
323
|
+
const absolutePath = this.container.paths.resolve(outputPath)
|
|
324
|
+
const dir = absolutePath.split('/').slice(0, -1).join('/')
|
|
325
|
+
this.fs.ensureFolder(dir)
|
|
326
|
+
|
|
327
|
+
await this._iroh.net.addNodeAddr(senderNodeAddr)
|
|
328
|
+
const opts = new BlobDownloadOptions('Raw', [senderNodeAddr], SetTagOption.auto())
|
|
329
|
+
|
|
330
|
+
await new Promise<void>((resolve, reject) => {
|
|
331
|
+
this._iroh!.blobs.download(hash, opts, (err: Error | null, progress: any) => {
|
|
332
|
+
if (err) return reject(err)
|
|
333
|
+
if (progress.allDone) resolve()
|
|
334
|
+
})
|
|
335
|
+
})
|
|
336
|
+
|
|
337
|
+
await this._iroh.blobs.writeToPath(hash, absolutePath)
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
/**
|
|
341
|
+
* Send a file to a recipient. Stores the file as a blob then sends
|
|
342
|
+
* the hash and node address so they can fetch it directly.
|
|
343
|
+
* @param recipientPublicKey Recipient's X25519 public key (base64)
|
|
344
|
+
* @param filePath Path to the file (relative to container.cwd)
|
|
345
|
+
* @param caption Optional text caption
|
|
346
|
+
*/
|
|
347
|
+
async sendFile(recipientPublicKey: string, filePath: string, caption?: string): Promise<void> {
|
|
348
|
+
const blob = await this.storeFile(filePath)
|
|
349
|
+
await this.send(recipientPublicKey, {
|
|
350
|
+
type: 'file',
|
|
351
|
+
filename: blob.filename,
|
|
352
|
+
blobHash: blob.hash,
|
|
353
|
+
blobFormat: blob.format,
|
|
354
|
+
blobNodeAddr: blob.nodeAddr,
|
|
355
|
+
size: blob.size,
|
|
356
|
+
caption: caption ?? null,
|
|
357
|
+
})
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
/**
|
|
361
|
+
* Load or generate the keypair without starting the Iroh node.
|
|
362
|
+
* Useful for printing identity without joining the network.
|
|
363
|
+
*/
|
|
364
|
+
async loadIdentity(): Promise<void> {
|
|
365
|
+
await this.loadOrGenerateKeypair()
|
|
366
|
+
this.setState({ publicKey: Buffer.from(this._publicKey!).toString('base64') })
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
get dataDir(): string {
|
|
370
|
+
if (this.options.dataDir) return this.options.dataDir
|
|
371
|
+
const home = (this.os as any).homedir
|
|
372
|
+
return this.container.paths.resolve(home, '.luca', 'cipher', this.options.name)
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
// Deterministic agent user ID derived from public key (hex prefix)
|
|
376
|
+
private get agentUserId(): string {
|
|
377
|
+
if (!this._publicKey) return 'unknown'
|
|
378
|
+
return Buffer.from(this._publicKey.slice(0, 16)).toString('hex')
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
private async loadOrGenerateKeypair(): Promise<void> {
|
|
382
|
+
this.fs.ensureFolder(this.dataDir)
|
|
383
|
+
|
|
384
|
+
if (this.fs.exists(this.identityPath)) {
|
|
385
|
+
const identity = this.fs.readJson(this.identityPath)
|
|
386
|
+
this._privateKey = new Uint8Array(Buffer.from(identity.privateKey, 'base64'))
|
|
387
|
+
this._publicKey = new Uint8Array(Buffer.from(identity.publicKey, 'base64'))
|
|
388
|
+
} else {
|
|
389
|
+
this._privateKey = x25519.utils.randomSecretKey()
|
|
390
|
+
this._publicKey = new Uint8Array(x25519.getPublicKey(this._privateKey))
|
|
391
|
+
this.fs.writeJson(this.identityPath, {
|
|
392
|
+
name: this.options.name,
|
|
393
|
+
publicKey: Buffer.from(this._publicKey).toString('base64'),
|
|
394
|
+
privateKey: Buffer.from(this._privateKey).toString('base64'),
|
|
395
|
+
createdAt: new Date().toISOString(),
|
|
396
|
+
})
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
private handleIncoming(received: { content: number[]; deliveredFrom: string }): void {
|
|
401
|
+
try {
|
|
402
|
+
const text = Buffer.from(received.content).toString('utf8')
|
|
403
|
+
const msg = JSON.parse(text)
|
|
404
|
+
|
|
405
|
+
if (msg.Presence) {
|
|
406
|
+
const p = msg.Presence
|
|
407
|
+
if (!p.public_key) return
|
|
408
|
+
this._knownPeers.set(p.public_key, { name: p.display_name ?? 'unknown', nodeId: p.node_id })
|
|
409
|
+
this.setState({ peers: this._knownPeers.size })
|
|
410
|
+
this.emit('presence', { publicKey: p.public_key, name: p.display_name ?? 'unknown', nodeId: p.node_id })
|
|
411
|
+
return
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
if (msg.SealedEnvelope) {
|
|
415
|
+
const envelope = JSON.parse(msg.SealedEnvelope.envelope_json)
|
|
416
|
+
const contentPayload = this.tryDecryptEnvelope(envelope)
|
|
417
|
+
if (!contentPayload) return
|
|
418
|
+
|
|
419
|
+
let payload = contentPayload
|
|
420
|
+
if (contentPayload.DirectMessage?.content) {
|
|
421
|
+
try {
|
|
422
|
+
const parsed = JSON.parse(contentPayload.DirectMessage.content)
|
|
423
|
+
payload = parsed['luca:v1'] ?? parsed
|
|
424
|
+
} catch {
|
|
425
|
+
payload = { type: 'text', text: contentPayload.DirectMessage.content }
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
this.emit('message', {
|
|
430
|
+
from: envelope.sender_public_key,
|
|
431
|
+
payload,
|
|
432
|
+
timestamp: envelope.timestamp,
|
|
433
|
+
})
|
|
434
|
+
}
|
|
435
|
+
} catch {
|
|
436
|
+
// ignore malformed messages
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
private buildEnvelope(recipientKeys: string[], contentPayload: any): object {
|
|
441
|
+
const sealedBoxes = recipientKeys.map(k => this.sealFor(k, contentPayload))
|
|
442
|
+
return {
|
|
443
|
+
message_id: Buffer.from(randomBytes(32)).toString('hex'),
|
|
444
|
+
timestamp: Math.floor(Date.now() / 1000),
|
|
445
|
+
content_type: 'DirectMessage',
|
|
446
|
+
sender_public_key: Buffer.from(this._publicKey!).toString('base64'),
|
|
447
|
+
sealed_boxes: sealedBoxes,
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
private sealFor(recipientPubKeyB64: string, payload: any): object {
|
|
452
|
+
const recipientPub = new Uint8Array(Buffer.from(recipientPubKeyB64, 'base64'))
|
|
453
|
+
const ephPriv = x25519.utils.randomSecretKey()
|
|
454
|
+
const ephPub = new Uint8Array(x25519.getPublicKey(ephPriv))
|
|
455
|
+
const shared = x25519.getSharedSecret(ephPriv, recipientPub)
|
|
456
|
+
const nonce = randomBytes(24)
|
|
457
|
+
const ct = xchacha20poly1305(shared, nonce).encrypt(
|
|
458
|
+
new TextEncoder().encode(JSON.stringify(payload))
|
|
459
|
+
)
|
|
460
|
+
return {
|
|
461
|
+
ephemeral_pubkey: Buffer.from(ephPub).toString('base64'),
|
|
462
|
+
recipient_hint: Buffer.from(recipientPub.slice(0, 8)).toString('hex'),
|
|
463
|
+
nonce: Buffer.from(nonce).toString('base64'),
|
|
464
|
+
ciphertext: Buffer.from(ct).toString('base64'),
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
private tryDecryptEnvelope(envelope: any): any | null {
|
|
469
|
+
if (!this._privateKey || !this._publicKey) return null
|
|
470
|
+
const myHint = Buffer.from(this._publicKey.slice(0, 8)).toString('hex')
|
|
471
|
+
for (const box of envelope.sealed_boxes ?? []) {
|
|
472
|
+
if (box.recipient_hint !== myHint) continue
|
|
473
|
+
const result = this.tryDecryptBox(box)
|
|
474
|
+
if (result !== null) return result
|
|
475
|
+
}
|
|
476
|
+
return null
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
private tryDecryptBox(box: any): any | null {
|
|
480
|
+
try {
|
|
481
|
+
const ephPub = new Uint8Array(Buffer.from(box.ephemeral_pubkey, 'base64'))
|
|
482
|
+
const shared = x25519.getSharedSecret(this._privateKey!, ephPub)
|
|
483
|
+
const nonce = new Uint8Array(Buffer.from(box.nonce, 'base64'))
|
|
484
|
+
const ct = new Uint8Array(Buffer.from(box.ciphertext, 'base64'))
|
|
485
|
+
const pt = xchacha20poly1305(shared, nonce).decrypt(ct)
|
|
486
|
+
return JSON.parse(new TextDecoder().decode(pt))
|
|
487
|
+
} catch {
|
|
488
|
+
return null
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
export default CipherSocialFeature
|