Skip to content

Commit d45ab8c

Browse files
committed
add eventage claw
1 parent 6b11679 commit d45ab8c

33 files changed

+8900
-8
lines changed

.gitignore

Lines changed: 156 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,159 @@ target
1818
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
1919
# and can be added to the global gitignore or merged into this file. For a more nuclear
2020
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
21-
#.idea/
21+
#.idea/
22+
23+
24+
25+
26+
27+
28+
29+
30+
# Logs
31+
logs
32+
*.log
33+
npm-debug.log*
34+
yarn-debug.log*
35+
yarn-error.log*
36+
lerna-debug.log*
37+
38+
# Diagnostic reports (https://nodejs.org/api/report.html)
39+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
40+
41+
# Runtime data
42+
pids
43+
*.pid
44+
*.seed
45+
*.pid.lock
46+
47+
# Directory for instrumented libs generated by jscoverage/JSCover
48+
lib-cov
49+
50+
# Coverage directory used by tools like istanbul
51+
coverage
52+
*.lcov
53+
54+
# nyc test coverage
55+
.nyc_output
56+
57+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
58+
.grunt
59+
60+
# Bower dependency directory (https://bower.io/)
61+
bower_components
62+
63+
# node-waf configuration
64+
.lock-wscript
65+
66+
# Compiled binary addons (https://nodejs.org/api/addons.html)
67+
build/Release
68+
69+
# Dependency directories
70+
node_modules/
71+
jspm_packages/
72+
73+
# Snowpack dependency directory (https://snowpack.dev/)
74+
web_modules/
75+
76+
# TypeScript cache
77+
*.tsbuildinfo
78+
79+
# Optional npm cache directory
80+
.npm
81+
82+
# Optional eslint cache
83+
.eslintcache
84+
85+
# Optional stylelint cache
86+
.stylelintcache
87+
88+
# Optional REPL history
89+
.node_repl_history
90+
91+
# Output of 'npm pack'
92+
*.tgz
93+
94+
# Yarn Integrity file
95+
.yarn-integrity
96+
97+
# dotenv environment variable files
98+
.env
99+
.env.*
100+
!.env.example
101+
102+
# parcel-bundler cache (https://parceljs.org/)
103+
.cache
104+
.parcel-cache
105+
106+
# Next.js build output
107+
.next
108+
out
109+
110+
# Nuxt.js build / generate output
111+
.nuxt
112+
dist
113+
.output
114+
115+
# Gatsby files
116+
.cache/
117+
# Comment in the public line in if your project uses Gatsby and not Next.js
118+
# https://nextjs.org/blog/next-9-1#public-directory-support
119+
# public
120+
121+
# vuepress build output
122+
.vuepress/dist
123+
124+
# vuepress v2.x temp and cache directory
125+
.temp
126+
.cache
127+
128+
# Sveltekit cache directory
129+
.svelte-kit/
130+
131+
# vitepress build output
132+
**/.vitepress/dist
133+
134+
# vitepress cache directory
135+
**/.vitepress/cache
136+
137+
# Docusaurus cache and generated files
138+
.docusaurus
139+
140+
# Serverless directories
141+
.serverless/
142+
143+
# FuseBox cache
144+
.fusebox/
145+
146+
# DynamoDB Local files
147+
.dynamodb/
148+
149+
# Firebase cache directory
150+
.firebase/
151+
152+
# TernJS port file
153+
.tern-port
154+
155+
# Stores VSCode versions used for testing VSCode extensions
156+
.vscode-test
157+
158+
# pnpm
159+
.pnpm-store
160+
161+
# yarn v3
162+
.pnp.*
163+
.yarn/*
164+
!.yarn/patches
165+
!.yarn/plugins
166+
!.yarn/releases
167+
!.yarn/sdks
168+
!.yarn/versions
169+
170+
# Vite files
171+
vite.config.js.timestamp-*
172+
vite.config.ts.timestamp-*
173+
.vite/
174+
175+
176+
crates/example-eventage-claw/whatsapp-bridge/auth

Cargo.lock

Lines changed: 60 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ members = [
44
"crates/eventage-replay-cli",
55
"crates/example-coding-agent",
66
"crates/example-clang-agent",
7+
"crates/example-eventage-claw",
78
]
89
resolver = "2"
910

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[package]
2+
name = "example-eventage-claw"
3+
version = "0.1.0"
4+
edition = "2021"
5+
publish = false
6+
description = "Personal Claude assistant — nanoclaw capabilities via eventage event-driven architecture"
7+
8+
[[bin]]
9+
name = "claw"
10+
path = "src/main.rs"
11+
12+
[dependencies]
13+
eventage = { path = "../..", features = ["observability", "scheduler", "replay"] }
14+
tokio = { version = "1", features = ["full"] }
15+
serde = { version = "1", features = ["derive"] }
16+
serde_json = "1"
17+
async-trait = "0.1"
18+
tracing = "0.1"
19+
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
20+
uuid = { version = "1", features = ["v4"] }
21+
chrono = { version = "0.4", features = ["serde"] }
22+
thiserror = "2"
23+
anyhow = "1"
24+
clap = { version = "4", features = ["derive"] }
25+
dirs = "5"
26+
reqwest = { version = "0.12", features = ["json", "stream"] }
27+
futures-util = "0.3"
28+
ratatui = { version = "0.29", features = ["unstable-rendered-line-info"] }
29+
crossterm = { version = "0.28", features = ["event-stream"] }
30+
rustyline = "14"
31+
axum = "0.7"
32+
tower = "0.4"
33+
tokio-util = { version = "0.7", features = ["io"] }
34+
glob = "0.3"
35+
regex = "1"
36+
walkdir = "2"
37+
serde_yaml = "0.9"
38+
cron = "0.12"
39+
toml = "0.8"

0 commit comments

Comments
 (0)