@simplysm/claude 13.0.0-beta.49 → 13.0.0-beta.51

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/README.md CHANGED
@@ -34,7 +34,7 @@ Updates also trigger reinstallation (`pnpm up @simplysm/claude`).
34
34
  claude/
35
35
  sd-statusline.js # Status line script
36
36
  rules/
37
- sd-context7.md # Context7 MCP rule
37
+ sd-simplysm-docs.md # Local README documentation rule
38
38
  agents/
39
39
  sd-code-reviewer.md # Code review agent
40
40
  sd-code-simplifier.md # Code simplification agent
@@ -303,12 +303,13 @@ Reviews a library's public API for developer experience (DX) quality. Uses confi
303
303
 
304
304
  ## Rules
305
305
 
306
- ### sd-context7
306
+ ### sd-simplysm-docs
307
307
 
308
- Configures Context7 MCP for looking up `@simplysm/*` package documentation. The library ID is pre-configured as `/kslhunter/simplysm`.
308
+ Instructs Claude to read `@simplysm/*` package documentation from local `node_modules/` README.md files. Includes an embedded package list so Claude can immediately identify which package to look up.
309
309
 
310
310
  ```
311
- query-docs(libraryId="/kslhunter/simplysm", query="<your question>")
311
+ # Claude automatically reads when needing @simplysm/* docs:
312
+ node_modules/@simplysm/{package-name}/README.md
312
313
  ```
313
314
 
314
315
  ## Status Line
@@ -0,0 +1,7 @@
1
+ # Language
2
+
3
+ Respond in the **system's configured language** (set via Claude Code's language setting).
4
+
5
+ - Technical terms, code identifiers (variable names, function names, etc.), and library names should remain as-is
6
+ - Show English error messages and logs in their original form, but provide explanations in the system language
7
+ - Files in `.claude/` folder and each package's `README.md` are written in English for consistent documentation
@@ -0,0 +1,13 @@
1
+ # Function Naming Conventions
2
+
3
+ - Do not use `Async` suffix on function names — Async is the default
4
+ - When both sync and async versions exist, use `Sync` suffix on the sync function
5
+
6
+ ```typescript
7
+ // Good
8
+ async function readFile() { ... } // Async (default)
9
+ function readFileSync() { ... } // Sync version
10
+
11
+ // Bad
12
+ async function readFileAsync() { ... } // Async suffix prohibited
13
+ ```
@@ -0,0 +1,52 @@
1
+ # @simplysm Package Documentation
2
+
3
+ When you need API details, usage examples, or component props for `@simplysm/*` packages,
4
+ read the package's README.md from node_modules.
5
+
6
+ ## How to use
7
+
8
+ Read the package README directly:
9
+
10
+ ```
11
+ node_modules/@simplysm/{package-name}/README.md
12
+ ```
13
+
14
+ If not found (pnpm hoisting), try:
15
+
16
+ ```
17
+ packages/*/node_modules/@simplysm/{package-name}/README.md
18
+ ```
19
+
20
+ ## When to use
21
+
22
+ **MANDATORY**: Read the relevant README BEFORE any of the following:
23
+
24
+ - Writing new code that uses `@simplysm/*` APIs
25
+ - Fixing type errors or bugs in code that uses `@simplysm/*` APIs
26
+ - Making assumptions about type mappings (e.g., DB column types → TypeScript types)
27
+ - Refactoring or migrating code that depends on `@simplysm/*` packages
28
+
29
+ Do NOT guess API behavior or type mappings — always verify from the README first.
30
+
31
+ ## Available Packages
32
+
33
+ | Package | Description |
34
+ |---------|-------------|
35
+ | `core-common` | Common utilities, custom types (DateTime, DateOnly, Time, Uuid) |
36
+ | `core-browser` | Browser-specific extensions |
37
+ | `core-node` | Node.js utilities (filesystem, workers) |
38
+ | `orm-common` | ORM query builder, table schema definitions |
39
+ | `orm-node` | DB connectors (MySQL, MSSQL, PostgreSQL) |
40
+ | `service-common` | Service protocol, type definitions |
41
+ | `service-client` | WebSocket client |
42
+ | `service-server` | Fastify-based HTTP/WebSocket server |
43
+ | `solid` | SolidJS UI components + Tailwind CSS |
44
+ | `excel` | Excel (.xlsx) read/write |
45
+ | `storage` | FTP/SFTP client |
46
+ | `sd-cli` | Build, lint, typecheck CLI tool |
47
+ | `claude` | Claude Code skills/agents (auto-installs via postinstall) |
48
+ | `eslint-plugin` | Custom ESLint rules |
49
+ | `capacitor-plugin-auto-update` | Auto update |
50
+ | `capacitor-plugin-broadcast` | Broadcast |
51
+ | `capacitor-plugin-file-system` | File system |
52
+ | `capacitor-plugin-usb-storage` | USB storage |
@@ -0,0 +1,3 @@
1
+ # Workflow Rules
2
+
3
+ - **No auto-proceeding after skill completion**: When the user explicitly invokes a skill, report the result and **stop** once the skill finishes. Do not guess the next step and proceed arbitrarily. Wait for explicit user instructions if further work is needed.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@simplysm/claude",
3
3
  "sideEffects": false,
4
- "version": "13.0.0-beta.49",
4
+ "version": "13.0.0-beta.51",
5
5
  "description": "Simplysm Claude Code skills/agents — auto-installs via postinstall",
6
6
  "author": "김석래",
7
7
  "repository": {
@@ -1,28 +0,0 @@
1
- # Simplysm Documentation via Context7 MCP
2
-
3
- When you need to look up usage examples or API details for `@simplysm/*` packages, use the Context7 MCP tools.
4
-
5
- The simplysm library is registered as `/kslhunter/simplysm` on Context7.
6
-
7
- **IMPORTANT**: Context7 documentation is only available for **v13+ (beta onwards)**. v12 and earlier versions have NO documentation on Context7. If working with v12 code, do NOT rely on Context7 — read the source code directly instead.
8
-
9
- ## How to use
10
-
11
- Skip `resolve-library-id` (the ID is already known) and call `query-docs` directly:
12
-
13
- ```
14
- query-docs(libraryId="/kslhunter/simplysm", query="<your question>")
15
- ```
16
-
17
- ## Example queries
18
-
19
- - `query-docs(libraryId="/kslhunter/simplysm", query="How to define ORM table with columns and primary key")`
20
- - `query-docs(libraryId="/kslhunter/simplysm", query="SolidJS Select component usage")`
21
- - `query-docs(libraryId="/kslhunter/simplysm", query="ServiceClient WebSocket RPC call")`
22
- - `query-docs(libraryId="/kslhunter/simplysm", query="DateTime custom type usage")`
23
-
24
- ## When to use
25
-
26
- - Before writing code that uses an unfamiliar `@simplysm/*` API
27
- - When unsure about component props, method signatures, or configuration options
28
- - When looking for usage patterns or code examples within the framework