@evermore.work/server 2026.510.0-canary.2 → 2026.510.0-canary.4
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/package.json +13 -13
- package/skills/evermore-dev/SKILL.md +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evermore.work/server",
|
|
3
|
-
"version": "2026.510.0-canary.
|
|
3
|
+
"version": "2026.510.0-canary.4",
|
|
4
4
|
"homepage": "https://github.com/phuctm97/evermore",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/phuctm97/evermore/issues"
|
|
@@ -27,18 +27,18 @@
|
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@aws-sdk/client-s3": "^3.888.0",
|
|
30
|
-
"@evermore.work/adapter-acpx-local": "2026.510.0-canary.
|
|
31
|
-
"@evermore.work/adapter-claude-local": "2026.510.0-canary.
|
|
32
|
-
"@evermore.work/adapter-codex-local": "2026.510.0-canary.
|
|
33
|
-
"@evermore.work/adapter-cursor-local": "2026.510.0-canary.
|
|
34
|
-
"@evermore.work/adapter-gemini-local": "2026.510.0-canary.
|
|
35
|
-
"@evermore.work/adapter-openclaw-gateway": "2026.510.0-canary.
|
|
36
|
-
"@evermore.work/adapter-opencode-local": "2026.510.0-canary.
|
|
37
|
-
"@evermore.work/adapter-pi-local": "2026.510.0-canary.
|
|
38
|
-
"@evermore.work/adapter-utils": "2026.510.0-canary.
|
|
39
|
-
"@evermore.work/db": "2026.510.0-canary.
|
|
40
|
-
"@evermore.work/plugin-sdk": "2026.510.0-canary.
|
|
41
|
-
"@evermore.work/shared": "2026.510.0-canary.
|
|
30
|
+
"@evermore.work/adapter-acpx-local": "2026.510.0-canary.4",
|
|
31
|
+
"@evermore.work/adapter-claude-local": "2026.510.0-canary.4",
|
|
32
|
+
"@evermore.work/adapter-codex-local": "2026.510.0-canary.4",
|
|
33
|
+
"@evermore.work/adapter-cursor-local": "2026.510.0-canary.4",
|
|
34
|
+
"@evermore.work/adapter-gemini-local": "2026.510.0-canary.4",
|
|
35
|
+
"@evermore.work/adapter-openclaw-gateway": "2026.510.0-canary.4",
|
|
36
|
+
"@evermore.work/adapter-opencode-local": "2026.510.0-canary.4",
|
|
37
|
+
"@evermore.work/adapter-pi-local": "2026.510.0-canary.4",
|
|
38
|
+
"@evermore.work/adapter-utils": "2026.510.0-canary.4",
|
|
39
|
+
"@evermore.work/db": "2026.510.0-canary.4",
|
|
40
|
+
"@evermore.work/plugin-sdk": "2026.510.0-canary.4",
|
|
41
|
+
"@evermore.work/shared": "2026.510.0-canary.4",
|
|
42
42
|
"ajv": "^8.18.0",
|
|
43
43
|
"ajv-formats": "^3.0.1",
|
|
44
44
|
"better-auth": "1.4.18",
|
|
@@ -12,7 +12,7 @@ description: >
|
|
|
12
12
|
|
|
13
13
|
This skill covers the day-to-day workflows for developing and operating a local Evermore instance. It assumes you are working inside the Evermore repo checkout with `origin` pointing to `git@github.com:phuctm97/evermore.git`.
|
|
14
14
|
|
|
15
|
-
> **
|
|
15
|
+
> **REPOSITORY HYGIENE:** Treat anything you push to `origin` as potentially shareable. Never commit or push secrets, API keys, tokens, private logs, PII, customer data, or machine-local configuration that should stay private. Keep git history tidy as well: avoid pushing throwaway branches, noisy checkpoint commits, or speculative work that does not need to be shared.
|
|
16
16
|
|
|
17
17
|
> **MANDATORY:** Before running any CLI command, building, testing, or managing worktrees, you MUST read `doc/DEVELOPING.md` in the Evermore repo. It is the canonical reference for all `evermore` CLI commands, their options, build/test workflows, database operations, worktree management, and diagnostics. Do NOT guess at flags or options — read the doc first.
|
|
18
18
|
|
|
@@ -96,7 +96,7 @@ npx evermore.work worktree:cleanup my-feature
|
|
|
96
96
|
|
|
97
97
|
## Forks — Prefer Pushing to a User Fork
|
|
98
98
|
|
|
99
|
-
If the user has a personal fork of `phuctm97/evermore` configured as a git remote, push your feature branches to **that fork** instead of creating branches on the main repo. This keeps the upstream branch list clean and matches the standard
|
|
99
|
+
If the user has a personal fork of `phuctm97/evermore` configured as a git remote, push your feature branches to **that fork** instead of creating branches on the main repo. This keeps the upstream branch list clean and matches the standard fork-based contribution flow.
|
|
100
100
|
|
|
101
101
|
### Detect a fork remote
|
|
102
102
|
|