@fias/arche-sdk 1.5.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.
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fias/arche-sdk",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "SDK for building FIAS platform plugin arches",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -288,6 +288,19 @@ These are hard limits enforced by the platform. Code that violates these will fa
288
288
 
289
289
  ## Development Workflow
290
290
 
291
+ ### Check for Updates (DO THIS FIRST)
292
+
293
+ **At the start of every new session**, check if the FIAS packages and tooling are up to date:
294
+
295
+ ```bash
296
+ npm outdated @fias/arche-sdk @fias/plugin-dev-harness
297
+ npx fias-dev sync --dry-run
298
+ ```
299
+
300
+ If newer package versions are available, tell the user and ask if they want to update before proceeding. Stale packages can cause subtle bugs (e.g., mismatched API return types) that are hard to diagnose.
301
+
302
+ If `sync --dry-run` shows pending changes, tell the user and offer to run `npx fias-dev sync` to update AI instruction files and config from the latest SDK templates. This never touches source code or project-specific files (`package.json`, `fias-plugin.json`, `src/`).
303
+
291
304
  ### Starting Development
292
305
 
293
306
  ```bash
@@ -288,6 +288,19 @@ These are hard limits enforced by the platform. Code that violates these will fa
288
288
 
289
289
  ## Development Workflow
290
290
 
291
+ ### Check for Updates (DO THIS FIRST)
292
+
293
+ **At the start of every new session**, check if the FIAS packages and tooling are up to date:
294
+
295
+ ```bash
296
+ npm outdated @fias/arche-sdk @fias/plugin-dev-harness
297
+ npx fias-dev sync --dry-run
298
+ ```
299
+
300
+ If newer package versions are available, tell the user and ask if they want to update before proceeding. Stale packages can cause subtle bugs (e.g., mismatched API return types) that are hard to diagnose.
301
+
302
+ If `sync --dry-run` shows pending changes, tell the user and offer to run `npx fias-dev sync` to update AI instruction files and config from the latest SDK templates. This never touches source code or project-specific files (`package.json`, `fias-plugin.json`, `src/`).
303
+
291
304
  ### Starting Development
292
305
 
293
306
  ```bash