Skip to content

Commit 45a142a

Browse files
committed
Merge feat/branching into main — release v0.4.0
Brings all branching features, communication integrations, voice UI enhancements, awakening mode, and memory improvements into main.
2 parents db563b0 + bb2d2b0 commit 45a142a

41 files changed

Lines changed: 12781 additions & 621 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ dist/
33
pi-mono/
44
.claude/
55
.gitagent/
6+
.gitagent/whatsapp-auth/
67
*.tgz
78
snake-game.html
89
examples/debug-events.ts
10+
.env
11+
cmd
12+
workspace/
13+
memory/.latest-frame.jpg
14+
memory/.latest-screen.jpg
15+
.DS_Store

ARCHITECTURE.md

Lines changed: 1177 additions & 0 deletions
Large diffs are not rendered by default.

README_FLAPPY_BIRD.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Flappy Bird Game
2+
3+
A simple Flappy Bird style game built with Python and Pygame.
4+
5+
## Installation
6+
7+
Install the required dependency:
8+
9+
```bash
10+
pip install pygame
11+
```
12+
13+
Or use the requirements file:
14+
15+
```bash
16+
pip install -r requirements.txt
17+
```
18+
19+
## How to Play
20+
21+
Run the game:
22+
23+
```bash
24+
python flappy_bird.py
25+
```
26+
27+
### Controls
28+
29+
- **SPACE** or **UP arrow**: Make the bird flap/jump
30+
- **ESC**: Quit the game
31+
32+
### Gameplay
33+
34+
- Press SPACE to start the game
35+
- Navigate the bird through the pipes by tapping SPACE to flap
36+
- Each pipe you pass increases your score by 1
37+
- Don't hit the pipes, ground, or ceiling!
38+
- When you crash, press SPACE to restart
39+
40+
## Features
41+
42+
- Simple and intuitive controls
43+
- Score tracking
44+
- Randomly generated pipes
45+
- Smooth animations at 60 FPS
46+
- Game over and restart functionality
47+
48+
Enjoy!

agent.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ tools:
1111
- write
1212
- memory
1313
runtime:
14-
max_turns: 50
14+
max_turns: 56

0 commit comments

Comments
 (0)