Skip to content

Commit 28934bf

Browse files
chore: version packages (#2)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent aaa1d69 commit 28934bf

File tree

7 files changed

+92
-23
lines changed

7 files changed

+92
-23
lines changed

.changeset/initial-release.md

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

packages/cli/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# @guataiba/isac-cli
2+
3+
## 2.0.0
4+
5+
### Major Changes
6+
7+
- 12468e6: Initial public release of ISAC — Intelligent Site Analysis & Cloning CLI.
8+
9+
- 7 specialized agents (screenshot-capturer, ds-extractor, ds-page-builder, animation-detector, page-planner, page-builder, visual-verifier)
10+
- `isac capture <url>` command with full pipeline
11+
- Chrome DevTools MCP integration for screenshot capture
12+
- Design token extraction with light/dark mode
13+
- Design system documentation page generation
14+
- Animation detection and Motion.dev mapping
15+
- Page structure planning and implementation
16+
- Visual verification with correction loop
17+
- Multipackage architecture: `@guataiba/isac-core`, `@guataiba/isac-nextjs`, `@guataiba/isac-cli`
18+
19+
### Patch Changes
20+
21+
- Updated dependencies [12468e6]
22+
- @guataiba/isac-core@2.0.0
23+
- @guataiba/isac-nextjs@2.0.0

packages/cli/package.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@guataiba/isac-cli",
3-
"version": "1.0.0",
3+
"version": "2.0.0",
44
"description": "ISAC CLI — Intelligent Site Analysis & Cloning. Captures screenshots, extracts design systems, and generates pixel-perfect Next.js replicas powered by Claude Code.",
55
"type": "module",
66
"bin": {
@@ -11,7 +11,16 @@
1111
"dev": "tsup --watch",
1212
"typecheck": "tsc --noEmit"
1313
},
14-
"keywords": ["cli", "design-system", "screenshot", "nextjs", "claude", "ai", "web-cloning", "site-analysis"],
14+
"keywords": [
15+
"cli",
16+
"design-system",
17+
"screenshot",
18+
"nextjs",
19+
"claude",
20+
"ai",
21+
"web-cloning",
22+
"site-analysis"
23+
],
1524
"author": "Lucian Fialho",
1625
"repository": {
1726
"type": "git",

packages/core/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# @guataiba/isac-core
2+
3+
## 2.0.0
4+
5+
### Major Changes
6+
7+
- 12468e6: Initial public release of ISAC — Intelligent Site Analysis & Cloning CLI.
8+
9+
- 7 specialized agents (screenshot-capturer, ds-extractor, ds-page-builder, animation-detector, page-planner, page-builder, visual-verifier)
10+
- `isac capture <url>` command with full pipeline
11+
- Chrome DevTools MCP integration for screenshot capture
12+
- Design token extraction with light/dark mode
13+
- Design system documentation page generation
14+
- Animation detection and Motion.dev mapping
15+
- Page structure planning and implementation
16+
- Visual verification with correction loop
17+
- Multipackage architecture: `@guataiba/isac-core`, `@guataiba/isac-nextjs`, `@guataiba/isac-cli`

packages/core/package.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@guataiba/isac-core",
3-
"version": "1.0.0",
3+
"version": "2.0.0",
44
"description": "Framework-agnostic pipeline engine for ISAC — Intelligent Site Analysis & Cloning",
55
"type": "module",
66
"main": "./dist/index.js",
@@ -17,7 +17,14 @@
1717
"typecheck": "tsc --noEmit",
1818
"test": "vitest run"
1919
},
20-
"keywords": ["design-system", "screenshot", "ai", "claude", "site-analysis", "web-cloning"],
20+
"keywords": [
21+
"design-system",
22+
"screenshot",
23+
"ai",
24+
"claude",
25+
"site-analysis",
26+
"web-cloning"
27+
],
2128
"author": "Lucian Fialho",
2229
"repository": {
2330
"type": "git",

packages/nextjs/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# @guataiba/isac-nextjs
2+
3+
## 2.0.0
4+
5+
### Major Changes
6+
7+
- 12468e6: Initial public release of ISAC — Intelligent Site Analysis & Cloning CLI.
8+
9+
- 7 specialized agents (screenshot-capturer, ds-extractor, ds-page-builder, animation-detector, page-planner, page-builder, visual-verifier)
10+
- `isac capture <url>` command with full pipeline
11+
- Chrome DevTools MCP integration for screenshot capture
12+
- Design token extraction with light/dark mode
13+
- Design system documentation page generation
14+
- Animation detection and Motion.dev mapping
15+
- Page structure planning and implementation
16+
- Visual verification with correction loop
17+
- Multipackage architecture: `@guataiba/isac-core`, `@guataiba/isac-nextjs`, `@guataiba/isac-cli`
18+
19+
### Patch Changes
20+
21+
- Updated dependencies [12468e6]
22+
- @guataiba/isac-core@2.0.0

packages/nextjs/package.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@guataiba/isac-nextjs",
3-
"version": "1.0.0",
3+
"version": "2.0.0",
44
"description": "Next.js (App Router) adapter for ISAC — Intelligent Site Analysis & Cloning",
55
"type": "module",
66
"main": "./dist/index.js",
@@ -17,7 +17,15 @@
1717
"typecheck": "tsc --noEmit",
1818
"test": "vitest run"
1919
},
20-
"keywords": ["nextjs", "design-system", "ai", "claude", "site-analysis", "web-cloning", "app-router"],
20+
"keywords": [
21+
"nextjs",
22+
"design-system",
23+
"ai",
24+
"claude",
25+
"site-analysis",
26+
"web-cloning",
27+
"app-router"
28+
],
2129
"author": "Lucian Fialho",
2230
"repository": {
2331
"type": "git",

0 commit comments

Comments
 (0)