@scotthamilton77/sidekick 0.1.15 → 0.1.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/sidekick/defaults/features/reminders.defaults.yaml +28 -0
- package/dist/bin.js +7478 -6923
- package/dist/daemon.js +6784 -6299
- package/package.json +1 -1
|
@@ -18,6 +18,34 @@ settings:
|
|
|
18
18
|
user-prompt-submit: 10
|
|
19
19
|
remember-your-persona: 5
|
|
20
20
|
|
|
21
|
+
# Command runner prefixes that trigger unanchored pattern matching.
|
|
22
|
+
# When a bash command starts with one of these prefixes, the tool pattern
|
|
23
|
+
# matcher drops its first-token anchor and scans for the tool name at any
|
|
24
|
+
# position. This allows commands like 'uv run mypy' to match pattern 'mypy'.
|
|
25
|
+
# Array merge strategy: replace (project/user config replaces defaults entirely).
|
|
26
|
+
command_runners:
|
|
27
|
+
# Python
|
|
28
|
+
- prefix: "uv run"
|
|
29
|
+
- prefix: "poetry run"
|
|
30
|
+
- prefix: "pipx run"
|
|
31
|
+
- prefix: "pdm run"
|
|
32
|
+
- prefix: "hatch run"
|
|
33
|
+
- prefix: "conda run"
|
|
34
|
+
# Node.js
|
|
35
|
+
- prefix: "npx"
|
|
36
|
+
- prefix: "pnpx"
|
|
37
|
+
- prefix: "bunx"
|
|
38
|
+
- prefix: "pnpm dlx"
|
|
39
|
+
- prefix: "pnpm exec"
|
|
40
|
+
- prefix: "bun run"
|
|
41
|
+
- prefix: "yarn dlx"
|
|
42
|
+
- prefix: "yarn exec"
|
|
43
|
+
- prefix: "npm exec"
|
|
44
|
+
# Ruby
|
|
45
|
+
- prefix: "bundle exec"
|
|
46
|
+
# .NET
|
|
47
|
+
- prefix: "dotnet tool run"
|
|
48
|
+
|
|
21
49
|
# Glob patterns that trigger verify-completion reminder on file edit.
|
|
22
50
|
# Uses picomatch syntax: https://github.com/micromatch/picomatch
|
|
23
51
|
# Only edits to files matching these patterns will stage the reminder.
|