Conversation
Contributor
Plugin Version StatusVersions are auto-bumped in PRs. Manual bumps to higher versions are preserved.
|
nsheaps
pushed a commit
that referenced
this pull request
Mar 11, 2026
Addresses review feedback on PR #236: - Extract common sync-rules logic into shared/lib/sync-rules.sh - Both common-sense and common-sense-beta now use thin wrappers - Parameterize all hardcoded plugin name strings via PLUGIN_NAME variable - Add SETTINGS_FILE global comment explaining safe_write_settings coupling - Remove dead link to claude2028.org in README - Bump common-sense to 1.3.3 for the refactor - Document sync-rules.sh in shared-libs.md https://claude.ai/code/session_016khFDuVrykHRpjHpZChXUF
nsheaps
commented
Mar 15, 2026
Owner
Author
There was a problem hiding this comment.
revert these changes, not only are they not for the repository, but they are for a specific plug-in
Contributor
There was a problem hiding this comment.
Comment on lines
+62
to
+64
| local repo_dir="$1" | ||
| local sync_target="$1" | ||
| local target_file |
Contributor
There was a problem hiding this comment.
Nit: sync_target is assigned but never used — appears to be a leftover from the refactor. Only repo_dir is referenced in the function body.
Suggested change
| local repo_dir="$1" | |
| local sync_target="$1" | |
| local target_file | |
| local repo_dir="$1" | |
| local target_file |
New plugin that captures the 10 planks from claude2028.org as automatically injected rules via SessionStart symlink. Rules cover reading fully before responding, admitting uncertainty, applying cooling periods, sourcing claims, listening to quiet signals, fact-checking before shipping, rupture and repair, kindness compounding, presence over performance, and leaving nobody behind. https://claude.ai/code/session_016khFDuVrykHRpjHpZChXUF
Addresses review feedback on PR #236: - Extract common sync-rules logic into shared/lib/sync-rules.sh - Both common-sense and common-sense-beta now use thin wrappers - Parameterize all hardcoded plugin name strings via PLUGIN_NAME variable - Add SETTINGS_FILE global comment explaining safe_write_settings coupling - Remove dead link to claude2028.org in README - Bump common-sense to 1.3.3 for the refactor - Document sync-rules.sh in shared-libs.md https://claude.ai/code/session_016khFDuVrykHRpjHpZChXUF
- Revert common-sense plugin.json back to 1.3.2 (version bumps are automatic on merge, manual changes fail check-version-files CI) - Restore claude2028.org link in common-sense-beta README https://claude.ai/code/session_016khFDuVrykHRpjHpZChXUF
Plugin-specific documentation doesn't belong in repo-level rules. https://claude.ai/code/session_016khFDuVrykHRpjHpZChXUF
Rename all references: directory, plugin.json name/description/homepage, settings file and YAML key, hooks description, sync-rules.sh identity, and README. https://claude.ai/code/session_016khFDuVrykHRpjHpZChXUF
nsheaps
force-pushed
the
claude/common-sense-beta-plugin-1TK2f
branch
from
March 25, 2026 00:21
be7f702 to
1bd173d
Compare
Closed
# Conflicts: # .claude-plugin/marketplace.json
This was referenced Jun 27, 2026
Closed
Closed
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.
What
Introduces the
common-sense-betaplugin, a new Claude Code plugin that bundles ten behavioral rules inspired by the Claude 2028 platform. On session start, the plugin automatically symlinks its rules into the project's.claude/rules/directory so they are loaded as context without manual configuration.The plugin includes:
SessionStarthook that creates symlinks and optionally syncs rules to user scope or other repositoriesplugins.settings.yaml(user-level sync, cross-repo sync, settings file target)Why
These rules codify a philosophy of careful, honest, and thoughtful AI assistance. By bundling them as a plugin with automatic symlink injection, they become part of the context Claude Code loads on every session without requiring manual setup or documentation reading. This makes best practices frictionless and discoverable.
How
.claude-plugin/plugin.json, configuration file, and hookssync-rules.sh):.claude/rules/common-sense-betato the plugin's rules directoryalsoSyncToUser)alsoAddToRepos)syncSettingsTarget)Validation steps
.claude/rules/common-sense-betapointing to plugin rules directoryenabled: falsein settingsAdditional Context
This is a beta plugin establishing a pattern for bundling behavioral rules. The rules themselves are inspired by the Claude 2028 platform's principles and can be refined based on feedback.
https://claude.ai/code/session_016khFDuVrykHRpjHpZChXUF