@homebridge-plugins/homebridge-eufy-security 4.6.0-beta.21 → 4.6.0-beta.22
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.
|
@@ -47,6 +47,10 @@ If either fails, fix the issue immediately. Do not commit code that doesn't lint
|
|
|
47
47
|
|
|
48
48
|
Follow the git workflow from CLAUDE.md. Stage each logical change individually.
|
|
49
49
|
|
|
50
|
+
## Chaining
|
|
51
|
+
|
|
52
|
+
After committing, automatically invoke the **qa** skill to verify the changes before pushing. Do not wait for the user to ask -- QA is part of the development flow.
|
|
53
|
+
|
|
50
54
|
## When things go wrong
|
|
51
55
|
|
|
52
56
|
- **Lint failure**: Fix the warning. Don't disable the rule.
|
|
@@ -88,6 +88,10 @@ Output the plan in this format:
|
|
|
88
88
|
|
|
89
89
|
Wait for the user to approve, modify, or reject before proceeding.
|
|
90
90
|
|
|
91
|
+
## Chaining
|
|
92
|
+
|
|
93
|
+
When the user approves the plan (says "go", "looks good", "approved", "do it", etc.), immediately invoke the **developer** skill to execute it. Pass the approved plan as context -- do not ask the user to repeat it.
|
|
94
|
+
|
|
91
95
|
## What NOT to do
|
|
92
96
|
|
|
93
97
|
- Never start editing files during planning
|
|
@@ -65,6 +65,11 @@ Read the full diff and check for: accidental debug logging, hardcoded values tha
|
|
|
65
65
|
### Ready to push: YES / NO
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
+
## Chaining
|
|
69
|
+
|
|
70
|
+
- **If QA passes**: Ask the user if they want to push and/or create a PR.
|
|
71
|
+
- **If QA fails**: Fix issues that are safe to fix silently (typos, missing `.js` extensions). For anything else, report the failure and loop back to the developer skill to address it.
|
|
72
|
+
|
|
68
73
|
## When to flag vs fix
|
|
69
74
|
|
|
70
75
|
- **Typos in your own changes**: Fix silently
|
package/dist/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const LIB_VERSION = "4.6.0-beta.
|
|
1
|
+
export const LIB_VERSION = "4.6.0-beta.22";
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "Homebridge Eufy Security",
|
|
3
3
|
"name": "@homebridge-plugins/homebridge-eufy-security",
|
|
4
|
-
"version": "4.6.0-beta.
|
|
4
|
+
"version": "4.6.0-beta.22",
|
|
5
5
|
"description": "Control Eufy Security from homebridge.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "Apache-2.0",
|