Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "trimkit",
"version": "0.5.0",
"version": "0.5.1",
"description": "Claude Code guardrails and utilities",
"repository": {
"type": "git",
Expand Down
14 changes: 14 additions & 0 deletions settings/claude-md.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# TrimKit Hook Compatibility

## Always pull before branching

Before creating a worktree, branch, or starting any feature work, pull the
latest from the remote main branch first:

```bash
git pull --ff-only origin main
```

Branching from stale code leads to unnecessary rebases and merge conflicts.
Do this every time — no exceptions.

## No-chaining hook

TrimKit installs a `no-chaining` hook that blocks `&&`, `||`, and unsafe pipes
in Bash tool calls. Use the patterns below to avoid triggering it.

Expand Down
Loading