@fission-ai/openspec 0.9.0 → 0.9.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.
@@ -4,6 +4,7 @@ import { SlashCommandConfigurator } from "./base.js";
4
4
  import { TemplateManager } from "../../templates/index.js";
5
5
  import { FileSystemUtils } from "../../../utils/file-system.js";
6
6
  import { OPENSPEC_MARKERS } from "../../config.js";
7
+ // Use POSIX-style paths for consistent logging across platforms.
7
8
  const FILE_PATHS = {
8
9
  proposal: ".codex/prompts/openspec-proposal.md",
9
10
  apply: ".codex/prompts/openspec-apply.md",
@@ -70,7 +70,9 @@ export class UpdateCommand {
70
70
  summaryParts.push(`Updated AI tool files: ${aiToolFiles.join(', ')}`);
71
71
  }
72
72
  if (updatedSlashFiles.length > 0) {
73
- summaryParts.push(`Updated slash commands: ${updatedSlashFiles.join(', ')}`);
73
+ // Normalize to forward slashes for cross-platform log consistency
74
+ const normalized = updatedSlashFiles.map((p) => p.replace(/\\/g, '/'));
75
+ summaryParts.push(`Updated slash commands: ${normalized.join(', ')}`);
74
76
  }
75
77
  const failedItems = [
76
78
  ...failedFiles,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fission-ai/openspec",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "AI-native system for spec-driven development",
5
5
  "keywords": [
6
6
  "openspec",