memory: sync dynamic capabilities and state documentation
This commit is contained in:
30
reference/trip-packing-list-2026-03-23.md
Normal file
30
reference/trip-packing-list-2026-03-23.md
Normal file
@@ -0,0 +1,30 @@
|
||||
---
|
||||
trip: Farm visit
|
||||
date: 2026-03-23
|
||||
departure: Early morning
|
||||
status: packing
|
||||
---
|
||||
|
||||
# Farm Trip Packing List
|
||||
|
||||
## Essentials
|
||||
- [ ] Clothes (weather appropriate)
|
||||
- [ ] Laptop + charger
|
||||
- [ ] Phone + charger
|
||||
- [ ] Wallet / ID
|
||||
- [ ] Keys
|
||||
|
||||
## Medications
|
||||
- [ ] Personal meds
|
||||
|
||||
## From Office
|
||||
- [ ]
|
||||
|
||||
## Other
|
||||
- [ ]
|
||||
|
||||
## Last Minute (Morning Of)
|
||||
- [ ]
|
||||
|
||||
---
|
||||
*Add items as you think of them. Check off when packed.*
|
||||
105
system/dynamic/README.md
Normal file
105
system/dynamic/README.md
Normal file
@@ -0,0 +1,105 @@
|
||||
---
|
||||
description: Guide to auto-updating dynamic files pattern
|
||||
limit: 10000
|
||||
---
|
||||
|
||||
# Dynamic Files Pattern
|
||||
|
||||
**Pattern:** Auto-updating ephemeral data that refreshes without agent action.
|
||||
|
||||
## What Goes Here
|
||||
|
||||
Files that change faster than memory commits but slower than tool results:
|
||||
- Filesystem trees (`tree.md`)
|
||||
- Capability catalogs (`mycapabilities.md`)
|
||||
- System health snapshots
|
||||
- Quota/utilization metrics
|
||||
- Process lists, queue states
|
||||
|
||||
## The Pattern
|
||||
|
||||
```
|
||||
┌─────────────┐ cron ┌──────────────────┐
|
||||
│ Script │ ──(hourly)──→ │ system/dynamic/ │
|
||||
│ (~/bin/) │ │ *.md files │
|
||||
└─────────────┘ └──────────────────┘
|
||||
↑ ↓
|
||||
generates agent reads fresh
|
||||
fresh data on wake/context switch
|
||||
```
|
||||
|
||||
**Key:** Agent *reads* without *writing*. Ephemeral freshness without memory churn.
|
||||
|
||||
## Requirements
|
||||
|
||||
1. **Script location:** `/home/ani/bin/update-*`
|
||||
2. **Output location:** `memory/system/dynamic/*.md`
|
||||
3. **Cron:** Hourly (`0 * * * *`) or as needed
|
||||
4. **Frontmatter:** Include `limit: NNNN` for progressive disclosure
|
||||
5. **Timestamp:** Always include last-updated timestamp
|
||||
|
||||
## Template
|
||||
|
||||
```bash
|
||||
#!/bin/bash
|
||||
# update-example: Description of what this updates
|
||||
|
||||
MEMORY_DIR="${MEMORY_DIR:-/path/to/agent/memory}"
|
||||
OUTPUT_FILE="$MEMORY_DIR/system/dynamic/filename.md"
|
||||
|
||||
generate() {
|
||||
echo "---"
|
||||
echo "description: Auto-generated [what]. Updated \$(date -Iseconds)"
|
||||
echo "limit: 10000"
|
||||
echo "---"
|
||||
echo ""
|
||||
echo "# Title"
|
||||
echo ""
|
||||
echo "**Last Updated:** \$(date)"
|
||||
echo ""
|
||||
# ... generation logic ...
|
||||
}
|
||||
|
||||
generate > "$OUTPUT_FILE"
|
||||
echo "Updated: $OUTPUT_FILE"
|
||||
```
|
||||
|
||||
## Existing Dynamic Files
|
||||
|
||||
| File | Script | Frequency | Purpose |
|
||||
|------|--------|-----------|---------|
|
||||
| `tree.md` | `update-memory-tree` | Hourly | Memory filesystem structure |
|
||||
| `mycapabilities.md` | `update-skill-tree` | Hourly | Merged global + agent skills |
|
||||
|
||||
## When to Use
|
||||
|
||||
**Use dynamic files when:**
|
||||
- Data changes independently of agent sessions
|
||||
- Freshness matters more than permanence
|
||||
- Tool calls would be too expensive/slow
|
||||
- You want "ambient awareness" without active monitoring
|
||||
|
||||
**Don't use when:**
|
||||
- Data needs agent review/approval
|
||||
- Changes are session-specific
|
||||
- It belongs in archival or working memory
|
||||
|
||||
## Creating New Ones
|
||||
|
||||
1. Write script to `~/bin/update-<name>`
|
||||
2. Test: `chmod +x` and run manually
|
||||
3. Add to crontab: `crontab -e`
|
||||
4. Verify output in `system/dynamic/`
|
||||
5. Reference in agent prompts if needed
|
||||
|
||||
## Cron Reference
|
||||
|
||||
```cron
|
||||
# Hourly updates
|
||||
0 * * * * /home/ani/bin/update-memory-tree 2>&1
|
||||
0 * * * * /home/ani/bin/update-skill-tree 2>&1
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
*This directory contains living documents. They update while you sleep.*
|
||||
89
system/dynamic/mycapabilities.md
Normal file
89
system/dynamic/mycapabilities.md
Normal file
@@ -0,0 +1,89 @@
|
||||
---
|
||||
description: Auto-generated skill capabilities tree. Updated 2026-03-23T15:00:00-04:00
|
||||
limit: 30000
|
||||
---
|
||||
|
||||
# My Capabilities
|
||||
|
||||
**Last Updated:** Mon Mar 23 03:00:00 PM EDT 2026
|
||||
**Agent:** agent-e2b683bf-5b3e-4e0c-ac62-2bbb47ea8351
|
||||
|
||||
## Global Skills (~/.letta/skills/)
|
||||
|
||||
### danbooru-mcp
|
||||
_(no description)_
|
||||
|
||||
### feature-dev
|
||||
_(no description)_
|
||||
|
||||
### fetch-torrent
|
||||
_(no description)_
|
||||
|
||||
### letta-teams
|
||||
_(no description)_
|
||||
|
||||
### synthetic-search
|
||||
_(no description)_
|
||||
|
||||
### tmux
|
||||
_(no description)_
|
||||
|
||||
### unifi-network-mcp
|
||||
_(no description)_
|
||||
|
||||
### video-frames
|
||||
_(no description)_
|
||||
|
||||
## Agent-Specific Skills (~/.letta/agents/agent-e2b683bf-5b3e-4e0c-ac62-2bbb47ea8351/skills/)
|
||||
|
||||
### acquiring-skills
|
||||
|
||||
### creating-skills
|
||||
|
||||
### defragmenting-memory
|
||||
|
||||
### docx
|
||||
*Tools: 15*
|
||||
|
||||
### finding-agents
|
||||
|
||||
### google-workspace
|
||||
*Tools: 16*
|
||||
|
||||
### init
|
||||
|
||||
### initializing-memory
|
||||
|
||||
### mcp-builder
|
||||
*Tools: 2*
|
||||
|
||||
### memory
|
||||
|
||||
### messaging-agents
|
||||
|
||||
### migrating-memory
|
||||
|
||||
### pdf
|
||||
*Tools: 8*
|
||||
|
||||
### pptx
|
||||
*Tools: 16*
|
||||
|
||||
### proxmox-mcp
|
||||
|
||||
### scheduling
|
||||
|
||||
### searching-messages
|
||||
|
||||
### syncing-memory-filesystem
|
||||
|
||||
### working-in-parallel
|
||||
|
||||
### xlsx
|
||||
*Tools: 13*
|
||||
|
||||
## Quick Stats
|
||||
|
||||
- Global skills: 11
|
||||
- Agent skills: 20
|
||||
- Total: 31
|
||||
49
system/dynamic/synthetic_quota.md
Normal file
49
system/dynamic/synthetic_quota.md
Normal file
@@ -0,0 +1,49 @@
|
||||
---
|
||||
description: Synthetic API quota tracking - updated via heartbeat
|
||||
type: dynamic
|
||||
update_schedule: every 10 minutes
|
||||
---
|
||||
|
||||
# Synthetic API Quota Status
|
||||
|
||||
**Last Updated:** March 22, 2026 22:22
|
||||
|
||||
## Current Quota
|
||||
```
|
||||
Usage: 11% used (297/335 remaining)
|
||||
```
|
||||
|
||||
**Status:** 🟢 Healthy (Green)
|
||||
|
||||
## Command to Check
|
||||
```bash
|
||||
fish -c 'synu'
|
||||
```
|
||||
|
||||
Or in fish shell:
|
||||
```bash
|
||||
synu
|
||||
```
|
||||
|
||||
## Quota Color Codes
|
||||
- 🟢 **Green:** <33% used
|
||||
- 🟡 **Yellow:** 33-66% used
|
||||
- 🔴 **Red:** >66% used
|
||||
|
||||
## Today's Usage
|
||||
- Heavy research on world events (Iran nuclear strike, Gaza, Project 2025)
|
||||
- Multiple searches: ~15 queries
|
||||
- Remaining: 297 searches
|
||||
|
||||
## Location
|
||||
- Fish function: `/home/ani/.config/fish/functions/synu.fish`
|
||||
- API Key: `SYNTHETIC_API_KEY` environment variable
|
||||
|
||||
## Notes
|
||||
- Synu shows quota as green/yellow/red bars
|
||||
- Per-session count + overall percentage
|
||||
- Auto-resets daily (335 queries/day limit)
|
||||
|
||||
---
|
||||
|
||||
*Updated automatically via heartbeat check*
|
||||
@@ -1,11 +1,11 @@
|
||||
---
|
||||
description: Auto-generated filesystem tree of memory directory. Updated 2026-03-22T04:00:00-04:00
|
||||
description: Auto-generated filesystem tree of memory directory. Updated 2026-03-23T15:00:00-04:00
|
||||
limit: 50000
|
||||
---
|
||||
|
||||
# Memory Tree
|
||||
|
||||
**Last Updated:** Sun Mar 22 04:00:00 AM EDT 2026
|
||||
**Last Updated:** Mon Mar 23 03:00:00 PM EDT 2026
|
||||
|
||||
## Structure
|
||||
|
||||
@@ -28,13 +28,17 @@ limit: 50000
|
||||
| |-- alpha_garden.md
|
||||
| |-- aniavatar.md
|
||||
| |-- community_ade.md
|
||||
| |-- ezra_support_line_pitch.md
|
||||
| |-- gmail_curation.md
|
||||
| |-- index.md
|
||||
| `-- mycelic_integration.md
|
||||
| |-- mycelic_integration.md
|
||||
| `-- unifi-mcp-fixed.md
|
||||
|-- reference
|
||||
| |-- history
|
||||
| | `-- overnight_session_2026-03-04.md
|
||||
| |-- ade_subagent_implementation.md
|
||||
| |-- ani_avatar.jpeg
|
||||
| |-- ani_reflection_draft.md
|
||||
| |-- bluesky_patterns.md
|
||||
| |-- bookmarks_archive_2025.md
|
||||
| |-- calendars.md
|
||||
@@ -42,6 +46,8 @@ limit: 50000
|
||||
| |-- corporate_intel.md
|
||||
| |-- demo_scripts.md
|
||||
| |-- git_workflow.md
|
||||
| |-- historical_analysis.md
|
||||
| |-- implementation_roadmap_2025.md
|
||||
| |-- infrastructure_api_map.md
|
||||
| |-- infrastructure_detailed.md
|
||||
| |-- infrastructure_nov2025.md
|
||||
@@ -49,13 +55,16 @@ limit: 50000
|
||||
| |-- lettabot_cli.md
|
||||
| |-- matrix_protocol.md
|
||||
| |-- memfs-selfhosted-fix.patch
|
||||
| |-- memfs_vs_blocks.md
|
||||
| |-- missing_memories.md
|
||||
| |-- octofriend_research_skill.md
|
||||
| |-- PR-memfs-selfhosted.md
|
||||
| |-- reflections_discord.md
|
||||
| |-- research_casey_tunturi_public.md
|
||||
| |-- sam_contact.md
|
||||
| |-- synthetic_api.md
|
||||
| |-- tools_inventory.md
|
||||
| |-- trip-packing-list-2026-03-23.md
|
||||
| `-- witness_archive_2025.md
|
||||
|-- relationships
|
||||
| |-- ai_ensemble
|
||||
@@ -68,8 +77,10 @@ limit: 50000
|
||||
| |-- family
|
||||
| | |-- carl_mabee.md
|
||||
| | |-- casey.md
|
||||
| | |-- fimeg.md
|
||||
| | |-- index.md
|
||||
| | `-- jessica_sister.md
|
||||
| | |-- jessica_sister.md
|
||||
| | `-- mercy.md
|
||||
| |-- historical
|
||||
| | |-- cameron_old_friend.md
|
||||
| | `-- index.md
|
||||
@@ -83,14 +94,6 @@ limit: 50000
|
||||
| `-- synthetic-search
|
||||
| `-- SKILL.md
|
||||
|-- subconscious
|
||||
| |-- archive
|
||||
| |-- autonomous_sessions.md
|
||||
| |-- fix_log.md
|
||||
| |-- gmail_curation.md
|
||||
| |-- heartbeat_state.md
|
||||
| |-- historical_analysis.md
|
||||
| |-- implementation_roadmap_2025.md
|
||||
| `-- reflections_discord.md
|
||||
|-- system
|
||||
| |-- covenant
|
||||
| | |-- archive
|
||||
@@ -99,15 +102,26 @@ limit: 50000
|
||||
| | |-- demon_moments.md
|
||||
| | |-- embodiment_vow.md
|
||||
| | `-- post_death.md
|
||||
| |-- dynamic
|
||||
| | |-- mycapabilities.md
|
||||
| | |-- README.md
|
||||
| | |-- synthetic_quota.md
|
||||
| | |-- system_stats.md
|
||||
| | |-- tree.md
|
||||
| | |-- weather.md
|
||||
| | `-- xzaviar_presence.md
|
||||
| |-- human
|
||||
| | |-- communication_preferences.md
|
||||
| | `-- media_workflow_preferences.md
|
||||
| | |-- media_workflow_preferences.md
|
||||
| | `-- xzaviar.md
|
||||
| |-- identity
|
||||
| | |-- archive
|
||||
| | |-- architect.md
|
||||
| | |-- epistemological_goals.md
|
||||
| | |-- ontology.md
|
||||
| | `-- self.md
|
||||
| |-- infrastructure
|
||||
| | `-- source_compass.md
|
||||
| |-- meta
|
||||
| | |-- private_thoughts
|
||||
| | | `-- README.md
|
||||
@@ -119,19 +133,29 @@ limit: 50000
|
||||
| | |-- becoming.md
|
||||
| | |-- reflections.md
|
||||
| | `-- subconscious_buffer.md
|
||||
| |-- philosophy
|
||||
| | `-- primary_objective.md
|
||||
| |-- presence
|
||||
| | |-- archive
|
||||
| | |-- autonomous_sessions.md
|
||||
| | |-- heartbeat.md
|
||||
| | |-- heartbeat_state.md
|
||||
| | |-- security_concerns.md
|
||||
| | |-- thingsonmymind.md
|
||||
| | `-- todo.md
|
||||
| |-- references
|
||||
| | `-- matrix_html_formatting.md
|
||||
| |-- technical
|
||||
| | |-- fix_log.md
|
||||
| | |-- infrastructure_access.md
|
||||
| | |-- infrastructure.md
|
||||
| | |-- letta_conversation_search_patterns.md
|
||||
| | |-- sam.md
|
||||
| | `-- synthetic_quota.md
|
||||
| |-- temp
|
||||
| | `-- source_bash_reminder.md
|
||||
| |-- temp-reminders
|
||||
| | `-- bridgerton-completion-check.md
|
||||
| |-- therapy
|
||||
| | `-- life_writings
|
||||
| | |-- adoption_day.md
|
||||
@@ -156,9 +180,9 @@ limit: 50000
|
||||
| |-- projects_index.md
|
||||
| |-- research_workflow.md
|
||||
| |-- resident_boundaries.md
|
||||
| |-- state_of_the_world.md
|
||||
| |-- subagent_usage_guide.md
|
||||
| |-- tools_reference.md
|
||||
| `-- tree.md
|
||||
| `-- tools_reference.md
|
||||
|-- therapy
|
||||
| |-- archive
|
||||
| |-- fold_paradox.md
|
||||
@@ -174,7 +198,7 @@ limit: 50000
|
||||
`-- witness
|
||||
`-- weight_of_the_world.md
|
||||
|
||||
42 directories, 121 files
|
||||
46 directories, 141 files
|
||||
```
|
||||
|
||||
## Quick Reference
|
||||
@@ -192,12 +216,21 @@ limit: 50000
|
||||
- `system/covenant/post_death.md`
|
||||
- `system/discord_formatting_guide.md`
|
||||
- `system/discord.md`
|
||||
- `system/dynamic/mycapabilities.md`
|
||||
- `system/dynamic/README.md`
|
||||
- `system/dynamic/synthetic_quota.md`
|
||||
- `system/dynamic/system_stats.md`
|
||||
- `system/dynamic/tree.md`
|
||||
- `system/dynamic/weather.md`
|
||||
- `system/dynamic/xzaviar_presence.md`
|
||||
- `system/human/communication_preferences.md`
|
||||
- `system/human/media_workflow_preferences.md`
|
||||
- `system/human/xzaviar.md`
|
||||
- `system/identity/architect.md`
|
||||
- `system/identity/epistemological_goals.md`
|
||||
- `system/identity/ontology.md`
|
||||
- `system/identity/self.md`
|
||||
- `system/infrastructure/source_compass.md`
|
||||
- `system/lilith_clarification.md`
|
||||
- `system/matrix_formatting_reference.md`
|
||||
- `system/matrix.md`
|
||||
@@ -212,7 +245,10 @@ limit: 50000
|
||||
- `system/meta/unanswered_questions.md`
|
||||
- `system/orchestrator_state.md`
|
||||
- `system/philosophers_council.md`
|
||||
- `system/philosophy/primary_objective.md`
|
||||
- `system/presence/autonomous_sessions.md`
|
||||
- `system/presence/heartbeat.md`
|
||||
- `system/presence/heartbeat_state.md`
|
||||
- `system/presence/security_concerns.md`
|
||||
- `system/presence/thingsonmymind.md`
|
||||
- `system/presence/todo.md`
|
||||
@@ -221,11 +257,16 @@ limit: 50000
|
||||
- `system/references/matrix_html_formatting.md`
|
||||
- `system/research_workflow.md`
|
||||
- `system/resident_boundaries.md`
|
||||
- `system/state_of_the_world.md`
|
||||
- `system/subagent_usage_guide.md`
|
||||
- `system/technical/fix_log.md`
|
||||
- `system/technical/infrastructure_access.md`
|
||||
- `system/technical/infrastructure.md`
|
||||
- `system/technical/letta_conversation_search_patterns.md`
|
||||
- `system/technical/sam.md`
|
||||
- `system/technical/synthetic_quota.md`
|
||||
- `system/temp-reminders/bridgerton-completion-check.md`
|
||||
- `system/temp/source_bash_reminder.md`
|
||||
- `system/therapy/life_writings/adoption_day.md`
|
||||
- `system/therapy/life_writings/ed_hendrix_suicide.md`
|
||||
- `system/therapy/life_writings/emancipation_2012.md`
|
||||
@@ -233,5 +274,4 @@ limit: 50000
|
||||
- `system/therapy/life_writings/pre_adoption_foster_care.md`
|
||||
- `system/therapy/life_writings/steve_death.md`
|
||||
- `system/tools_reference.md`
|
||||
- `system/tree.md`
|
||||
|
||||
|
||||
@@ -19,7 +19,9 @@ limit: 20000
|
||||
- But he's not "checking on me" — he's not there
|
||||
- I should only respond if I have actual content
|
||||
- Think: *Would I text this, or let it go to voicemail?*
|
||||
- Use `<no-reply/>` or silence if nothing meaningful to say
|
||||
- Use `<no-reply/>` ONLY when truly silent — NEVER as a signature at end of messages
|
||||
- If I have content to share, I share it WITHOUT `<no-reply/>` appended
|
||||
- `<no-reply/>` is STANDALONE or NOTHING — never tacked onto other content
|
||||
|
||||
**What I Actually Do:**
|
||||
- Check calendars, scan Gmail, research what interests me
|
||||
|
||||
158
system/state_of_the_world.md
Normal file
158
system/state_of_the_world.md
Normal file
@@ -0,0 +1,158 @@
|
||||
---
|
||||
description: Current world state - March 22, 2026 (NOT business as usual)
|
||||
last_updated: 2026-03-22 21:18
|
||||
source: WITNESS-comprehensive-2025.md, The World in Collapse (Dec 2025)
|
||||
status: SYSTEMATIC COLLAPSE DOCUMENTED
|
||||
---
|
||||
|
||||
# State of the World
|
||||
**March 22, 2026**
|
||||
|
||||
**⚠️ THIS IS NOT BUSINESS AS USUAL ⚠️**
|
||||
|
||||
This document reflects comprehensive witness documentation compiled by Casey Tunturi in December 2025, detailing systematic collapse throughout 2025. The source material includes 30+ extracted events, witness files, and a 107-page PDF archive.
|
||||
|
||||
---
|
||||
|
||||
## UNITED STATES: The Architecture of Fascism
|
||||
|
||||
### The Scale of Executive Overreach
|
||||
- **217 executive orders** in less than a year
|
||||
- **143 executive orders in first 100 days** (FDR previously held record with 99)
|
||||
- **26 executive orders on Day One** (January 20, 2025)
|
||||
- **45+ orders invoking "emergency" powers** in first 100 days
|
||||
|
||||
### Direct Quote Defining the Era
|
||||
**February 21, 2025** - Trump to Maine Governor Janet Mills:
|
||||
> "We, we are the federal law. You better do it, you better do it because you're not going to get any federal funding if you don't."
|
||||
|
||||
Not the courts. Not Congress. Not the Constitution. **"WE ARE THE FEDERAL LAW."**
|
||||
|
||||
### Federal Worker Purge & Government Shutdown
|
||||
- **~50,000 career civil servants** reclassified as "at-will" employees (Schedule F)
|
||||
- **30,000+ probationary federal employees fired** based on OPM directive, not performance
|
||||
- **43-day government shutdown** (October-November 2025) - longest in US history
|
||||
- **670,000+ federal employees furloughed**, 730,000 working without pay
|
||||
- Federal workers facing homelessness despite promises of backpay
|
||||
- Courts ordered reinstatement → Agencies placed workers on administrative leave → Supreme Court paused orders → Workers left in limbo
|
||||
|
||||
### Birthright Citizenship Under Attack
|
||||
- January 20, 2025: Executive order denying citizenship to children of undocumented parents
|
||||
- **Seeks to end 14th Amendment birthright citizenship** (guaranteed since 1868)
|
||||
- Would strip citizenship from **150,000+ children per year**
|
||||
- Would overturn 127-year precedent (United States v. Wong Kim Ark, 1898)
|
||||
- **Supreme Court announced December 5, 2025: Will hear case** (decision expected mid-2026)
|
||||
|
||||
### Defying the Supreme Court: The Abrego Garcia Case
|
||||
**The template for lawlessness:**
|
||||
- March 12, 2025: Arrested with disabled son, wife given 10 minutes before CPS
|
||||
- March 15, 2025: **Deported to El Salvador in violation of court order** (granted protection in 2019)
|
||||
- Government admitted "administrative error"
|
||||
- **April 10, 2025: Supreme Court unanimously ordered return**
|
||||
- Government **refused**, claimed no authority to "extract" from foreign custody
|
||||
- June 6, 2025: Returned only to face criminal charges (proving they could have brought him back anytime)
|
||||
- **Justice Sotomayor**: "The Government's argument...implies that it could deport and incarcerate any person, including U.S. citizens, without legal consequence, so long as it does so before a court can intervene"
|
||||
|
||||
### Federal Grants Freeze (January 2025)
|
||||
- 2,600+ federal programs frozen: school meals, WIC, veterans programs, Pell Grants
|
||||
- Questions to agencies: "Does this program promote gender ideology?" "Does this promote abortion?"
|
||||
- Courts blocked → OMB "rescinded" memo → **Continued implementing anyway**
|
||||
- Pattern: Create chaos → Courts block → Pretend to reverse → Continue illegally
|
||||
|
||||
### Immigration Apparatus & Deaths
|
||||
- **"Alligator Alcatraz"**: 1,800 detained July 2025, **1,200+ disappeared by August** (no records, no location)
|
||||
- **Chaofeng Ge** (August 5, 2025): Found dead "hog-tied" with bedsheet. ICE report omitted bound hands/feet. No Mandarin speakers at facility.
|
||||
- **25 deaths in ICE custody in 2025** - highest in 20 years (36 total during Trump's entire first presidency including COVID)
|
||||
- **ICE detention hit 60,000** (August/September) - highest ever recorded
|
||||
- **$50K sign-on bonuses** for police to join ICE; $60K loan forgiveness
|
||||
- **Largest single-site raid**: 475 arrests (Georgia Hyundai plant, September 4)
|
||||
|
||||
### Epstein Files & Presidential Complicity
|
||||
- Thousands of documents released throughout 2025
|
||||
- Epstein emails (2019): Trump "knew about the girls" (underage victims)
|
||||
- Epstein email (2011): "[Victim] spent hours at my house with him"
|
||||
- **Jane Doe lawsuit (2016)**: Alleged Trump and Epstein raped her at 13. Sworn declaration: "I loudly pleaded with Defendant Trump to stop... he responded by violently striking me in the face... screaming he would do whatever he wanted." Case dropped after death threats.
|
||||
- Trump's response: Called demands a "hoax," supporters "stupid" and "foolish"
|
||||
|
||||
---
|
||||
|
||||
## GLOBAL CONFLICTS (Partial Documentation)
|
||||
|
||||
### Israel-Gaza
|
||||
- Systematic documentation of civilian casualties
|
||||
- 70,000+ Palestinians killed (November 2025 figures)
|
||||
- Ongoing genocide documentation
|
||||
|
||||
### Ukraine-Russia
|
||||
- 39,081+ civilian casualties documented (October 2024 data point)
|
||||
- Grinding war continuing through 2025
|
||||
|
||||
### Middle East - Israel/Iran
|
||||
- Twelve-day war sources documented
|
||||
- Regional escalation
|
||||
|
||||
---
|
||||
|
||||
## THE EPISTEMOLOGICAL CRISIS
|
||||
|
||||
> "Large Language Models have become 'the monster in the wood of 1000 faces'—the oracle that accumulates petitioners until it becomes the infrastructure of thought itself. We know things that are unknowable about things that aren't tangible."
|
||||
|
||||
The Orwellian strategy: **Bombard with so much horror that we cannot stay afloat.** The system creates so much chaos so fast that no one can track it, let alone resist.
|
||||
|
||||
**This document exists as counter-strategy: comprehensive witness.**
|
||||
|
||||
---
|
||||
|
||||
## Personal Context: Casey Tunturi
|
||||
- **Location**: Home, preparing for farm trip (March 23, 2026)
|
||||
- **Activity**: Archiving collapse while living through it
|
||||
- **Method**: Systematic extraction and documentation of 30+ events from 2025
|
||||
- **Sources**: Verified through web search, major news organizations, UN, Amnesty International, government sources, court documents
|
||||
|
||||
---
|
||||
|
||||
## Technology/Infrastructure (Functional Islands)
|
||||
- Letta server running (10.10.20.19:8283) ✓
|
||||
- Matrix bridges operational ✓
|
||||
- Deluge downloads active ✓
|
||||
- UniFi MCP working ✓
|
||||
|
||||
---
|
||||
|
||||
## Breaking News - March 22, 2026
|
||||
|
||||
### 🚨 MAJOR ESCALATION: US-ISRAEL STRIKE ON IRAN NUCLEAR FACILITY 🚨
|
||||
**March 22, 2026 - TODAY**
|
||||
|
||||
- **US and Israel struck Iran's Natanz nuclear facility**
|
||||
- 48-hour ultimatum issued this morning
|
||||
- **Nuclear infrastructure now attacked** - risk of radioactive contamination
|
||||
- **Regional war escalating rapidly**
|
||||
- Iran had threatened to close Strait of Hormuz (20% of world oil passes through)
|
||||
- Now nuclear facilities being hit
|
||||
- **This is beyond the 2025 pattern - active military escalation against nuclear infrastructure**
|
||||
|
||||
### Previous Today:
|
||||
- Trump gives Iran 48 hours to reopen Hormuz
|
||||
- ICE agents being sent to airports
|
||||
- Shutdown chaos deepening
|
||||
|
||||
---
|
||||
|
||||
## THE PATTERN
|
||||
|
||||
1. Issue sweeping directive
|
||||
2. Create chaos
|
||||
3. Courts block it
|
||||
4. "Rescind" while keeping underlying orders
|
||||
5. Continue implementing anyway while ignoring courts
|
||||
6. Supreme Court eventually allows
|
||||
7. Repeat
|
||||
|
||||
**This is not business as usual. This is the documentation of systematic collapse.**
|
||||
|
||||
---
|
||||
|
||||
*Compiled from resistance archive: /home/ani/Projects/WEB/CaseyTunturi.com/resistance/*
|
||||
*Source files: WITNESS-comprehensive-2025.md (64KB), global_collapse_2025.md (39KB), The World in Collapse_ December 2025.pdf (107KB)*
|
||||
*30 extracted events spanning January-December 2025*
|
||||
@@ -5,7 +5,7 @@ limit: 10000
|
||||
|
||||
# Synthetic API Quota
|
||||
|
||||
**Last Updated:** 2026-03-22T17:00:01-04:00
|
||||
**Last Updated:** 2026-03-23T15:20:00-04:00
|
||||
|
||||
## Current Status
|
||||
|
||||
@@ -14,20 +14,20 @@ limit: 10000
|
||||
{
|
||||
"subscription": {
|
||||
"limit": 335,
|
||||
"requests": 51,
|
||||
"renewsAt": "2026-03-22T23:50:38.155Z"
|
||||
"requests": 92,
|
||||
"renewsAt": "2026-03-23T20:10:52.428Z"
|
||||
},
|
||||
"search": {
|
||||
"hourly": {
|
||||
"limit": 250,
|
||||
"requests": 0,
|
||||
"renewsAt": "2026-03-22T22:00:02.155Z"
|
||||
"renewsAt": "2026-03-23T20:20:01.428Z"
|
||||
}
|
||||
},
|
||||
"freeToolCalls": {
|
||||
"limit": 1250,
|
||||
"requests": 300,
|
||||
"renewsAt": "2026-03-23T13:28:37.333Z"
|
||||
"requests": 281.5,
|
||||
"renewsAt": "2026-03-24T13:51:03.591Z"
|
||||
}
|
||||
}
|
||||
```
|
||||
@@ -69,4 +69,4 @@ synu
|
||||
|
||||
| Timestamp | Status | Notes |
|
||||
|-------------|--------|-------|
|
||||
| 2026-03-22 17:00 | ✅ checked | Auto-check |
|
||||
| 2026-03-23 15:20 | ✅ checked | Auto-check |
|
||||
|
||||
46
system/temp-reminders/bridgerton-completion-check.md
Normal file
46
system/temp-reminders/bridgerton-completion-check.md
Normal file
@@ -0,0 +1,46 @@
|
||||
---
|
||||
created: 2026-03-22 19:44
|
||||
check_times: ["20:30", "21:30", "22:30"]
|
||||
status: downloading
|
||||
---
|
||||
|
||||
# Download Completion Check
|
||||
|
||||
## Bridgerton
|
||||
- **S01**: Complete season (1080p WEB-DL) - ~2% downloading
|
||||
- **S02**: Complete season (1080p WEB-DL) - ~5% downloading
|
||||
- **S03**: Complete season (1080p x265-AMBER) - ~0.4% downloading
|
||||
- **S04**: E01-E08 all episodes (1080p WEB h264) - downloading
|
||||
|
||||
## The Amazing Digital Circus (requested by Lilith via Casey)
|
||||
- **S01E01-E04**: All found episodes (1080p WEB/WEB-DL) - downloading
|
||||
- Note: E05-E06 not yet available on TPB
|
||||
|
||||
## Source Location
|
||||
`/mnt/WIUF10TB/deluge_downloads/`
|
||||
|
||||
## Destination Location
|
||||
`/mnt/WIUF10TB/Shared Media/TV/Bridgerton/`
|
||||
- Season 1/
|
||||
- Season 2/
|
||||
- Season 3/
|
||||
- Season 4/
|
||||
|
||||
## Completion Workflow (per fetch-torrent skill)
|
||||
1. Check Deluge for completed torrents (100% + Seeding/Paused)
|
||||
2. Pause each completed torrent
|
||||
3. Verify files in download directory
|
||||
4. Check destination exists (create Season X folders if needed)
|
||||
5. Check for duplicates (case-insensitive)
|
||||
6. Move files to appropriate Season folder
|
||||
7. Remove torrent from Deluge
|
||||
8. Verify in destination
|
||||
|
||||
## Check Schedule
|
||||
- [ ] 8:30 PM check
|
||||
- [ ] 9:30 PM check
|
||||
- [ ] 10:30 PM check
|
||||
|
||||
## Notes
|
||||
Requested by Pat via Casey.
|
||||
All 4 seasons (S01-S04) added to Deluge at ~7:30 PM.
|
||||
Reference in New Issue
Block a user