agentvault 1.0.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/.dfx/local/network-id +4 -0
- package/.next/trace +2 -0
- package/.vercel/README.txt +11 -0
- package/.vercel/project.json +1 -0
- package/AGENTS.md +43 -0
- package/CHANGELOG.md +196 -0
- package/LICENSE +21 -0
- package/PLAN_VAULT_INTEGRATION.md +318 -0
- package/README.md +253 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T17-54-28-967Z.json +28 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T17-54-29-032Z.backup +1 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T17-57-42-373Z.json +28 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T17-57-42-428Z.backup +1 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T18-52-25-132Z.json +28 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T18-52-25-247Z.backup +1 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T18-54-09-216Z.json +28 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T18-54-09-283Z.backup +1 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T22-18-22-772Z.backup +1 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T22-18-22-793Z.json +28 -0
- package/backups/test-backup.json +28 -0
- package/dist/cli/commands/approve.d.ts +4 -0
- package/dist/cli/commands/approve.js +232 -0
- package/dist/cli/commands/archive.d.ts +4 -0
- package/dist/cli/commands/archive.js +192 -0
- package/dist/cli/commands/backup.d.ts +4 -0
- package/dist/cli/commands/backup.js +164 -0
- package/dist/cli/commands/cloud-backup.d.ts +4 -0
- package/dist/cli/commands/cloud-backup.js +221 -0
- package/dist/cli/commands/cycles.d.ts +8 -0
- package/dist/cli/commands/cycles.js +83 -0
- package/dist/cli/commands/decrypt.d.ts +16 -0
- package/dist/cli/commands/decrypt.js +101 -0
- package/dist/cli/commands/deploy.d.ts +32 -0
- package/dist/cli/commands/deploy.js +208 -0
- package/dist/cli/commands/exec.d.ts +26 -0
- package/dist/cli/commands/exec.js +109 -0
- package/dist/cli/commands/fetch.d.ts +23 -0
- package/dist/cli/commands/fetch.js +164 -0
- package/dist/cli/commands/health.d.ts +8 -0
- package/dist/cli/commands/health.js +72 -0
- package/dist/cli/commands/identity.d.ts +8 -0
- package/dist/cli/commands/identity.js +140 -0
- package/dist/cli/commands/inference.d.ts +4 -0
- package/dist/cli/commands/inference.js +225 -0
- package/dist/cli/commands/info.d.ts +8 -0
- package/dist/cli/commands/info.js +59 -0
- package/dist/cli/commands/init.d.ts +19 -0
- package/dist/cli/commands/init.js +135 -0
- package/dist/cli/commands/instrument.d.ts +8 -0
- package/dist/cli/commands/instrument.js +35 -0
- package/dist/cli/commands/list.d.ts +36 -0
- package/dist/cli/commands/list.js +173 -0
- package/dist/cli/commands/logs.d.ts +8 -0
- package/dist/cli/commands/logs.js +96 -0
- package/dist/cli/commands/monitor.d.ts +8 -0
- package/dist/cli/commands/monitor.js +84 -0
- package/dist/cli/commands/network.d.ts +14 -0
- package/dist/cli/commands/network.js +258 -0
- package/dist/cli/commands/package.d.ts +36 -0
- package/dist/cli/commands/package.js +188 -0
- package/dist/cli/commands/profile.d.ts +8 -0
- package/dist/cli/commands/profile.js +76 -0
- package/dist/cli/commands/promote.d.ts +8 -0
- package/dist/cli/commands/promote.js +89 -0
- package/dist/cli/commands/rebuild.d.ts +21 -0
- package/dist/cli/commands/rebuild.js +140 -0
- package/dist/cli/commands/rollback.d.ts +8 -0
- package/dist/cli/commands/rollback.js +120 -0
- package/dist/cli/commands/show.d.ts +36 -0
- package/dist/cli/commands/show.js +200 -0
- package/dist/cli/commands/stats.d.ts +8 -0
- package/dist/cli/commands/stats.js +34 -0
- package/dist/cli/commands/status.d.ts +14 -0
- package/dist/cli/commands/status.js +83 -0
- package/dist/cli/commands/test.d.ts +8 -0
- package/dist/cli/commands/test.js +109 -0
- package/dist/cli/commands/tokens.d.ts +8 -0
- package/dist/cli/commands/tokens.js +62 -0
- package/dist/cli/commands/trace.d.ts +8 -0
- package/dist/cli/commands/trace.js +68 -0
- package/dist/cli/commands/wallet-export.d.ts +13 -0
- package/dist/cli/commands/wallet-export.js +140 -0
- package/dist/cli/commands/wallet-history.d.ts +10 -0
- package/dist/cli/commands/wallet-history.js +127 -0
- package/dist/cli/commands/wallet-import.d.ts +10 -0
- package/dist/cli/commands/wallet-import.js +209 -0
- package/dist/cli/commands/wallet-multi-send.d.ts +17 -0
- package/dist/cli/commands/wallet-multi-send.js +195 -0
- package/dist/cli/commands/wallet-process-queue.d.ts +19 -0
- package/dist/cli/commands/wallet-process-queue.js +209 -0
- package/dist/cli/commands/wallet-sign.d.ts +13 -0
- package/dist/cli/commands/wallet-sign.js +207 -0
- package/dist/cli/commands/wallet.d.ts +12 -0
- package/dist/cli/commands/wallet.js +794 -0
- package/dist/cli/index.d.ts +10 -0
- package/dist/cli/index.js +96 -0
- package/dist/vitest.config.d.ts +3 -0
- package/dist/vitest.config.js +14 -0
- package/fixup_1_0_OSS_release.md +136 -0
- package/fixup_REALEASE_PRD.md +136 -0
- package/package.json +79 -0
- package/pnpm-workspace.yaml +5 -0
- package/scripts/dev-dashboard.mjs +84 -0
- package/site/README.md +63 -0
- package/site/docusaurus.config.ts +148 -0
- package/site/package-lock.json +18383 -0
- package/site/package.json +47 -0
- package/site/sidebars.ts +86 -0
- package/site/static/.gitkeep +0 -0
- package/site/static/img/logo.svg +28 -0
- package/site/static/img/og-image.svg +35 -0
- package/src/archival/archive-manager.ts +372 -0
- package/src/archival/arweave-client.ts +289 -0
- package/src/archival/index.ts +8 -0
- package/src/backup/backup.ts +315 -0
- package/src/backup/index.ts +7 -0
- package/src/cloud-storage/cloud-sync.ts +461 -0
- package/src/cloud-storage/index.ts +11 -0
- package/src/cloud-storage/provider-detector.ts +198 -0
- package/src/cloud-storage/types.ts +104 -0
- package/src/debugging/index.ts +6 -0
- package/src/debugging/logs.ts +193 -0
- package/src/debugging/types.ts +100 -0
- package/src/deployment/deployer.ts +274 -0
- package/src/deployment/icpClient.ts +620 -0
- package/src/deployment/index.ts +46 -0
- package/src/deployment/promotion.ts +161 -0
- package/src/deployment/types.ts +111 -0
- package/src/icp/batch.ts +374 -0
- package/src/icp/cycles.ts +50 -0
- package/src/icp/environment.ts +215 -0
- package/src/icp/icpcli.ts +438 -0
- package/src/icp/icwasm.ts +222 -0
- package/src/icp/identity.ts +77 -0
- package/src/icp/index.ts +94 -0
- package/src/icp/optimization.ts +242 -0
- package/src/icp/tokens.ts +36 -0
- package/src/icp/tool-detector.ts +110 -0
- package/src/icp/types.ts +574 -0
- package/src/index.ts +25 -0
- package/src/inference/bittensor-client.ts +304 -0
- package/src/inference/index.ts +8 -0
- package/src/inference/inference-manager.ts +327 -0
- package/src/metrics/index.ts +7 -0
- package/src/metrics/metrics.ts +186 -0
- package/src/monitoring/alerting.ts +190 -0
- package/src/monitoring/health.ts +197 -0
- package/src/monitoring/index.ts +38 -0
- package/src/monitoring/info.ts +114 -0
- package/src/monitoring/types.ts +99 -0
- package/src/network/index.ts +5 -0
- package/src/network/network-config.ts +129 -0
- package/src/packaging/compiler.ts +647 -0
- package/src/packaging/config-persistence.ts +135 -0
- package/src/packaging/config-schemas.ts +156 -0
- package/src/packaging/detector.ts +220 -0
- package/src/packaging/index.ts +90 -0
- package/src/packaging/packager.ts +118 -0
- package/src/packaging/parsers/clawdbot.ts +278 -0
- package/src/packaging/parsers/cline.ts +223 -0
- package/src/packaging/parsers/generic.ts +266 -0
- package/src/packaging/parsers/goose.ts +214 -0
- package/src/packaging/parsers/index.ts +11 -0
- package/src/packaging/serializer.ts +260 -0
- package/src/packaging/types.ts +144 -0
- package/src/packaging/wasmedge-compiler.ts +406 -0
- package/src/security/index.ts +17 -0
- package/src/security/multisig.ts +415 -0
- package/src/security/types.ts +416 -0
- package/src/security/vetkeys.ts +655 -0
- package/src/testing/index.ts +6 -0
- package/src/testing/local-runner.ts +264 -0
- package/src/testing/types.ts +104 -0
- package/src/wallet/cbor-serializer.ts +323 -0
- package/src/wallet/chain-dispatcher.ts +313 -0
- package/src/wallet/cross-chain-aggregator.ts +346 -0
- package/src/wallet/index.ts +76 -0
- package/src/wallet/key-derivation.ts +425 -0
- package/src/wallet/providers/base-provider.ts +154 -0
- package/src/wallet/providers/cketh-provider.ts +434 -0
- package/src/wallet/providers/polkadot-provider.ts +503 -0
- package/src/wallet/providers/solana-provider.ts +490 -0
- package/src/wallet/transaction-queue.ts +284 -0
- package/src/wallet/types.ts +178 -0
- package/src/wallet/vetkeys-adapter.ts +431 -0
- package/src/wallet/wallet-manager.ts +597 -0
- package/src/wallet/wallet-storage.ts +380 -0
- package/vercel.json +8 -0
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
import {themes as prismThemes} from 'prism-react-renderer';
|
|
2
|
+
import type {Config} from '@docusaurus/types';
|
|
3
|
+
import type * as Preset from '@docusaurus/preset-classic';
|
|
4
|
+
|
|
5
|
+
const config: Config = {
|
|
6
|
+
title: 'Agent Vault',
|
|
7
|
+
tagline: "Protecting your agent's neural sovereignty through cryptographic decentralization.",
|
|
8
|
+
favicon: 'img/logo.svg',
|
|
9
|
+
|
|
10
|
+
url: 'https://agentvault.cloud',
|
|
11
|
+
baseUrl: '/',
|
|
12
|
+
|
|
13
|
+
organizationName: 'johnnyclem',
|
|
14
|
+
projectName: 'agentvault',
|
|
15
|
+
|
|
16
|
+
onBrokenLinks: 'warn',
|
|
17
|
+
onBrokenMarkdownLinks: 'warn',
|
|
18
|
+
|
|
19
|
+
i18n: {
|
|
20
|
+
defaultLocale: 'en',
|
|
21
|
+
locales: ['en'],
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
presets: [
|
|
25
|
+
[
|
|
26
|
+
'classic',
|
|
27
|
+
{
|
|
28
|
+
docs: {
|
|
29
|
+
path: '../docs',
|
|
30
|
+
routeBasePath: 'docs',
|
|
31
|
+
sidebarPath: './sidebars.ts',
|
|
32
|
+
editUrl: 'https://github.com/johnnyclem/agentvault/tree/main/site/',
|
|
33
|
+
},
|
|
34
|
+
blog: false,
|
|
35
|
+
theme: {
|
|
36
|
+
customCss: './src/css/custom.css',
|
|
37
|
+
},
|
|
38
|
+
} satisfies Preset.Options,
|
|
39
|
+
],
|
|
40
|
+
],
|
|
41
|
+
|
|
42
|
+
themeConfig: {
|
|
43
|
+
image: 'img/og-image.svg',
|
|
44
|
+
metadata: [
|
|
45
|
+
{name: 'keywords', content: 'ICP, Internet Computer, AI agents, blockchain, canister, deployment, Web3'},
|
|
46
|
+
{name: 'twitter:card', content: 'summary_large_image'},
|
|
47
|
+
{name: 'twitter:title', content: 'Agent Vault // Neural Sovereignty for Sovereign Agent Operations'},
|
|
48
|
+
{name: 'twitter:description', content: 'Deploy autonomous AI entities to ICP canisters with sovereign execution, encrypted state, and resilient operations.'},
|
|
49
|
+
],
|
|
50
|
+
colorMode: {
|
|
51
|
+
defaultMode: 'dark',
|
|
52
|
+
disableSwitch: true,
|
|
53
|
+
respectPrefersColorScheme: false,
|
|
54
|
+
},
|
|
55
|
+
navbar: {
|
|
56
|
+
title: 'AGENT_VAULT_V1',
|
|
57
|
+
logo: {
|
|
58
|
+
alt: 'AgentVault Logo',
|
|
59
|
+
src: 'img/logo.svg',
|
|
60
|
+
},
|
|
61
|
+
items: [
|
|
62
|
+
{
|
|
63
|
+
to: '/docs',
|
|
64
|
+
position: 'left',
|
|
65
|
+
label: 'Docs',
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
to: '/docs/security/overview',
|
|
69
|
+
label: 'Protocols',
|
|
70
|
+
position: 'left',
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
to: '/docs/architecture/overview',
|
|
74
|
+
label: 'Ecosystem',
|
|
75
|
+
position: 'left',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
href: 'https://github.com/johnnyclem/agentvault',
|
|
79
|
+
label: 'GitHub',
|
|
80
|
+
className: 'navbar-github-mobile',
|
|
81
|
+
position: 'left',
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
href: 'https://github.com/johnnyclem/agentvault',
|
|
85
|
+
label: 'GitHub',
|
|
86
|
+
className: 'navbar-github-desktop',
|
|
87
|
+
position: 'right',
|
|
88
|
+
},
|
|
89
|
+
],
|
|
90
|
+
},
|
|
91
|
+
footer: {
|
|
92
|
+
style: 'dark',
|
|
93
|
+
links: [
|
|
94
|
+
{
|
|
95
|
+
title: 'Documentation',
|
|
96
|
+
items: [
|
|
97
|
+
{
|
|
98
|
+
label: 'Getting Started',
|
|
99
|
+
to: '/docs/getting-started/quick-start',
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
label: 'CLI Reference',
|
|
103
|
+
to: '/docs/cli/reference',
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
label: 'Architecture',
|
|
107
|
+
to: '/docs/architecture/overview',
|
|
108
|
+
},
|
|
109
|
+
],
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
title: 'Community',
|
|
113
|
+
items: [
|
|
114
|
+
{
|
|
115
|
+
label: 'GitHub Issues',
|
|
116
|
+
href: 'https://github.com/johnnyclem/agentvault/issues',
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
label: 'ICP Forum',
|
|
120
|
+
href: 'https://forum.dfinity.org/',
|
|
121
|
+
},
|
|
122
|
+
],
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
title: 'More',
|
|
126
|
+
items: [
|
|
127
|
+
{
|
|
128
|
+
label: 'GitHub',
|
|
129
|
+
href: 'https://github.com/johnnyclem/agentvault',
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
label: 'npm',
|
|
133
|
+
href: 'https://www.npmjs.com/package/agentvault',
|
|
134
|
+
},
|
|
135
|
+
],
|
|
136
|
+
},
|
|
137
|
+
],
|
|
138
|
+
copyright: `Copyright © ${new Date().getFullYear()} AgentVault // Documentation Engine`,
|
|
139
|
+
},
|
|
140
|
+
prism: {
|
|
141
|
+
theme: prismThemes.github,
|
|
142
|
+
darkTheme: prismThemes.dracula,
|
|
143
|
+
additionalLanguages: ['bash', 'typescript', 'json', 'yaml', 'markdown'],
|
|
144
|
+
},
|
|
145
|
+
} satisfies Preset.ThemeConfig,
|
|
146
|
+
};
|
|
147
|
+
|
|
148
|
+
export default config;
|