Compare commits
2 Commits
202d9316a5
...
4bcd80c33d
| Author | SHA1 | Date | |
|---|---|---|---|
| 4bcd80c33d | |||
| 6eb6024e51 |
116
.gitea/workflows/npm-release.yml
Normal file
116
.gitea/workflows/npm-release.yml
Normal file
@@ -0,0 +1,116 @@
|
||||
name: npm release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
- '[0-9]*'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
verify:
|
||||
name: verify
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: node:20-bookworm
|
||||
timeout-minutes: 30
|
||||
|
||||
steps:
|
||||
- name: Install release tools
|
||||
run: |
|
||||
set -euo pipefail
|
||||
apt-get update
|
||||
apt-get install -y git curl ca-certificates
|
||||
curl -fsSL https://bun.sh/install | bash -s -- bun-v1.3.13
|
||||
install -m 0755 /root/.bun/bin/bun /usr/local/bin/bun
|
||||
node --version
|
||||
npm --version
|
||||
bun --version
|
||||
|
||||
- name: Clone tagged source
|
||||
run: |
|
||||
set -euo pipefail
|
||||
REPO_URL="${{ gitea.server_url }}/${{ gitea.repository }}.git"
|
||||
AUTH_HEADER="$(printf '%s' '${{ gitea.actor }}:${{ secrets.GITEA_TOKEN }}' | base64 -w0)"
|
||||
git -c http.extraHeader="Authorization: Basic $AUTH_HEADER" clone --depth 1 --branch "${{ gitea.ref_name }}" "$REPO_URL" repo
|
||||
git -C repo rev-parse HEAD
|
||||
|
||||
- name: Verify release tag matches package version
|
||||
working-directory: repo
|
||||
run: |
|
||||
set -euo pipefail
|
||||
TAG_NAME="${{ gitea.ref_name }}"
|
||||
PACKAGE_VERSION="$(node -p "require('./package.json').version")"
|
||||
|
||||
if [ "$TAG_NAME" = "v$PACKAGE_VERSION" ] || [ "$TAG_NAME" = "$PACKAGE_VERSION" ]; then
|
||||
echo "Release tag $TAG_NAME matches package version $PACKAGE_VERSION"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "Tag $TAG_NAME does not match package.json version $PACKAGE_VERSION" >&2
|
||||
exit 1
|
||||
|
||||
- name: Run verify pipeline
|
||||
working-directory: repo
|
||||
run: |
|
||||
set -euo pipefail
|
||||
bun install --frozen-lockfile
|
||||
bun run test
|
||||
bun run check
|
||||
bun run build
|
||||
|
||||
release:
|
||||
name: publish to npm
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: node:20-bookworm
|
||||
timeout-minutes: 30
|
||||
needs:
|
||||
- verify
|
||||
|
||||
steps:
|
||||
- name: Install release tools
|
||||
run: |
|
||||
set -euo pipefail
|
||||
apt-get update
|
||||
apt-get install -y git curl ca-certificates
|
||||
curl -fsSL https://bun.sh/install | bash -s -- bun-v1.3.13
|
||||
install -m 0755 /root/.bun/bin/bun /usr/local/bin/bun
|
||||
node --version
|
||||
npm --version
|
||||
bun --version
|
||||
|
||||
- name: Clone tagged source
|
||||
run: |
|
||||
set -euo pipefail
|
||||
REPO_URL="${{ gitea.server_url }}/${{ gitea.repository }}.git"
|
||||
AUTH_HEADER="$(printf '%s' '${{ gitea.actor }}:${{ secrets.GITEA_TOKEN }}' | base64 -w0)"
|
||||
git -c http.extraHeader="Authorization: Basic $AUTH_HEADER" clone --depth 1 --branch "${{ gitea.ref_name }}" "$REPO_URL" repo
|
||||
git -C repo rev-parse HEAD
|
||||
|
||||
- name: Install dependencies
|
||||
working-directory: repo
|
||||
run: |
|
||||
set -euo pipefail
|
||||
bun install --frozen-lockfile
|
||||
|
||||
- name: Build package
|
||||
working-directory: repo
|
||||
run: |
|
||||
set -euo pipefail
|
||||
bun run build
|
||||
|
||||
- name: Publish package to npm
|
||||
working-directory: repo
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
run: |
|
||||
set -euo pipefail
|
||||
printf '//registry.npmjs.org/:_authToken=%s\n' "$NODE_AUTH_TOKEN" > ~/.npmrc
|
||||
npm publish
|
||||
@@ -34,6 +34,12 @@ bun run check
|
||||
bun run build
|
||||
```
|
||||
|
||||
## Release
|
||||
|
||||
Tagging `vX.Y.Z` or `X.Y.Z` triggers the Gitea npm release workflow under `.gitea/workflows/npm-release.yml`.
|
||||
|
||||
BoxBrain now fetches IdentityDB as a remote git dependency through Bun instead of relying on a sibling local checkout, and `trustedDependencies` allows Bun to run the required lifecycle scripts for `identitydb`, `better-sqlite3`, and `esbuild` during clean installs.
|
||||
|
||||
## Current status
|
||||
|
||||
The repository now contains the framework core for persona initialization, schedule/status management, conversation orchestration, and a ready-made Grok adapter set. See the implementation plan:
|
||||
|
||||
11
bun.lock
11
bun.lock
@@ -5,7 +5,7 @@
|
||||
"": {
|
||||
"name": "boxbrain",
|
||||
"dependencies": {
|
||||
"identitydb": "file:../IdentityDB",
|
||||
"identitydb": "git+https://git.psw.kr/p-sw/IdentityDB.git#664d0582bc6b10faaccd2db61f2400bac81c5af5",
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^24.0.0",
|
||||
@@ -15,6 +15,11 @@
|
||||
},
|
||||
},
|
||||
},
|
||||
"trustedDependencies": [
|
||||
"esbuild",
|
||||
"better-sqlite3",
|
||||
"identitydb",
|
||||
],
|
||||
"packages": {
|
||||
"@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.27.7", "", { "os": "aix", "cpu": "ppc64" }, "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg=="],
|
||||
|
||||
@@ -228,7 +233,7 @@
|
||||
|
||||
"iconv-lite": ["iconv-lite@0.7.2", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw=="],
|
||||
|
||||
"identitydb": ["identitydb@file:../IdentityDB", { "dependencies": { "better-sqlite3": "^12.1.1", "kysely": "^0.28.8", "mysql2": "^3.15.3", "pg": "^8.16.0" }, "devDependencies": { "@types/better-sqlite3": "^7.6.13", "@types/node": "^24.0.0", "@types/pg": "^8.20.0", "tsup": "^8.5.0", "typescript": "^5.8.3", "vitest": "^3.2.4" } }],
|
||||
"identitydb": ["identitydb@git+https://git.psw.kr/p-sw/IdentityDB.git#664d0582bc6b10faaccd2db61f2400bac81c5af5", { "dependencies": { "@types/better-sqlite3": "^7.6.13", "@types/pg": "^8.20.0", "better-sqlite3": "^12.1.1", "kysely": "^0.28.8", "mysql2": "^3.15.3", "pg": "^8.16.0" } }, "664d0582bc6b10faaccd2db61f2400bac81c5af5"],
|
||||
|
||||
"ieee754": ["ieee754@1.2.1", "", {}, "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="],
|
||||
|
||||
@@ -417,7 +422,5 @@
|
||||
"wrappy": ["wrappy@1.0.2", "", {}, "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="],
|
||||
|
||||
"xtend": ["xtend@4.0.2", "", {}, "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="],
|
||||
|
||||
"estree-walker/@types/estree": ["@types/estree@1.0.9", "", {}, "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg=="],
|
||||
}
|
||||
}
|
||||
|
||||
@@ -37,12 +37,17 @@
|
||||
"simulation"
|
||||
],
|
||||
"dependencies": {
|
||||
"identitydb": "file:../IdentityDB"
|
||||
"identitydb": "git+https://git.psw.kr/p-sw/IdentityDB.git#664d0582bc6b10faaccd2db61f2400bac81c5af5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^24.0.0",
|
||||
"tsup": "^8.5.0",
|
||||
"typescript": "^5.8.3",
|
||||
"vitest": "^3.2.4"
|
||||
}
|
||||
},
|
||||
"trustedDependencies": [
|
||||
"better-sqlite3",
|
||||
"esbuild",
|
||||
"identitydb"
|
||||
]
|
||||
}
|
||||
|
||||
31
tests/release-config.test.ts
Normal file
31
tests/release-config.test.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
import { readFileSync } from 'node:fs';
|
||||
import { join } from 'node:path';
|
||||
import { describe, expect, it } from 'vitest';
|
||||
|
||||
describe('release config', () => {
|
||||
it('depends on a remote IdentityDB package source instead of a local file path', () => {
|
||||
const packageJson = JSON.parse(
|
||||
readFileSync(join(process.cwd(), 'package.json'), 'utf8'),
|
||||
) as {
|
||||
dependencies?: Record<string, string>;
|
||||
trustedDependencies?: string[];
|
||||
};
|
||||
|
||||
expect(packageJson.dependencies?.identitydb).toMatch(
|
||||
/^git\+https:\/\/git\.psw\.kr\/p-sw\/IdentityDB\.git#[0-9a-f]{40}$/,
|
||||
);
|
||||
expect(packageJson.trustedDependencies).toEqual(
|
||||
expect.arrayContaining(['better-sqlite3', 'esbuild', 'identitydb']),
|
||||
);
|
||||
});
|
||||
|
||||
it('publishes without cloning a sibling IdentityDB repository first', () => {
|
||||
const workflow = readFileSync(
|
||||
join(process.cwd(), '.gitea/workflows/npm-release.yml'),
|
||||
'utf8',
|
||||
);
|
||||
|
||||
expect(workflow).not.toContain('Clone IdentityDB dependency');
|
||||
expect(workflow).not.toContain('IDENTITYDB_URL');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user