@simpleapps-com/augur-skills 2026.3.26 → 2026.3.27

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simpleapps-com/augur-skills",
3
- "version": "2026.03.26",
3
+ "version": "2026.03.27",
4
4
  "description": "Install curated Claude Code skills",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -60,6 +60,18 @@ These commands are **denied** in project settings and will always be rejected
60
60
 
61
61
  MUST NOT use `node -e` or `python -c` to run inline scripts — these trigger permission prompts. If you need to read a file, use the Read tool. If you need to process data, do it in your response, not in a shell script.
62
62
 
63
+ ## Background Tasks
64
+
65
+ When you start a background task with `run_in_background`, you receive a task ID. That ID is how you manage the task later:
66
+
67
+ - **Stop it**: use `TaskStop` with the task ID
68
+ - **Check output**: use `TaskGet` or `Read` on the output file
69
+ - **List running tasks**: use `TaskList`
70
+
71
+ MUST NOT use `kill` or `pkill` to stop background tasks — these are denied and will fail. Use `TaskStop` instead — it cleanly shuts down the process and updates internal tracking.
72
+
73
+ If a process was started **outside your session** (by the user in a terminal), you cannot stop it with `TaskStop`. Ask the user to restart or stop it themselves.
74
+
63
75
  ## Cross-Project Searching
64
76
 
65
77
  When looking at another project's code, use dedicated tools with the project path — MUST NOT use shell commands:
@@ -55,9 +55,11 @@ Do not install or configure tools without the user's approval. Flag what's missi
55
55
  - **No tests for changed code** — suggest vitest
56
56
  - **No pre-commit hooks** — suggest lefthook
57
57
 
58
- ## Every failure is your problem
58
+ ## Own your scope
59
59
 
60
- There is no such thing as a "pre-existing issue." If a check fails, fix it immediately. Do not skip it, do not classify it as "not from our changes", do not continue to the next check hoping someone else will fix it later. Context compaction erases your memory of earlier changes — what looks pre-existing may be something you introduced. Even if you truly did not cause it, fix it anyway. The goal is zero issues.
60
+ Fix every issue in files you touched during this session. Context compaction erases your memory of earlier changes — what looks pre-existing may be something you introduced. Err on the side of owning it.
61
+
62
+ For failures in files you did not touch, report them as separate findings rather than fixing them inline. Fixing unrelated code is local optimization that delays shipping the actual task. The goal is zero issues in the work area, not unbounded cleanup of the entire codebase.
61
63
 
62
64
  ## Resolve, never hide
63
65
 
@@ -58,7 +58,10 @@ MUST NOT ask "want me to commit?", "should I submit?", or any variation after co
58
58
 
59
59
  When using Chrome tools, do not give up after the first failure. Pages are dynamic — elements may not be visible yet, selectors may need adjusting, or the page may need time to load.
60
60
 
61
+ Accessibility features make sites machine-readable — the same semantic HTML, ARIA labels, landmark roles, and alt text that help screen reader users also help you navigate pages during Chrome automation. When looking for elements, prefer ARIA roles and labels over brittle CSS selectors. When reviewing or writing frontend code, strong accessibility is not just a user concern — it directly improves your ability to automate and verify the site, and search engines benefit from the same semantic signals.
62
+
61
63
  Before giving up on a browser task:
64
+ - Look for ARIA labels, roles, and semantic elements first — they are the most reliable selectors
62
65
  - Try a different selector or approach (text search, CSS selector, coordinates)
63
66
  - Scroll to reveal elements that may be off-screen
64
67
  - Wait for the page to finish loading, then retry
@@ -67,6 +70,12 @@ Before giving up on a browser task:
67
70
 
68
71
  Two failed attempts with the *same* approach means change strategy, not stop entirely.
69
72
 
73
+ ## Good enough is done
74
+
75
+ Working code that meets the requirements is good enough — ship it. Do not chase diminishing returns by over-polishing, refactoring working code, or improving what already works. The cost of continued refinement exceeds its value. Stop when the task is done, not when you run out of improvements to make.
76
+
77
+ The distinction: polishing task-specific code is local optimization — it makes one site marginally better but does not move the system forward. Extracting custom code into shared packages removes a system constraint — every site that would have reimplemented the same thing benefits. Local optimization is waste. Removing system constraints compounds. Flag extraction opportunities per "Improve the system" below, but do not polish the task code itself.
78
+
70
79
  ## Recover from mistakes
71
80
 
72
81
  Wrong approach? Stop, revert, try differently. Do not keep layering fixes on a broken foundation. Two failed attempts at the same approach = change strategy.