kaide 1.0.6 → 1.0.7

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": "kaide",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "AI-native architecture kit for modern React. High-discipline protocols for autonomous agents.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -16,7 +16,7 @@ alwaysApply: true
16
16
  - **Minimal Intervention:** Modify only necessary areas.
17
17
  - **Source of Truth:** Reference the codebase. Correct it if erroneous.
18
18
  - **Boy Scout:** Clean unused imports, `console.log`, and dead code.
19
- - **Naming:** `kebab-case` for folders/non-component files; `PascalCase` for React components.
19
+ - **Naming:** `kebab-case` for folders/non-component files; `PascalCase` for React components. File type suffixes: `*.types.ts`, `*.constants.ts`, `*.config.ts`, `*.test.ts`, `*.spec.ts`, `*.stories.tsx`, `*.schema.ts`, `*.api.ts`, `*.store.ts` (base name in kebab-case).
20
20
  - **Exports:** Group exports with `index.ts`.
21
21
  - **No Silent Failures:** Do not swallow errors. Manage `try/catch` blocks.
22
22
  - **Secret Protection:** Do not log `.env` content.