You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'Changeset operation rules for monorepo version management'
3
-
globs: []
4
-
alwaysApply: true
2
+
description: 'Rules for creating changeset files for version management'
3
+
globs: ['**/.changeset/**']
4
+
alwaysApply: false
5
5
---
6
6
7
7
# Changeset Operation Rules
@@ -10,30 +10,21 @@ alwaysApply: true
10
10
11
11
This project uses [Changesets](https://github.com/changesets/changesets) for monorepo version management and publishing. Since the AI assistant cannot interact with CLI prompts, we use a manual changeset file creation approach.
12
12
13
-
## Current Status
14
-
15
-
- **Alpha Development Mode**: Currently in `alpha` prerelease mode
16
-
- **Base Version**: Starting from `0.1.0-alpha.0`
17
-
- **Target**: Working towards `0.1.0` stable release
18
-
19
13
## Workflow
20
14
21
15
### 1. Making Changes
22
16
23
17
When code changes are made that warrant a release:
24
18
25
-
1. User requests: "Release [package-name] with [description]"
19
+
1. User requests: "Create changeset"
26
20
2. AI assistant creates changeset file manually
27
-
3. AI assistant runs `pnpm changeset version`
28
-
4. AI assistant commits the changes
29
21
30
22
### 2. Changeset File Creation
31
23
32
-
**Manual Creation Process:**
33
-
34
24
- AI creates `.changeset/[descriptive-name].md` file
35
25
- Uses patch/minor/major based on change type
36
26
- Includes clear description in English
27
+
- Focus on difference relative to original baseline, not just current working changes
37
28
38
29
**Example changeset file:**
39
30
@@ -45,44 +36,8 @@ When code changes are made that warrant a release:
0 commit comments