@anthropic-ai/claude-code 2.1.204 → 2.1.205

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/cli-wrapper.cjs CHANGED
@@ -37,8 +37,6 @@ const PLATFORMS = {
37
37
  pkg: PACKAGE_PREFIX + '-linux-x64-android',
38
38
  bin: BINARY_NAME,
39
39
  },
40
- 'freebsd-x64': { pkg: PACKAGE_PREFIX + '-freebsd-x64', bin: BINARY_NAME },
41
- 'freebsd-arm64': { pkg: PACKAGE_PREFIX + '-freebsd-arm64', bin: BINARY_NAME },
42
40
  'win32-x64': {
43
41
  pkg: PACKAGE_PREFIX + '-win32-x64',
44
42
  bin: BINARY_NAME + '.exe',
@@ -89,6 +87,11 @@ function getBinaryPath() {
89
87
  console.error(
90
88
  `[${WRAPPER_NAME}] Unsupported platform: ${process.platform} ${arch()}. Supported: ${Object.keys(PLATFORMS).join(', ')}`,
91
89
  )
90
+ if (process.platform === 'freebsd') {
91
+ console.error(
92
+ ' FreeBSD is not natively supported on this version of Claude Code. Consider running under Linuxulator.',
93
+ )
94
+ }
92
95
  process.exit(1)
93
96
  }
94
97
  const optionalDeps = require('./package.json').optionalDependencies || {}
package/install.cjs CHANGED
@@ -50,8 +50,6 @@ const PLATFORMS = {
50
50
  pkg: PACKAGE_PREFIX + '-linux-x64-android',
51
51
  bin: BINARY_NAME,
52
52
  },
53
- 'freebsd-x64': { pkg: PACKAGE_PREFIX + '-freebsd-x64', bin: BINARY_NAME },
54
- 'freebsd-arm64': { pkg: PACKAGE_PREFIX + '-freebsd-arm64', bin: BINARY_NAME },
55
53
  'win32-x64': {
56
54
  pkg: PACKAGE_PREFIX + '-win32-x64',
57
55
  bin: BINARY_NAME + '.exe',
@@ -149,6 +147,11 @@ function main() {
149
147
  `[${WRAPPER_NAME} postinstall] Unsupported platform: ${process.platform} ${arch()}`,
150
148
  )
151
149
  console.error(` Supported: ${Object.keys(PLATFORMS).join(', ')}`)
150
+ if (process.platform === 'freebsd') {
151
+ console.error(
152
+ ' FreeBSD is not natively supported on this version of Claude Code. Consider running under Linuxulator.',
153
+ )
154
+ }
152
155
  return
153
156
  }
154
157
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthropic-ai/claude-code",
3
- "version": "2.1.204",
3
+ "version": "2.1.205",
4
4
  "bin": {
5
5
  "claude": "bin/claude.exe"
6
6
  },
@@ -21,14 +21,14 @@
21
21
  },
22
22
  "dependencies": {},
23
23
  "optionalDependencies": {
24
- "@anthropic-ai/claude-code-darwin-arm64": "2.1.204",
25
- "@anthropic-ai/claude-code-darwin-x64": "2.1.204",
26
- "@anthropic-ai/claude-code-linux-x64": "2.1.204",
27
- "@anthropic-ai/claude-code-linux-arm64": "2.1.204",
28
- "@anthropic-ai/claude-code-linux-x64-musl": "2.1.204",
29
- "@anthropic-ai/claude-code-linux-arm64-musl": "2.1.204",
30
- "@anthropic-ai/claude-code-win32-x64": "2.1.204",
31
- "@anthropic-ai/claude-code-win32-arm64": "2.1.204"
24
+ "@anthropic-ai/claude-code-darwin-arm64": "2.1.205",
25
+ "@anthropic-ai/claude-code-darwin-x64": "2.1.205",
26
+ "@anthropic-ai/claude-code-linux-x64": "2.1.205",
27
+ "@anthropic-ai/claude-code-linux-arm64": "2.1.205",
28
+ "@anthropic-ai/claude-code-linux-x64-musl": "2.1.205",
29
+ "@anthropic-ai/claude-code-linux-arm64-musl": "2.1.205",
30
+ "@anthropic-ai/claude-code-win32-x64": "2.1.205",
31
+ "@anthropic-ai/claude-code-win32-arm64": "2.1.205"
32
32
  },
33
33
  "files": [
34
34
  "bin/claude.exe",
package/sdk-tools.d.ts CHANGED
@@ -360,6 +360,7 @@ export type ArtifactOutput =
360
360
  };
361
361
  warnings?: string[];
362
362
  contract?: string;
363
+ updated?: boolean;
363
364
  }
364
365
  | {
365
366
  artifacts: {
@@ -518,7 +519,7 @@ export interface TaskOutputInput {
518
519
  }
519
520
  export interface ExitPlanModeInput {
520
521
  /**
521
- * Prompt-based permissions needed to implement the plan. These describe categories of actions rather than specific commands.
522
+ * Deprecated: no longer used.
522
523
  */
523
524
  allowedPrompts?: {
524
525
  /**