⚠️ IMPORTANT: This file should ONLY be edited through thetodo.aiscript!
-
#103 Joke task 5: Misaligned box error
#joke#testInvent a playful error message for a misaligned box.
-
#102 Joke task 4: Linting ASCII art
#joke#test
| # https://github.com/fxstein/GoProX | |
| # .github/workflows/release.yml - Automatic creation of sha256 for release tarball | |
| name: goprox release action | |
| run-name: ${{ github.actor }} is publishing release ${{ github.ref_name }} | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| sha256: |
| #!/usr/bin/env bash | |
| # ============================================================ | |
| # PI CLIENT SETUP — Connect any Mac to Pi via SSH | |
| # Usage: curl -fsSL https://raw.githubusercontent.com/pionizer/pi-infra/main/setup-client.sh | bash | |
| # ============================================================ | |
| set -euo pipefail | |
| echo "🥧 Pi Client Setup" | |
| echo "" |
| #!/usr/bin/env bash | |
| # ============================================================ | |
| # PI BOOTSTRAP — Set up a fresh Mac Mini as a Pi instance | |
| # Usage: curl -fsSL <gist-url> | bash | |
| # | |
| # Prerequisites: macOS, admin user, internet | |
| # Everything else is installed by this script. | |
| # ============================================================ | |
| set -euo pipefail |
Date: 2026-02-10 Context: Conversation between Oliver and Pi about solving agent memory drift
Pi (running on OpenClaw) loses working context when the LLM context window fills up and gets compacted. This is not an OpenClaw-specific bug — it's a fundamental limitation of all LLM agents. Context windows are finite; when they overflow, conversational state is summarized and the active working details are lost.
| #!/usr/bin/env bash | |
| # pion-remote — Remote infrastructure CLI for pionizer.ai | |
| # Manage your Pi instance from any machine over SSH + 1Password | |
| # | |
| # Install (requires gh CLI authenticated to pionizer org): | |
| # gh api repos/pionizer/pi-infra/contents/scripts/pion-remote.sh --jq .content | base64 -d \ | |
| # | sudo tee /usr/local/bin/pion-remote > /dev/null && sudo chmod +x /usr/local/bin/pion-remote | |
| # shellcheck disable=SC2310,SC2029,SC2015,SC2312 # Functions in conditions and SSH command expansions are intentional | |
| # | |
| # First run: |