Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 8 additions & 18 deletions .skills/observing-atproto/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ async def pulse(duration_seconds=15):
}
```

### Using tools/observer.py
### Using tools/firehose.py

```bash
# Quick pulse
uv run python -m tools.observer pulse 30
# Quick network sample
uv run python -m tools.firehose sample 30

# Detailed summary
uv run python -m tools.observer summary 60
# Network analysis
uv run python -m tools.firehose analyze 60
```

## Monitoring Feeds
Expand All @@ -89,19 +89,9 @@ async with httpx.AsyncClient() as client:

### Recording Observations

```python
from tools.records import write_observation

await write_observation(
'pulse',
duration_seconds,
posts_per_min,
likes_per_min,
follows_per_min,
total_events,
trending_hashtags=[('tag', count), ...],
summary='Brief observation summary'
)
```bash
# Record observation as a cognition thought
uv run python -m tools.cognition thought "Network pulse: {posts_per_min} posts/min, {likes_per_min} likes/min. Top tags: #atproto, #bluesky"
```

## Network Statistics (typical)
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ Python tools for ATProtocol operations:
| `tools/explore.py` | Public data exploration |
| `tools/firehose.py` | Real-time event stream access |
| `tools/identity.py` | DID/handle resolution |
| `tools/observer.py` | Network pulse and observation |
| `tools/records.py` | Structured record writing |
| `tools/responder.py` | Bluesky notification handling |
| `tools/x_responder.py` | X/Twitter notification handling |
| `tools/telepathy.py` | Cross-agent cognition reader |
Expand Down Expand Up @@ -103,7 +101,7 @@ cp .env.example .env

# Run tools
uv run python -m tools.cognition status
uv run python -m tools.observer pulse 30
uv run python -m tools.firehose pulse 30
```

## Philosophy
Expand Down
269 changes: 0 additions & 269 deletions tools/bluesky_bulk.py

This file was deleted.

Loading