@simplysm/claude 13.0.2 → 13.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.
@@ -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.2",
4
+ "version": "13.0.7",
5
5
  "description": "Simplysm Claude Code skills/agents — auto-installs via postinstall",
6
6
  "author": "김석래",
7
7
  "repository": {
@@ -27,6 +27,15 @@ try {
27
27
  process.exit(0);
28
28
  }
29
29
 
30
+ // simplysm 모노레포 자체에서는 실행하지 않음
31
+ const projectPkgPath = path.join(projectRoot, "package.json");
32
+ if (fs.existsSync(projectPkgPath)) {
33
+ const projectPkg = JSON.parse(fs.readFileSync(projectPkgPath, "utf-8"));
34
+ if (projectPkg.name === "simplysm") {
35
+ process.exit(0);
36
+ }
37
+ }
38
+
30
39
  // 소스 디렉토리가 없으면 건너뜀 (모노레포 개발 환경에서는 claude/ 미존재)
31
40
  if (!fs.existsSync(sourceDir)) {
32
41
  process.exit(0);