@mytechtoday/augment-extensions 1.2.2 → 1.3.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.
Files changed (87) hide show
  1. package/LICENSE +22 -22
  2. package/augment-extensions/domain-rules/software-architecture/README.md +143 -143
  3. package/augment-extensions/domain-rules/software-architecture/examples/banking-layered.md +961 -961
  4. package/augment-extensions/domain-rules/software-architecture/examples/ecommerce-microservices.md +990 -990
  5. package/augment-extensions/domain-rules/software-architecture/examples/iot-eventdriven.md +882 -882
  6. package/augment-extensions/domain-rules/software-architecture/examples/monolith-to-microservices-migration.md +703 -703
  7. package/augment-extensions/domain-rules/software-architecture/examples/serverless-imageprocessing.md +957 -957
  8. package/augment-extensions/domain-rules/software-architecture/examples/trading-eventdriven.md +747 -747
  9. package/augment-extensions/domain-rules/software-architecture/module.json +119 -119
  10. package/augment-extensions/domain-rules/software-architecture/rules/challenges-solutions.md +763 -763
  11. package/augment-extensions/domain-rules/software-architecture/rules/definitions-terminology.md +409 -409
  12. package/augment-extensions/domain-rules/software-architecture/rules/design-principles.md +684 -684
  13. package/augment-extensions/domain-rules/software-architecture/rules/evaluation-testing.md +1381 -1381
  14. package/augment-extensions/domain-rules/software-architecture/rules/event-driven-architecture.md +616 -616
  15. package/augment-extensions/domain-rules/software-architecture/rules/fundamentals.md +306 -306
  16. package/augment-extensions/domain-rules/software-architecture/rules/industry-architectures.md +554 -554
  17. package/augment-extensions/domain-rules/software-architecture/rules/layered-architecture.md +776 -776
  18. package/augment-extensions/domain-rules/software-architecture/rules/microservices-architecture.md +503 -503
  19. package/augment-extensions/domain-rules/software-architecture/rules/modeling-documentation.md +1199 -1199
  20. package/augment-extensions/domain-rules/software-architecture/rules/monolithic-architecture.md +351 -351
  21. package/augment-extensions/domain-rules/software-architecture/rules/principles.md +556 -556
  22. package/augment-extensions/domain-rules/software-architecture/rules/quality-attributes.md +797 -797
  23. package/augment-extensions/domain-rules/software-architecture/rules/scalability-performance.md +1345 -1345
  24. package/augment-extensions/domain-rules/software-architecture/rules/security-architecture.md +1039 -1039
  25. package/augment-extensions/domain-rules/software-architecture/rules/serverless-architecture.md +711 -711
  26. package/augment-extensions/domain-rules/software-architecture/rules/skills-development.md +568 -568
  27. package/augment-extensions/domain-rules/software-architecture/rules/tools-methodologies.md +961 -961
  28. package/augment-extensions/visual-design/CHANGELOG.md +132 -0
  29. package/augment-extensions/visual-design/README.md +255 -0
  30. package/augment-extensions/visual-design/__tests__/README.md +119 -0
  31. package/augment-extensions/visual-design/__tests__/style-selector.test.ts +172 -0
  32. package/augment-extensions/visual-design/__tests__/vendor-styles.test.ts +214 -0
  33. package/augment-extensions/visual-design/domains/other/ai-prompt-helper.ts +157 -0
  34. package/augment-extensions/visual-design/domains/other/dotnet-application.ts +156 -0
  35. package/augment-extensions/visual-design/domains/other/linux-platform.ts +156 -0
  36. package/augment-extensions/visual-design/domains/other/mobile-application.ts +157 -0
  37. package/augment-extensions/visual-design/domains/other/motion-picture.ts +156 -0
  38. package/augment-extensions/visual-design/domains/other/os-application.ts +156 -0
  39. package/augment-extensions/visual-design/domains/other/print-campaigns.ts +158 -0
  40. package/augment-extensions/visual-design/domains/other/web-app.ts +157 -0
  41. package/augment-extensions/visual-design/domains/other/website.ts +161 -0
  42. package/augment-extensions/visual-design/domains/other/windows-platform.ts +156 -0
  43. package/augment-extensions/visual-design/domains/web-page-styles/amazon-cloudscape.ts +506 -0
  44. package/augment-extensions/visual-design/domains/web-page-styles/google-modern.ts +615 -0
  45. package/augment-extensions/visual-design/domains/web-page-styles/microsoft-fluent.ts +531 -0
  46. package/augment-extensions/visual-design/examples/README.md +97 -0
  47. package/augment-extensions/visual-design/examples/ai-prompt-generation.md +233 -0
  48. package/augment-extensions/visual-design/examples/basic-usage.md +216 -0
  49. package/augment-extensions/visual-design/examples/domain-workflows.md +257 -0
  50. package/augment-extensions/visual-design/examples/vendor-comparison.md +247 -0
  51. package/augment-extensions/visual-design/module.json +78 -0
  52. package/augment-extensions/visual-design/style-selector.ts +177 -0
  53. package/augment-extensions/visual-design/types.ts +302 -0
  54. package/augment-extensions/visual-design/visual-design-core.ts +469 -0
  55. package/augment-extensions/workflows/adr-support/README.md +227 -0
  56. package/augment-extensions/workflows/adr-support/__tests__/adr-validator.test.ts +203 -0
  57. package/augment-extensions/workflows/adr-support/adr-validator.ts +162 -0
  58. package/augment-extensions/workflows/adr-support/examples/complete-lifecycle-example.md +449 -0
  59. package/augment-extensions/workflows/adr-support/examples/integration-example.md +580 -0
  60. package/augment-extensions/workflows/adr-support/examples/superseding-example.md +436 -0
  61. package/augment-extensions/workflows/adr-support/module.json +112 -0
  62. package/augment-extensions/workflows/adr-support/rules/adr-creation.md +372 -0
  63. package/augment-extensions/workflows/adr-support/rules/beads-integration.md +443 -0
  64. package/augment-extensions/workflows/adr-support/rules/conflict-detection.md +486 -0
  65. package/augment-extensions/workflows/adr-support/rules/decision-detection.md +362 -0
  66. package/augment-extensions/workflows/adr-support/rules/lifecycle-management.md +427 -0
  67. package/augment-extensions/workflows/adr-support/rules/openspec-integration.md +465 -0
  68. package/augment-extensions/workflows/adr-support/rules/template-selection.md +405 -0
  69. package/augment-extensions/workflows/adr-support/rules/validation-rules.md +543 -0
  70. package/augment-extensions/workflows/adr-support/schemas/adr-config.json +191 -0
  71. package/augment-extensions/workflows/adr-support/schemas/adr-metadata.json +172 -0
  72. package/augment-extensions/workflows/adr-support/templates/business-case.md +235 -0
  73. package/augment-extensions/workflows/adr-support/templates/madr-elaborate.md +197 -0
  74. package/augment-extensions/workflows/adr-support/templates/madr-simple.md +68 -0
  75. package/augment-extensions/workflows/adr-support/templates/nygard.md +84 -0
  76. package/augment-extensions/writing-standards/screenplay/rules/file-organization.md +213 -213
  77. package/augment-extensions/writing-standards/screenplay/utils/__tests__/file-organization.test.ts +169 -169
  78. package/augment-extensions/writing-standards/screenplay/utils/file-organization.ts +165 -165
  79. package/cli/dist/utils/auto-sync.js +19 -19
  80. package/package.json +5 -3
  81. package/augment-extensions/workflows/openspec/README.md +0 -96
  82. package/augment-extensions/workflows/openspec/examples/complete-change-example.md +0 -244
  83. package/augment-extensions/workflows/openspec/module.json +0 -54
  84. package/augment-extensions/workflows/openspec/rules/best-practices.md +0 -272
  85. package/augment-extensions/workflows/openspec/rules/manual-setup.md +0 -231
  86. package/augment-extensions/workflows/openspec/rules/spec-format.md +0 -236
  87. package/augment-extensions/workflows/openspec/rules/workflow.md +0 -214
@@ -146,25 +146,25 @@ function watchForChanges(beadsPath = '.beads/issues.jsonl', openspecDir = 'opens
146
146
  */
147
147
  function createGitHook(hookType = 'pre-commit', gitDir = '.git') {
148
148
  const hookPath = path.join(gitDir, 'hooks', hookType);
149
- const hookContent = `#!/bin/sh
150
- # Auto-sync coordination manifest
151
-
152
- # Sync Beads tasks
153
- if [ -f .beads/issues.jsonl ]; then
154
- echo "Syncing Beads tasks to coordination manifest..."
155
- augx sync beads
156
- fi
157
-
158
- # Sync OpenSpec specs
159
- if [ -d openspec ]; then
160
- echo "Syncing OpenSpec specs to coordination manifest..."
161
- augx sync openspec
162
- fi
163
-
164
- # Add coordination manifest to commit if changed
165
- if [ -f .augment/coordination.json ]; then
166
- git add .augment/coordination.json
167
- fi
149
+ const hookContent = `#!/bin/sh
150
+ # Auto-sync coordination manifest
151
+
152
+ # Sync Beads tasks
153
+ if [ -f .beads/issues.jsonl ]; then
154
+ echo "Syncing Beads tasks to coordination manifest..."
155
+ augx sync beads
156
+ fi
157
+
158
+ # Sync OpenSpec specs
159
+ if [ -d openspec ]; then
160
+ echo "Syncing OpenSpec specs to coordination manifest..."
161
+ augx sync openspec
162
+ fi
163
+
164
+ # Add coordination manifest to commit if changed
165
+ if [ -f .augment/coordination.json ]; then
166
+ git add .augment/coordination.json
167
+ fi
168
168
  `;
169
169
  fs.writeFileSync(hookPath, hookContent, { mode: 0o755 });
170
170
  console.log(`Created ${hookType} hook at ${hookPath}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mytechtoday/augment-extensions",
3
- "version": "1.2.2",
3
+ "version": "1.3.1",
4
4
  "description": "CLI tool for managing Augment Code AI extension modules",
5
5
  "main": "cli/dist/index.js",
6
6
  "bin": {
@@ -73,13 +73,15 @@
73
73
  "devDependencies": {
74
74
  "@types/inquirer": "^9.0.0",
75
75
  "@types/jest": "^30.0.0",
76
- "@types/node": "^20.0.0",
76
+ "@types/node": "^20.19.33",
77
77
  "@types/semver": "^7.5.0",
78
78
  "@typescript-eslint/eslint-plugin": "^6.0.0",
79
79
  "@typescript-eslint/parser": "^6.0.0",
80
80
  "eslint": "^8.50.0",
81
81
  "jest": "^29.7.0",
82
82
  "ts-jest": "^29.4.6",
83
- "typescript": "^5.2.0"
83
+ "ts-node": "^10.9.2",
84
+ "tsx": "^4.21.0",
85
+ "typescript": "^5.9.3"
84
86
  }
85
87
  }
@@ -1,96 +0,0 @@
1
- # OpenSpec Workflow Module
2
-
3
- **Spec-driven development (SDD) for AI coding assistants.**
4
-
5
- ## Overview
6
-
7
- OpenSpec provides a structured workflow for managing changes in AI-assisted development. It ensures humans and AI agents agree on specifications before implementation, reducing rework and improving code quality.
8
-
9
- ## Key Benefits
10
-
11
- - **Alignment Before Implementation**: Agree on specs before writing code
12
- - **Structured Change Management**: Proposals, specs, and tasks in organized folders
13
- - **Brownfield-Friendly**: Excellent for modifying existing features (1→n), not just greenfield (0→1)
14
- - **Version Controlled**: All specs stored in git alongside code
15
- - **AI Agent Compatible**: Works with any tool that reads AGENTS.md
16
-
17
- ## Installation Options
18
-
19
- ### Option 1: With CLI (Recommended)
20
-
21
- Install the OpenSpec CLI for full features:
22
-
23
- ```bash
24
- # npm
25
- npm install -g @fission-ai/openspec@latest
26
-
27
- # Nix
28
- nix run github:Fission-AI/OpenSpec -- init
29
-
30
- # Initialize in your project
31
- cd your-project
32
- openspec init
33
- ```
34
-
35
- **Benefits**: Validation, archiving, slash commands, auto-generated AGENTS.md
36
-
37
- ### Option 2: Without CLI (Manual)
38
-
39
- Follow the workflow manually without installing the CLI. See `rules/manual-setup.md` for instructions.
40
-
41
- **Benefits**: No installation required, works immediately
42
-
43
- **Limitations**: No validation, manual archiving, no slash commands
44
-
45
- ## Directory Structure
46
-
47
- ```
48
- your-project/
49
- ├── openspec/
50
- │ ├── AGENTS.md # AI agent instructions (auto-generated)
51
- │ ├── project.md # Project context and conventions
52
- │ ├── specs/ # Current specifications (source of truth)
53
- │ │ └── auth/
54
- │ │ └── spec.md
55
- │ └── changes/ # Proposed changes
56
- │ └── add-2fa/
57
- │ ├── proposal.md # Why and what
58
- │ ├── tasks.md # Implementation checklist
59
- │ ├── design.md # Technical decisions (optional)
60
- │ └── specs/ # Spec deltas (changes)
61
- │ └── auth/
62
- │ └── spec.md
63
- ```
64
-
65
- ## Workflow
66
-
67
- See `rules/workflow.md` for complete workflow documentation.
68
-
69
- **Quick Summary**:
70
-
71
- 1. **Draft Proposal** - Create change proposal with AI
72
- 2. **Review & Align** - Iterate on specs until agreement
73
- 3. **Implement** - AI implements tasks referencing specs
74
- 4. **Archive** - Merge approved changes into source specs
75
-
76
- ## Character Count
77
-
78
- This module contains comprehensive OpenSpec workflow documentation that exceeds the standard `.augment/` folder character limit.
79
-
80
- **Total**: ~25,000 characters across all rule files
81
-
82
- ## Contents
83
-
84
- - `rules/workflow.md` - Complete workflow guide
85
- - `rules/spec-format.md` - Specification format and delta syntax
86
- - `rules/manual-setup.md` - Manual setup without CLI
87
- - `rules/commands.md` - CLI command reference
88
- - `rules/best-practices.md` - Tips and patterns
89
- - `examples/` - Example specs and changes
90
-
91
- ## Learn More
92
-
93
- - **Homepage**: https://openspec.dev/
94
- - **GitHub**: https://github.com/Fission-AI/OpenSpec
95
- - **Documentation**: See `rules/` directory in this module
96
-
@@ -1,244 +0,0 @@
1
- # Complete OpenSpec Change Example
2
-
3
- This example shows a complete OpenSpec change from start to finish.
4
-
5
- ## Scenario
6
-
7
- Adding two-factor authentication (2FA) to an existing authentication system.
8
-
9
- ## Directory Structure
10
-
11
- ```
12
- openspec/
13
- ├── specs/
14
- │ └── auth/
15
- │ └── spec.md # Existing auth spec
16
- └── changes/
17
- └── add-2fa/
18
- ├── proposal.md # Why we need 2FA
19
- ├── tasks.md # Implementation steps
20
- └── specs/
21
- └── auth/
22
- └── spec.md # Changes to auth spec
23
- ```
24
-
25
- ## File: proposal.md
26
-
27
- ```markdown
28
- ---
29
- id: add-2fa
30
- relatedTasks: []
31
- relatedRules: [security-guidelines.md]
32
- status: draft
33
- ---
34
-
35
- # Add Two-Factor Authentication
36
-
37
- ## Motivation
38
-
39
- Users have requested stronger account security. Password-only authentication
40
- is insufficient for protecting sensitive user data. Industry best practices
41
- recommend 2FA for all accounts.
42
-
43
- ## Changes
44
-
45
- 1. Add OTP (One-Time Password) generation and verification
46
- 2. Modify login flow to require 2FA after password verification
47
- 3. Add user settings for 2FA enrollment and recovery codes
48
- 4. Add audit logging for 2FA events
49
-
50
- ## Impact
51
-
52
- ### Breaking Changes
53
- - All users will be required to enroll in 2FA on next login
54
- - Login API response changes to include 2FA challenge
55
-
56
- ### Database Changes
57
- - Add `otp_secret` column to users table
58
- - Create `otp_verification_logs` table
59
- - Add `recovery_codes` table
60
-
61
- ### Frontend Changes
62
- - New OTP input component
63
- - Updated login flow with 2FA step
64
- - New 2FA settings page
65
-
66
- ## Timeline
67
-
68
- - Database migration: 1 day
69
- - Backend implementation: 2-3 days
70
- - Frontend implementation: 2-3 days
71
- - Testing and rollout: 1 week
72
-
73
- ## Dependencies
74
-
75
- - TOTP library (e.g., pyotp, speakeasy)
76
- - QR code generation library
77
- ```
78
-
79
- ## File: tasks.md
80
-
81
- ```markdown
82
- # Implementation Tasks
83
-
84
- ## 1. Database Setup
85
- - [ ] 1.1 Add `otp_secret` column to users table (nullable initially)
86
- - [ ] 1.2 Create `otp_verification_logs` table with columns:
87
- - id, user_id, success, ip_address, timestamp
88
- - [ ] 1.3 Create `recovery_codes` table with columns:
89
- - id, user_id, code_hash, used, created_at
90
- - [ ] 1.4 Write and test migration script
91
- - [ ] 1.5 Add database indexes for performance
92
-
93
- ## 2. Backend Implementation
94
- - [ ] 2.1 Install TOTP library dependency
95
- - [ ] 2.2 Create OTP service with methods:
96
- - generate_secret()
97
- - generate_qr_code(secret)
98
- - verify_otp(secret, code)
99
- - [ ] 2.3 Add POST /api/auth/2fa/enroll endpoint
100
- - Generates secret and QR code
101
- - Returns QR code and recovery codes
102
- - [ ] 2.4 Add POST /api/auth/2fa/verify endpoint
103
- - Verifies OTP code
104
- - Issues JWT on success
105
- - [ ] 2.5 Modify POST /api/auth/login endpoint
106
- - Return 2FA challenge instead of JWT
107
- - Include temporary token for 2FA verification
108
- - [ ] 2.6 Add rate limiting to verification endpoint (3 attempts per 5 minutes)
109
- - [ ] 2.7 Add audit logging for all 2FA events
110
- - [ ] 2.8 Write unit tests for OTP service
111
- - [ ] 2.9 Write integration tests for 2FA endpoints
112
-
113
- ## 3. Frontend Implementation
114
- - [ ] 3.1 Create OTPInput component
115
- - 6-digit input with auto-focus
116
- - Paste support
117
- - Error state display
118
- - [ ] 3.2 Create 2FAEnrollment component
119
- - Display QR code
120
- - Show recovery codes
121
- - Confirmation step
122
- - [ ] 3.3 Update LoginForm component
123
- - Handle 2FA challenge response
124
- - Show OTP input after password verification
125
- - [ ] 3.4 Create 2FASettings page
126
- - Enable/disable 2FA
127
- - Regenerate recovery codes
128
- - View 2FA status
129
- - [ ] 3.5 Add 2FA status indicator to user profile
130
- - [ ] 3.6 Write component tests
131
-
132
- ## 4. Documentation
133
- - [ ] 4.1 Update API documentation
134
- - [ ] 4.2 Create user guide for 2FA enrollment
135
- - [ ] 4.3 Create admin guide for 2FA management
136
- - [ ] 4.4 Update security documentation
137
-
138
- ## 5. Testing & Rollout
139
- - [ ] 5.1 End-to-end testing
140
- - [ ] 5.2 Security review
141
- - [ ] 5.3 Performance testing
142
- - [ ] 5.4 Staged rollout plan
143
- - [ ] 5.5 Monitor error rates and user feedback
144
- ```
145
-
146
- ## File: specs/auth/spec.md (Delta)
147
-
148
- ```markdown
149
- ---
150
- id: auth/authentication
151
- relatedTasks: [bd-2fa1, bd-2fa2, bd-2fa3]
152
- relatedRules: [security-guidelines.md, module-development.md]
153
- status: active
154
- ---
155
-
156
- # Delta for Auth Specification
157
-
158
- ## ADDED Requirements
159
-
160
- ### Requirement: Two-Factor Authentication
161
- The system MUST require a second factor (OTP) during login for all users.
162
-
163
- #### Scenario: 2FA enrollment
164
- - GIVEN a user without 2FA enabled
165
- - WHEN the user accesses the 2FA settings page
166
- - THEN a QR code is generated
167
- - AND recovery codes are displayed
168
- - AND the user must verify an OTP to complete enrollment
169
-
170
- #### Scenario: Login with 2FA
171
- - GIVEN a user with 2FA enabled
172
- - WHEN the user submits valid credentials
173
- - THEN a 2FA challenge is returned
174
- - AND a temporary token is issued (valid for 5 minutes)
175
- - AND no JWT is issued until OTP verification
176
-
177
- #### Scenario: Valid OTP
178
- - GIVEN a user has received a 2FA challenge
179
- - WHEN the user submits a valid OTP within 5 minutes
180
- - THEN a JWT is issued
181
- - AND the user is logged in
182
- - AND the verification is logged
183
-
184
- #### Scenario: Invalid OTP
185
- - GIVEN a user has received a 2FA challenge
186
- - WHEN the user submits an invalid OTP
187
- - THEN an error message is displayed
188
- - AND the user can retry up to 3 times
189
- - AND after 3 failures, the temporary token is invalidated
190
-
191
- #### Scenario: Expired 2FA challenge
192
- - GIVEN a user has received a 2FA challenge
193
- - WHEN more than 5 minutes have passed
194
- - THEN the temporary token is invalid
195
- - AND the user must restart the login process
196
-
197
- ### Requirement: Recovery Codes
198
- The system MUST provide recovery codes for account recovery.
199
-
200
- #### Scenario: Generate recovery codes
201
- - WHEN a user enrolls in 2FA
202
- - THEN 10 recovery codes are generated
203
- - AND codes are displayed once
204
- - AND codes are hashed before storage
205
-
206
- #### Scenario: Use recovery code
207
- - GIVEN a user cannot access their OTP device
208
- - WHEN the user submits a valid recovery code
209
- - THEN the code is marked as used
210
- - AND a JWT is issued
211
- - AND the user is logged in
212
-
213
- ## MODIFIED Requirements
214
-
215
- ### Requirement: User Authentication
216
- The system SHALL issue a JWT on successful login after password and 2FA verification.
217
-
218
- #### Scenario: Valid credentials (MODIFIED)
219
- - WHEN a user submits valid credentials
220
- - THEN if 2FA is enabled, a 2FA challenge is returned (CHANGED)
221
- - AND if 2FA is disabled, a JWT is returned (CHANGED)
222
- - AND the login attempt is logged
223
-
224
- ## REMOVED Requirements
225
-
226
- (None for this change)
227
- ```
228
-
229
- ## After Implementation
230
-
231
- Once all tasks are complete, archive the change:
232
-
233
- ### With CLI
234
- ```bash
235
- openspec archive add-2fa --yes
236
- ```
237
-
238
- ### Without CLI
239
- 1. Copy the delta from `openspec/changes/add-2fa/specs/auth/spec.md`
240
- 2. Apply ADDED/MODIFIED sections to `openspec/specs/auth/spec.md`
241
- 3. Move `openspec/changes/add-2fa/` to `openspec/archive/add-2fa/`
242
-
243
- The source spec now includes all 2FA requirements as the new source of truth.
244
-
@@ -1,54 +0,0 @@
1
- {
2
- "name": "openspec-workflow",
3
- "version": "1.0.0",
4
- "displayName": "OpenSpec Workflow",
5
- "description": "Spec-driven development (SDD) workflow for AI coding assistants. Provides structured change management with proposals, specs, and tasks.",
6
- "type": "workflows",
7
- "author": "Augment Extensions",
8
- "license": "MIT",
9
- "keywords": [
10
- "openspec",
11
- "spec-driven-development",
12
- "sdd",
13
- "workflow",
14
- "planning",
15
- "specifications",
16
- "change-management"
17
- ],
18
- "augment": {
19
- "characterCount": 32661,
20
- "priority": "high",
21
- "category": "workflows",
22
- "tags": ["openspec", "spec-driven-development", "workflow", "change-management"],
23
- "compatibleWith": [
24
- "Claude Code",
25
- "CodeBuddy",
26
- "Cursor",
27
- "GitHub Copilot",
28
- "Continue",
29
- "Windsurf",
30
- "All AGENTS.md compatible tools"
31
- ]
32
- },
33
- "dependencies": {},
34
- "repository": {
35
- "type": "git",
36
- "url": "https://github.com/Fission-AI/OpenSpec"
37
- },
38
- "documentation": {
39
- "homepage": "https://openspec.dev/",
40
- "installation": "https://github.com/Fission-AI/OpenSpec#install--initialize",
41
- "workflow": "https://github.com/Fission-AI/OpenSpec#create-your-first-change"
42
- },
43
- "installation": {
44
- "required": false,
45
- "optional": true,
46
- "methods": {
47
- "npm": "npm install -g @fission-ai/openspec@latest",
48
- "nix": "nix run github:Fission-AI/OpenSpec -- init",
49
- "manual": "Follow manual setup instructions in rules/manual-setup.md"
50
- },
51
- "notes": "CLI installation is optional. AI agents can follow the workflow manually without the CLI, but the CLI provides validation, archiving, and slash commands."
52
- }
53
- }
54
-