Skip to content

Commit 1085e3e

Browse files
author
13shivam
committed
first commit for PARK : parallel agent runtime for kiro-cli
0 parents  commit 1085e3e

44 files changed

Lines changed: 4328 additions & 0 deletions

Some content is hidden

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

.github/workflows/release.yml

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
name: Build and Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
build-macos:
10+
runs-on: macos-latest
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
16+
- name: Setup Node.js
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: '18'
20+
cache: 'npm'
21+
22+
- name: Install dependencies
23+
run: npm run install:all
24+
25+
- name: Build backend
26+
run: npm run build:backend
27+
28+
- name: Build frontend
29+
run: npm run build:frontend
30+
31+
- name: Rebuild native modules for Electron
32+
run: |
33+
cd backend
34+
npx @electron/rebuild -f -w node-pty
35+
36+
- name: Package Electron app
37+
run: npm run package:mac
38+
env:
39+
CSC_IDENTITY_AUTO_DISCOVERY: false
40+
41+
- name: Upload artifacts
42+
uses: actions/upload-artifact@v4
43+
with:
44+
name: PARK-macOS
45+
path: dist/PARK-*.dmg
46+
47+
- name: Create Release
48+
uses: softprops/action-gh-release@v1
49+
with:
50+
files: dist/PARK-*.dmg
51+
draft: false
52+
prerelease: false
53+
generate_release_notes: true
54+
env:
55+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56+
57+
- name: Calculate SHA256 checksums
58+
id: checksums
59+
run: |
60+
ARM64_SHA=$(shasum -a 256 dist/PARK-*-arm64.dmg | awk '{print $1}')
61+
X64_SHA=$(shasum -a 256 dist/PARK-*-x64.dmg | awk '{print $1}')
62+
echo "arm64_sha=$ARM64_SHA" >> $GITHUB_OUTPUT
63+
echo "x64_sha=$X64_SHA" >> $GITHUB_OUTPUT
64+
65+
- name: Update Homebrew Tap
66+
uses: peter-evans/repository-dispatch@v2
67+
with:
68+
token: ${{ secrets.HOMEBREW_TAP_TOKEN }}
69+
repository: 13shivam/homebrew-park
70+
event-type: new-release
71+
client-payload: |
72+
{
73+
"version": "${{ github.ref_name }}",
74+
"arm64_sha": "${{ steps.checksums.outputs.arm64_sha }}",
75+
"x64_sha": "${{ steps.checksums.outputs.x64_sha }}"
76+
}

.gitignore

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Dependencies
2+
node_modules/
3+
package-lock.json
4+
5+
# Build outputs
6+
dist/
7+
backend/dist/
8+
frontend/dist/
9+
electron/dist/
10+
11+
# Electron packaging
12+
*.dmg
13+
*.app
14+
*.exe
15+
*.zip
16+
*.blockmap
17+
out/
18+
build/
19+
release/
20+
21+
# Environment files
22+
.env
23+
.env.local
24+
25+
# IDE
26+
.vscode/
27+
.idea/
28+
*.swp
29+
*.swo
30+
*~
31+
32+
# OS
33+
.DS_Store
34+
Thumbs.db
35+
36+
# Logs
37+
*.log
38+
logs/
39+
40+
# Database
41+
*.db
42+
*.db-shm
43+
*.db-wal
44+
45+
# Runtime data
46+
~/.park-agent-launcher/
47+
48+
# Temporary files
49+
*.tmp
50+
*.temp
51+
.cache/

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 https://github.com/13shivam
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)