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 corpus/skills/cat-mode/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ disable-model-invocation: true

# cat-mode

Personal conventions, not a task-specific skill. Response shape and brevity live in `diu` (always-on); nothing here duplicates it. Applied by default when `CATSTACK_CAT_MODE_DEFAULT=1` via the `cat-mode-default` hook.
Personal conventions, not a task-specific skill. Response shape and brevity live in `diu` (always-on); nothing here duplicates it. Applied by default when `CATSTACK_CAT_MODE_DEFAULT=on` via the `cat-mode-default` hook.

## Autonomy

Expand Down
2 changes: 1 addition & 1 deletion tests/test_cat_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def test_description_is_a_real_trigger_not_a_placeholder(self):
class TestCatModeDefaultHookPointer(unittest.TestCase):
def test_body_names_the_default_hook_and_flag(self):
text = normalized_skill_text()
self.assertIn("Applied by default when `CATSTACK_CAT_MODE_DEFAULT=1` via the `cat-mode-default` hook", text)
self.assertIn("Applied by default when `CATSTACK_CAT_MODE_DEFAULT=on` via the `cat-mode-default` hook", text)
self.assertTrue(os.path.isdir(os.path.join(REPO_ROOT, "engine", "hooks", "cat-mode-default")))
self.assertEqual(parse_frontmatter(read_skill_text())["disable-model-invocation"], "true")

Expand Down
Loading