ohwow 0.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.
Files changed (34) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +147 -0
  3. package/bin/ohwow.js +2 -0
  4. package/dist/db/migrations/001-data-plane-tables.sql +250 -0
  5. package/dist/db/migrations/002-agents-table.sql +40 -0
  6. package/dist/db/migrations/003-orchestrator-a2a.sql +111 -0
  7. package/dist/db/migrations/004-whatsapp.sql +37 -0
  8. package/dist/db/migrations/005-telegram.sql +27 -0
  9. package/dist/db/migrations/006-deferred-actions.sql +3 -0
  10. package/dist/db/migrations/007-deliverables.sql +23 -0
  11. package/dist/db/migrations/008-plans.sql +36 -0
  12. package/dist/db/migrations/009-nudges.sql +16 -0
  13. package/dist/db/migrations/010-local-crm.sql +35 -0
  14. package/dist/db/migrations/011-notification-preferences.sql +5 -0
  15. package/dist/db/migrations/012-orchestrator-memory.sql +14 -0
  16. package/dist/db/migrations/013-voice-profile-settings.sql +9 -0
  17. package/dist/db/migrations/014-webhooks-and-triggers.sql +53 -0
  18. package/dist/db/migrations/015-file-attachments.sql +19 -0
  19. package/dist/db/migrations/016-dashboard-tables.sql +47 -0
  20. package/dist/db/migrations/017-workflow-triggers.sql +24 -0
  21. package/dist/db/migrations/018-workspace-onboarding.sql +20 -0
  22. package/dist/db/migrations/019-custom-webhooks.sql +9 -0
  23. package/dist/db/migrations/020-automation-action-chains.sql +9 -0
  24. package/dist/db/migrations/021-unify-automations.sql +12 -0
  25. package/dist/db/migrations/022-knowledge-base.sql +66 -0
  26. package/dist/db/migrations/023-local-file-access.sql +19 -0
  27. package/dist/db/migrations/024-model-stats.sql +25 -0
  28. package/dist/index.d.ts +91 -0
  29. package/dist/index.js +1169 -0
  30. package/dist/web/assets/index-C5TP_l1N.css +1 -0
  31. package/dist/web/assets/index-Dylm-A3c.js +75 -0
  32. package/dist/web/favicon.svg +4 -0
  33. package/dist/web/index.html +14 -0
  34. package/package.json +70 -0
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
2
+ <rect width="32" height="32" rx="6" fill="#0d1117"/>
3
+ <text x="16" y="22" text-anchor="middle" font-family="monospace" font-size="16" font-weight="bold" fill="#00d4ff">o</text>
4
+ </svg>
@@ -0,0 +1,14 @@
1
+ <!doctype html>
2
+ <html lang="en" class="dark">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>ohwow Runtime</title>
7
+ <link rel="icon" type="image/svg+xml" href="/ui/favicon.svg" />
8
+ <script type="module" crossorigin src="/ui/assets/index-Dylm-A3c.js"></script>
9
+ <link rel="stylesheet" crossorigin href="/ui/assets/index-C5TP_l1N.css">
10
+ </head>
11
+ <body class="bg-[#0a0a0a] text-white antialiased">
12
+ <div id="root"></div>
13
+ </body>
14
+ </html>
package/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "ohwow",
3
+ "version": "0.1.0",
4
+ "description": "Runtime agent server for the ohwow platform",
5
+ "license": "SEE LICENSE IN LICENSE",
6
+ "type": "module",
7
+ "main": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "bin": {
10
+ "ohwow": "./bin/ohwow.js"
11
+ },
12
+ "files": [
13
+ "dist",
14
+ "bin"
15
+ ],
16
+ "engines": {
17
+ "node": ">=20.0.0"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/ohwow-fun/ohwow"
22
+ },
23
+ "homepage": "https://ohwow.fun",
24
+ "keywords": ["ai", "agents", "runtime", "cli", "ollama", "claude", "automation"],
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "scripts": {
29
+ "typecheck": "tsc --noEmit",
30
+ "build": "npm run build:web && tsup && npm run copy-assets",
31
+ "build:web": "cd src/web && npm install --ignore-scripts && npx vite build",
32
+ "copy-assets": "mkdir -p dist/db && cp -r src/db/migrations dist/db/migrations",
33
+ "clean": "rm -rf dist tsconfig.build.tsbuildinfo",
34
+ "prepublishOnly": "npm run clean && npm run build",
35
+ "start": "node dist/index.js",
36
+ "dev": "tsx src/index.ts",
37
+ "dev:web": "cd src/web && npx vite --port 7701",
38
+ "test": "vitest run",
39
+ "test:watch": "vitest"
40
+ },
41
+ "dependencies": {
42
+ "@anthropic-ai/sdk": "^0.74.0",
43
+ "@whiskeysockets/baileys": "^6.7.16",
44
+ "better-sqlite3": "^11.0.0",
45
+ "cloudflared": "^0.7.1",
46
+ "cors": "^2.8.6",
47
+ "cron-parser": "^5.5.0",
48
+ "express": "^5.2.1",
49
+ "ink": "^6.8.0",
50
+ "ink-select-input": "^6.0.0",
51
+ "ink-spinner": "^5.0.0",
52
+ "ink-text-input": "^6.0.0",
53
+ "jose": "^6.1.3",
54
+ "playwright-core": "^1.52.0",
55
+ "qrcode-terminal": "^0.12.0",
56
+ "react": "^19.2.0",
57
+ "ws": "^8.19.0"
58
+ },
59
+ "devDependencies": {
60
+ "@types/better-sqlite3": "^7.6.0",
61
+ "@types/cors": "^2.8.19",
62
+ "@types/express": "^5.0.6",
63
+ "@types/qrcode-terminal": "^0.12.0",
64
+ "@types/react": "^19.0.0",
65
+ "@types/ws": "^8.18.1",
66
+ "ink-testing-library": "^4.0.0",
67
+ "tsup": "^8.5.1",
68
+ "typescript": "^5"
69
+ }
70
+ }