Remove duplication between global and main CLAUDE.md#800
Open
mokagio wants to merge 2 commits intoqwibitai:mainfrom
Open
Remove duplication between global and main CLAUDE.md#800mokagio wants to merge 2 commits intoqwibitai:mainfrom
mokagio wants to merge 2 commits intoqwibitai:mainfrom
Conversation
That was the same content as in the `CLAUDE.md` in global. Given the global instructions are injected in every group, including main, the duplication, while harmless, was wasted tokens.
The message formatting instructions in main were more nuanced that those in global. Moving them to global removes the final bit of duplication between the two `CLAUDE.md` and propagates the improved instructions to all groups.
pillaiinfotechbot
pushed a commit
to pillaiinfotechbot/nanoclaw-updated
that referenced
this pull request
Mar 30, 2026
The PHP heartbeat cron (cron qwibitai#2) was disabled as part of migration to NanoClaw scheduling. However, the poller was still only fetching in_progress tasks, which were never transitioned from pending state. This left 18 critical tasks stuck. Updated poller to fetch both pending AND in_progress tasks, replacing the PHP cron dependency. Tasks now flow: pending → inject → in_progress → executed. This unblocks critical infrastructure tasks (qwibitai#781, qwibitai#794, qwibitai#796, qwibitai#798, qwibitai#800) that were queued since the 24h outage yesterday. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Type of Change
.claude/skills/Description
Removes information in main
CLAUDE.mdduplicated from the one in global.Given the one in global is injected in all groups, having the same info in main, while harmless, seems a waste of tokens.
The only info that had diverged was regarding message formatting.
I decided to use the version from main, porting it to global, because it seemed more nuanced.