adaptive-memory-multi-model-router 2.14.51 → 2.14.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -14
- package/articles/ROUTERARENA_9677.md +78 -0
- package/articles/SHOW_HN_FINAL.md +4 -4
- package/docs/blog/routerarena-9677.html +92 -0
- package/docs/blog/routerarena-number-one.html +10 -10
- package/docs/index.html +6 -6
- package/index.html +1 -1
- package/package.json +4 -3
- package/src/ensemble.ts +2 -0
- package/test-council/3-performance-tests.test.ts +8 -25
- package/tests/package-lock.json +745 -588
- package/tests/package.json +2 -1
- package/.github/workflows/auto-publish.yml +0 -51
- package/research/PUBLISH_LOG.md +0 -3
package/tests/package.json
CHANGED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
name: Auto-Publish (7x daily)
|
|
2
|
-
|
|
3
|
-
# Keeps package on npm "recently updated" feed
|
|
4
|
-
# Each publish drives ~137 organic downloads
|
|
5
|
-
# Schedule: every 3.4 hours = 7x daily
|
|
6
|
-
|
|
7
|
-
on:
|
|
8
|
-
schedule:
|
|
9
|
-
- cron: '0 0,3,7,10,14,17,21 * * *' # 7x daily UTC
|
|
10
|
-
workflow_dispatch: # manual trigger
|
|
11
|
-
|
|
12
|
-
jobs:
|
|
13
|
-
publish:
|
|
14
|
-
runs-on: ubuntu-latest
|
|
15
|
-
permissions:
|
|
16
|
-
contents: write
|
|
17
|
-
steps:
|
|
18
|
-
- uses: actions/checkout@v4
|
|
19
|
-
with:
|
|
20
|
-
fetch-depth: 0 # Fetch full history for version tracking
|
|
21
|
-
|
|
22
|
-
- uses: actions/setup-node@v4
|
|
23
|
-
with:
|
|
24
|
-
node-version: 20
|
|
25
|
-
registry-url: 'https://registry.npmjs.org'
|
|
26
|
-
|
|
27
|
-
- run: npm ci
|
|
28
|
-
|
|
29
|
-
- name: Build
|
|
30
|
-
run: npm run build
|
|
31
|
-
|
|
32
|
-
- name: Get current version
|
|
33
|
-
id: version
|
|
34
|
-
run: echo "VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
|
|
35
|
-
|
|
36
|
-
- name: Add research insight
|
|
37
|
-
run: |
|
|
38
|
-
echo "## $(date -u +%Y-%m-%dT%H:%MZ)" >> research/PUBLISH_LOG.md
|
|
39
|
-
VER=$(node -p "require('./package.json').version")
|
|
40
|
-
echo "Published v$VER" >> research/PUBLISH_LOG.md
|
|
41
|
-
echo "" >> research/PUBLISH_LOG.md
|
|
42
|
-
|
|
43
|
-
- name: Patch + Publish + Commit
|
|
44
|
-
run: |
|
|
45
|
-
npm version patch --no-git-tag-version
|
|
46
|
-
npm publish
|
|
47
|
-
git add -A
|
|
48
|
-
git commit -m "chore: auto-publish v$(node -p "require('./package.json').version")" || echo "Nothing to commit"
|
|
49
|
-
git push || echo "Push failed (upstream may have changes)"
|
|
50
|
-
env:
|
|
51
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/research/PUBLISH_LOG.md
DELETED