Initial seed for an autonomous, self-extending Minecraft player powered by Pi (pi.dev) and Mineflayer. Includes README, AGENTS.md mandate, .env.example, MIT LICENSE, package.json with mineflayer + dotenv, and empty skills/ extensions/ prompts/ dirs for the agent to grow into. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
35 lines
479 B
Plaintext
35 lines
479 B
Plaintext
# Secrets — NEVER commit a populated .env
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Node
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Pi runtime state — sessions, caches, locally-installed extensions
|
|
.pi/
|
|
sessions/
|
|
*.session.json
|
|
|
|
# Bot runtime state — generated by skills (e.g. joined-before flag, inventory snapshots)
|
|
state/
|
|
logs/
|
|
*.log
|
|
|
|
# OS / editor
|
|
.DS_Store
|
|
Thumbs.db
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Build artefacts
|
|
dist/
|
|
build/
|
|
*.tsbuildinfo
|