Skip to content

Commit 1206ca2

Browse files
authored
Merge pull request #1 from nicepkg/dev
chore: release 1.0.5
2 parents 898ebf9 + b703993 commit 1206ca2

97 files changed

Lines changed: 1155 additions & 1150 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/config.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
{
22
"$schema": "https://unpkg.com/@changesets/config/schema.json",
3-
"changelog": [
4-
"@changesets/changelog-github",
5-
{ "repo": "nicepkg/vibe-sync" }
6-
],
3+
"changelog": ["@changesets/changelog-github", { "repo": "nicepkg/vsync" }],
74
"commit": false,
85
"access": "public",
96
"baseBranch": "main",

.changeset/four-dogs-fold07.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/four-dogs-fold08.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"vsync": patch
3+
---
4+
5+
release first version 08

.claude/commands/create-task.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Create new task for feature or bugfix
33
argument-hint: "[feature|bugfix|refactor] description"
44
---
55

6-
# Create Task - vibe-sync
6+
# Create Task - vsync
77

88
Create a new task in `TASKS.md` for a feature, bugfix, or refactoring work.
99

.claude/commands/do-task.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
description: Execute tasks from TASKS.md following vibe-sync specifications
2+
description: Execute tasks from TASKS.md following vsync specifications
33
argument-hint: [phase-task or "next"]
44
---
55

6-
# Do Task - vibe-sync
6+
# Do Task - vsync
77

8-
Execute development tasks from `TASKS.md` following vibe-sync project specifications and TDD workflow.
8+
Execute development tasks from `TASKS.md` following vsync project specifications and TDD workflow.
99

1010
## Current Context
1111

@@ -175,7 +175,7 @@ spinner.succeed("Done");
175175

176176
- MCP servers require user confirmation on first sync
177177
- Show command, env vars, URL before approval
178-
- Update whitelist in .vibe-sync.json
178+
- Update whitelist in .vsync.json
179179

180180
**Phase 6 (Testing)**:
181181

@@ -189,15 +189,15 @@ spinner.succeed("Done");
189189
src/
190190
├── cli/ # CLI commands (Phase 4)
191191
│ ├── commands/
192-
│ │ ├── init.ts # vibe-sync init
193-
│ │ ├── sync.ts # vibe-sync sync
194-
│ │ ├── plan.ts # vibe-sync plan
195-
│ │ ├── status.ts # vibe-sync status
196-
│ │ ├── list.ts # vibe-sync list
197-
│ │ └── clean.ts # vibe-sync clean
192+
│ │ ├── init.ts # vsync init
193+
│ │ ├── sync.ts # vsync sync
194+
│ │ ├── plan.ts # vsync plan
195+
│ │ ├── status.ts # vsync status
196+
│ │ ├── list.ts # vsync list
197+
│ │ └── clean.ts # vsync clean
198198
│ └── index.ts # Commander setup
199199
├── core/ # Core logic (Phase 1, 3, 5)
200-
│ ├── config-manager.ts # Load/save .vibe-sync.json
200+
│ ├── config-manager.ts # Load/save .vsync.json
201201
│ ├── manifest-manager.ts # Manifest CRUD
202202
│ ├── diff.ts # Diff calculator
203203
│ ├── planner.ts # Plan generator
@@ -210,7 +210,7 @@ src/
210210
│ ├── opencode.ts # Target adapter
211211
│ └── registry.ts # Adapter factory
212212
├── types/ # TypeScript types (Phase 1)
213-
│ ├── config.ts # VibeConfig, SyncMode, etc.
213+
│ ├── config.ts # VSyncConfig, SyncMode, etc.
214214
│ ├── models.ts # Skill, MCPServer, etc.
215215
│ ├── manifest.ts # Manifest types
216216
│ └── plan.ts # SyncPlan, DiffResult, etc.
@@ -352,4 +352,4 @@ pnpm build # Build project
352352

353353
---
354354

355-
**Let's build vibe-sync with TDD and precision! 🚀**
355+
**Let's build vsync with TDD and precision! 🚀**

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Bug Report
3-
about: Report a bug to help us improve vibe-sync
3+
about: Report a bug to help us improve vsync
44
title: "[Bug] "
55
labels: bug
66
assignees: ""
@@ -12,8 +12,8 @@ A clear and concise description of what the bug is.
1212

1313
## Steps to Reproduce
1414

15-
1. Run command: `vibe-sync ...`
16-
2. Configuration: `.vibe-sync.json` settings
15+
1. Run command: `vsync ...`
16+
2. Configuration: `.vsync.json` settings
1717
3. See error
1818

1919
## Expected Behavior
@@ -27,15 +27,15 @@ What actually happened?
2727
## Environment
2828

2929
- OS: [e.g., macOS 14.0, Windows 11, Ubuntu 22.04]
30-
- vibe-sync Version: [e.g., 1.0.0]
30+
- vsync Version: [e.g., 1.0.0]
3131
- Source Tool: [e.g., Claude Code]
3232
- Target Tools: [e.g., Cursor, OpenCode]
3333
- Node.js Version: [e.g., 20.0.0]
3434

3535
## Configuration
3636

3737
```json
38-
// Your .vibe-sync.json (remove sensitive info)
38+
// Your .vsync.json (remove sensitive info)
3939
{
4040
"source_tool": "...",
4141
"target_tools": [...]

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Documentation
4-
url: https://vibe-sync.xiaominglab.com/docs
4+
url: https://vsync.xiaominglab.com/docs
55
about: Check the documentation for answers to common questions
66
- name: Discussions
7-
url: https://github.com/nicepkg/vibe-sync/discussions
7+
url: https://github.com/nicepkg/vsync/discussions
88
about: Ask questions and discuss ideas with the community

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Feature Request
3-
about: Suggest an idea for vibe-sync
3+
about: Suggest an idea for vsync
44
title: "[Feature] "
55
labels: enhancement
66
assignees: ""

.github/workflows/deploy-website.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ concurrency:
2222

2323
env:
2424
# Project Configuration - Update these values for your project
25-
PROJECT_NAME: 'vibe-sync'
26-
SITE_DOMAIN: 'vibe-sync.xiaominglab.com'
25+
PROJECT_NAME: 'vsync'
26+
SITE_DOMAIN: 'vsync.xiaominglab.com'
2727
WEBSITE_DIR: 'website'
2828
BUILD_OUTPUT_DIR: 'website/out'
2929
BUILD_COMMAND: 'pnpm build:website'

.github/workflows/preview-package.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
matrix:
2525
package:
2626
# When you add a new package, add a new line here
27-
- name: "vibe-sync"
27+
- name: "vsync"
2828
dir: "cli"
29-
display: "vibe-sync (CLI)"
29+
display: "vsync (CLI)"
3030
# - name: "core"
3131
# dir: "core"
32-
# display: "vibe-sync (core)"
32+
# display: "vsync (core)"
3333

3434
steps:
3535
- name: Checkout
@@ -107,8 +107,8 @@ jobs:
107107
108108
### ✅ Quick verification (CLI)
109109
\`\`\`bash
110-
vibe-sync --version
111-
vibe-sync --help
110+
vsync --version
111+
vsync --help
112112
\`\`\`
113113
114114
### 🔎 Raw publish output (for troubleshooting)

0 commit comments

Comments
 (0)