@telemetryos/cli 1.8.2 → 1.9.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @telemetryos/cli
2
2
 
3
+ ## 1.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Upgrade weather SDK and weather development tools
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @telemetryos/development-application-host-ui@1.9.0
13
+
14
+ ## 1.8.3
15
+
16
+ ### Patch Changes
17
+
18
+ - Fix issue where uninitialized store hooks could set values
19
+
20
+ Store hooks could call setValue() before isLoading was true. Now this does nothing and logs an error.
21
+
22
+ - Updated dependencies
23
+ - @telemetryos/development-application-host-ui@1.8.3
24
+
3
25
  ## 1.8.2
4
26
 
5
27
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telemetryos/cli",
3
- "version": "1.8.2",
3
+ "version": "1.9.0",
4
4
  "description": "The official TelemetryOS application CLI package. Use it to build applications that run on the TelemetryOS platform",
5
5
  "type": "module",
6
6
  "bin": {
@@ -25,7 +25,7 @@
25
25
  "license": "",
26
26
  "repository": "github:TelemetryTV/Application-API",
27
27
  "dependencies": {
28
- "@telemetryos/development-application-host-ui": "^1.8.2",
28
+ "@telemetryos/development-application-host-ui": "^1.9.0",
29
29
  "@types/serve-handler": "^6.1.4",
30
30
  "commander": "^14.0.0",
31
31
  "inquirer": "^12.9.6",
@@ -0,0 +1,7 @@
1
+ # Agent Guidelines
2
+
3
+ This document outlines guidelines for interacting with and developing for AI agents within this project.
4
+
5
+ ## Important Notes
6
+
7
+ * **Claude-specific Guidelines:** If you are working with Claude models, please refer to `CLAUDE.md` for specific guidelines and best practices.
@@ -11,7 +11,8 @@
11
11
  "Skill(tos-store-sync)",
12
12
  "Skill(tos-weather-api)",
13
13
  "Bash(npm run build:*)",
14
- "Bash(npm run dev:*)"
14
+ "Bash(npm run dev:*)",
15
+ "WebFetch(domain:docs.telemetryos.com)"
15
16
  ]
16
17
  }
17
18
  }
@@ -24,3 +24,7 @@ npm-debug.log*
24
24
  pnpm-debug.log*
25
25
  yarn-debug.log*
26
26
  yarn-error.log*
27
+
28
+ # Claude Code
29
+ .claude/settings.local.json
30
+ .claude/CLAUDE.local.md
@@ -6,5 +6,13 @@ export default defineConfig({
6
6
  plugins: [
7
7
  typescript(),
8
8
  react(),
9
+ {
10
+ name: 'suppress-urls',
11
+ configureServer(server) {
12
+ return () => {
13
+ server.printUrls = () => { }
14
+ }
15
+ },
16
+ },
9
17
  ],
10
18
  })