core: regenerate CORE.md
This commit is contained in:
parent
95889583e6
commit
cd8be0b6ed
28
CORE.md
28
CORE.md
@ -1,5 +1,5 @@
|
||||
# Memory Core (auto-generated)
|
||||
> Last updated: 2026-02-13 | Active memories: 4/316 | Next refresh: manual
|
||||
> Last updated: 2026-02-13 | Active memories: 4/324 | Next refresh: manual
|
||||
|
||||
## Critical Solutions
|
||||
|
||||
@ -9,15 +9,15 @@
|
||||
- [Play lock context manager refactor - locked_play](graph/solutions/play-lock-context-manager-refactor-locked-play-1f7cd0.md) - Created command_logic/play_context.py with locked_play async context manager. (paper-dynasty, python, fix)
|
||||
- [Fix for play lock never released on exception](graph/solutions/fix-for-play-lock-never-released-on-exception-5d8e1f.md) - Implemented 3-layer defense against stuck play locks: (1) Added release_play_... (paper-dynasty, python, discord-bot)
|
||||
- [Gitea Actions runner offline - must use internal URL not public domain](graph/solutions/gitea-actions-runner-offline-must-use-internal-url-not-publi-f46835.md) - Problem: Gitea Actions runner showing as 'Offline' in admin UI, jobs stuck in... (gitea, ci-cd, actions)
|
||||
- [Gitea Actions: Docker buildx registry cache auth fix](graph/solutions/gitea-actions-docker-buildx-registry-cache-auth-fix-856511.md) - When using Docker buildx with registry-based cache (cache-from/cache-to type=... (gitea, docker, ci-cd)
|
||||
- [Discord bot dynamic configuration with live reload](graph/solutions/discord-bot-dynamic-configuration-with-live-reload-8bd768.md) - Implemented /add-project command for Claude Discord Coordinator that adds pro... (discord-bot, python, discord.py)
|
||||
- [Stdlib-only YAML frontmatter parsing for markdown memory files](graph/solutions/stdlib-only-yaml-frontmatter-parsing-for-markdown-memory-fil-312bc2.md) - Built a complete YAML frontmatter parser/serializer using only Python stdlib... (cognitive-memory, python, architecture)
|
||||
- [Brave ERR_SSL_UNRECOGNIZED_NAME fix for local reverse proxy with Cloudflare DNS](graph/solutions/brave-err-ssl-unrecognized-name-fix-for-local-reverse-proxy-82d410.md) - Chromium-based browsers (Brave, Chrome, Edge) fail with ERR_SSL_UNRECOGNIZED_... (brave, chrome, ssl)
|
||||
- [Docker-in-LXC requires AppArmor unconfined on Proxmox](graph/solutions/docker-in-lxc-requires-apparmor-unconfined-on-proxmox-384eeb.md) - When creating a Proxmox LXC container to run Docker, the container needs AppA... (proxmox, docker, lxc)
|
||||
- [Circular import fix: move shared utilities to standalone module](graph/solutions/circular-import-fix-move-shared-utilities-to-standalone-modu-1c7958.md) - When two modules import from each other, create a standalone module for share... (python, circular-import, architecture)
|
||||
|
||||
## Active Decisions
|
||||
|
||||
- [Agent delegation requires careful review of edge cases](graph/decisions/agent-delegation-requires-careful-review-of-edge-cases-a3f466.md) - When delegating implementation tasks to engineer agents, they reliably handle... (cognitive-memory, agent-delegation, code-review)
|
||||
- [Wave-based agent delegation avoids file contention](graph/decisions/wave-based-agent-delegation-avoids-file-contention-23bb23.md) - When delegating multiple tasks to agents that all modify the same file, run t... (cognitive-memory, agent-delegation, pattern)
|
||||
- [Agent delegation requires careful review of edge cases](graph/decisions/agent-delegation-requires-careful-review-of-edge-cases-a3f466.md) - When delegating implementation tasks to engineer agents, they reliably handle... (cognitive-memory, agent-delegation, code-review)
|
||||
- [Production deployment checklist for Paper Dynasty bot](graph/decisions/production-deployment-checklist-for-paper-dynasty-bot-638ac8.md) - CRITICAL: Always verify bot startup in production logs after deployment. (paper-dynasty, discord-bot, deployment)
|
||||
- [Mantimon TCG Engine: Highly Configurable Design](graph/decisions/mantimon-tcg-engine-highly-configurable-design-c06fae.md) - The game engine must be extremely configurable to support 'free play' mode wh... (mantimon-tcg, architecture, decision)
|
||||
- [Store DeckConfig with Decks](graph/decisions/store-deckconfig-with-decks-cfc068.md) - When a deck is created, the DeckConfig used for validation should be persiste... (mantimon-tcg, architecture, decision)
|
||||
@ -30,35 +30,29 @@
|
||||
## Key Fixes
|
||||
|
||||
- [Successfully fixed Paper Dynasty API 502 errors via manual Pi-hole DNS cleanup](graph/fixes/successfully-fixed-paper-dynasty-api-502-errors-via-manual-p-01944b.md) - Paper Dynasty API (pd.manticorum.com) was returning 502 Bad Gateway errors (paper-dynasty, pihole, v6)
|
||||
- [PostgreSQL migration: get_team_by_owner returns wrong team](graph/fixes/postgresql-migration-get-team-by-owner-returns-wrong-team-c9f0d6.md) - After PostgreSQL migration, get_team_by_owner() in discord-app returned the g... (paper-dynasty, postgresql, migration)
|
||||
- [PostgreSQL migration: DateTimeField defaults must be datetime objects](graph/fixes/postgresql-migration-datetimefield-defaults-must-be-datetime-03a346.md) - Paperdex and GauntletRun models had DateTimeField(default=int(datetime.timest... (paper-dynasty, postgresql, migration)
|
||||
- [PostgreSQL migration: get_team_by_owner returns wrong team](graph/fixes/postgresql-migration-get-team-by-owner-returns-wrong-team-c9f0d6.md) - After PostgreSQL migration, get_team_by_owner() in discord-app returned the g... (paper-dynasty, postgresql, migration)
|
||||
- [Missing logger import causes NameError in Python modules](graph/fixes/missing-logger-import-causes-nameerror-in-python-modules-7b6d18.md) - Common bug when adding logging to existing Python code: calling logger.info()... (python, logging, bug)
|
||||
- [Added default ORDER BY id to BattingCardRatings.select() in list endpoints](graph/fixes/added-default-order-by-id-to-battingcardratingsselect-in-lis-6423a9.md) - Updated battingcardratings.py to add .order_by(BattingCardRatings.id) to thre... (paper-dynasty, python, postgresql)
|
||||
- [Add default ORDER BY id to GameRewards.select() list endpoint](graph/fixes/add-default-order-by-id-to-gamerewardsselect-list-endpoint-5ad98d.md) - Modified gamerewards.py GET list endpoint to use GameRewards.select().order_b... (paper-dynasty, python, postgres-migration)
|
||||
- [Add default ORDER BY id to PackType list endpoint](graph/fixes/add-default-order-by-id-to-packtype-list-endpoint-1679f2.md) - Modified GET /api/v2/packtypes endpoint to include default ordering: PackType... (paper-dynasty, postgresql, migration)
|
||||
- [Added default ORDER BY id to notifications list endpoint](graph/fixes/added-default-order-by-id-to-notifications-list-endpoint-ad7d61.md) - Modified GET /api/v2/notifs endpoint in app/routers_v2/notifications.py to ad... (paper-dynasty, postgresql, migration)
|
||||
- [Added default ORDER BY id to MlbPlayer.select() endpoint](graph/fixes/added-default-order-by-id-to-mlbplayerselect-endpoint-0670d2.md) - Added .order_by(MlbPlayer.id) to the GET /mlbplayers list endpoint (line 85 i... (paper-dynasty, postgresql, migration)
|
||||
- [Added default ordering to StratPlay list endpoint](graph/fixes/added-default-ordering-to-stratplay-list-endpoint-e22444.md) - Added .order_by(StratPlay.id) to StratPlay.select() in the GET list endpoint... (paper-dynasty, postgresql, migration)
|
||||
- [Added default ordering to PitchingStat list endpoint](graph/fixes/added-default-ordering-to-pitchingstat-list-endpoint-08952b.md) - Added .order_by(PitchingStat.id) to the main GET list endpoint in pitstats.py... (paper-dynasty, postgresql, migration)
|
||||
|
||||
## Configurations
|
||||
|
||||
- [Discord bot systemd service with environment variables](graph/configurations/discord-bot-systemd-service-with-environment-variables-d0e2e9.md) - Systemd service setup for Claude Discord Coordinator bot running as non-root... (discord-bot, systemd, deployment)
|
||||
- [major-domo-v2 main branch is protected on Gitea](graph/configurations/major-domo-v2-main-branch-is-protected-on-gitea-bfee3e.md) - The main branch on cal/major-domo-v2 (Gitea) is protected. (major-domo, gitea, config)
|
||||
- [CLAUDE.md: mandatory post-commit memories + claude-memory alias](graph/configurations/claudemd-mandatory-post-commit-memories-claude-memory-alias-a33977.md) - Updated CLAUDE.md to make post-commit memory storage mandatory (not optional). (claude-config, cognitive-memory, configuration)
|
||||
- [Uptime Kuma deployed on LXC 227](graph/configurations/uptime-kuma-deployed-on-lxc-227-35400a.md) - Uptime Kuma service monitoring deployed on Proxmox LXC 227 (10.10.0.227). (uptime-kuma, monitoring, homelab)
|
||||
- [OpenCode agent model configuration](graph/configurations/opencode-agent-model-configuration-33fa68.md) - Configured default models for OpenCode agents in ~/.config/opencode/opencode.... (opencode, configuration, models)
|
||||
|
||||
## Patterns & Workflows
|
||||
|
||||
- [CLAUDE.md audit and optimization workflow](graph/workflows/claudemd-audit-and-optimization-workflow-2bab84.md) - When CLAUDE.md files get bloated, audit by category: (1) Historical changelog... (claude-code, optimization, workflow)
|
||||
- [CRITICAL: Git commit requires explicit user approval](graph/workflows/critical-git-commit-requires-explicit-user-approval-c253c9.md) - Before ANY git commit/add/push/deploy command, STOP and verify: (paper-dynasty, major-domo, git)
|
||||
- [Global slash commands are .md files in ~/.claude/commands/](graph/code-patterns/global-slash-commands-are-md-files-in-claudecommands-e9e6a1.md) - Claude Code global slash commands live in ~/.claude/commands/<name>.md. (claude-code, pattern, slash-commands)
|
||||
- [Optional locking parameter pattern for read vs write commands](graph/code-patterns/optional-locking-parameter-pattern-for-read-vs-write-command-88bbf5.md) - In Paper Dynasty, added lock_play parameter (default=True) to checks_log_inte... (paper-dynasty, python, discord-bot)
|
||||
- [Paper Dynasty: 2005 Live Series card update workflow (mid-season)](graph/workflows/paper-dynasty-2005-live-series-card-update-workflow-mid-seas-2937a9.md) - Task**: Update 2005 Live cardset through end of July (mid-season update) (paper-dynasty, cardset, 2005)
|
||||
- [Deploy Major Domo with feature branch workflow and Docker BuildKit workaround](graph/workflows/deploy-major-domo-with-feature-branch-workflow-and-docker-bu-a88203.md) - Workflow**: Successfully deployed dem_week feature to production using featur... (major-domo, deployment, workflow)
|
||||
|
||||
## Known Issues
|
||||
|
||||
- [Play lock never released on exception - causes permanent user lockout](graph/problems/play-lock-never-released-on-exception-causes-permanent-user-9b70e3.md) - The play locking system in checks_log_interaction() sets play.locked=True and... (paper-dynasty, python, discord-bot)
|
||||
- [Paper Dynasty bot freeze from duplicate X-Check interaction submissions](graph/problems/paper-dynasty-bot-freeze-from-duplicate-x-check-interaction-711ea5.md) - Bot event loop freezes when user double-submits X-Check corrections (clicking... (paper-dynasty, discord-bot, sqlalchemy)
|
||||
- [Violated git commit approval - deployed without permission](graph/problems/violated-git-commit-approval-deployed-without-permission-a62147.md) - 2026-02-04: Fixed gauntlet-9 KeyError bug in Paper Dynasty database API. (paper-dynasty, database, git)
|
||||
- [Pi-hole v6 DNS sync script needs update for new TOML config format](graph/problems/pi-hole-v6-dns-sync-script-needs-update-for-new-toml-config-dc3ed1.md) - The npm-pihole-sync.sh script at /mnt/NV2/Development/claude-home/server-conf... (pihole, npm, dns)
|
||||
- [Critical: Wrong API parameter name - used 'dem_week' instead of 'demotion_week'](graph/errors/critical-wrong-api-parameter-name-used-dem-week-instead-of-d-0d5b86.md) - Error**: Player team updates sent wrong parameter name to API, causing dem_we... (major-domo, python, api)
|
||||
- [Intermittent SSL connection failures from internal network](graph/problems/intermittent-ssl-connection-failures-from-internal-network-1d9b21.md) - Symptom: ERR_SSL_UNRECOGNIZED_NAME_ALERT appears intermittently when accessin... (networking, dns, ssl)
|
||||
- [Gitea API 403 Forbidden - insufficient token scopes](graph/problems/gitea-api-403-forbidden-insufficient-token-scopes-1052e9.md) - PROBLEM: Gitea API returned 403 Forbidden with message 'token does not have a... (gitea, api, authentication)
|
||||
- [Production crash: Missing Optional import in type hint caused NameError](graph/errors/production-crash-missing-optional-import-in-type-hint-caused-ffdfef.md) - Error**: Bot crashed on production startup with 'NameError: name Optional is... (major-domo, python, production)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user