@kortexya/reasoninglayer 1.3.0 → 1.5.1

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
@@ -245,17 +245,21 @@ pnpm run build # Build (dual ESM/CJS + .d.ts)
245
245
  pnpm run typecheck # Type check (tsc --noEmit)
246
246
  pnpm test # Run tests
247
247
  pnpm run test:watch # Watch mode
248
- pnpm run generate-manifest # Generate endpoint manifest from OpenAPI spec
249
- pnpm run check-completeness # Report SDK coverage vs. OpenAPI spec
250
- pnpm run sync-check # Compare generated vs hand-written types
248
+ pnpm run lint # Lint (eslint src/ tests/)
249
+ pnpm run test:ci # Full gate: typecheck + lint + test
250
+ pnpm run update-api-spec [url] # Fetch backend OpenAPI spec + regenerate src/api-spec/generated/
251
251
  pnpm run docs:build # Build documentation site
252
252
  ```
253
253
 
254
+ > After a backend API change, run the `/sync-api` Claude Code skill to regenerate the
255
+ > generated layer and propagate the delta across the hand-written types, normalizers,
256
+ > resources, builders, client wiring, exports, and tests.
257
+
254
258
  ## Compatibility
255
259
 
256
260
  | SDK Version | Min Backend Version | Node | Browser |
257
261
  |-------------|-------------------|------|---------|
258
- | 0.1.0 | Latest | 18+ | ES2022+ |
262
+ | 1.4.0 | Latest | 18+ | ES2022+ |
259
263
 
260
264
  ## License
261
265