@m14i/sith 1.7.4 → 1.7.6
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/docker/Dockerfile +6 -5
- package/package.json +1 -1
package/docker/Dockerfile
CHANGED
|
@@ -77,9 +77,9 @@ RUN echo "registry=https://registry.npmjs.org/" > /home/sith/.npmrc && \
|
|
|
77
77
|
ENV OPENCODE_MODEL=github-copilot/claude-sonnet-4.5
|
|
78
78
|
ENV OPENCODE_LOG_LEVEL=INFO
|
|
79
79
|
ENV NODE_ENV=production
|
|
80
|
-
ENV PATH="/
|
|
81
|
-
ENV NPM_CONFIG_PREFIX=/
|
|
82
|
-
ENV HOME=/
|
|
80
|
+
ENV PATH="/root/.opencode/bin:/root/.local/bin:/root/.npm-global/bin:${PATH}"
|
|
81
|
+
ENV NPM_CONFIG_PREFIX=/root/.npm-global
|
|
82
|
+
ENV HOME=/root
|
|
83
83
|
|
|
84
84
|
# === Token Optimization Skills Configuration ===
|
|
85
85
|
# RTK (Rust Token Killer) - Désactivé par défaut (binaire non disponible publiquement)
|
|
@@ -92,8 +92,9 @@ ENV CAVEMAN_AUTO=true
|
|
|
92
92
|
|
|
93
93
|
# Réduction totale estimée: 85-95% de tokens par session CI/CD
|
|
94
94
|
|
|
95
|
-
#
|
|
96
|
-
|
|
95
|
+
# Note: Keep running as root due to Nix permission requirements
|
|
96
|
+
# Nix-shell needs to modify /nix/var/nix/profiles/per-user at runtime
|
|
97
|
+
# USER sith
|
|
97
98
|
|
|
98
99
|
# Healthcheck pour vérifier que l'environnement est prêt
|
|
99
100
|
# Note: RTK check is conditional on RTK_ENABLED to avoid false failures
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m14i/sith",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.6",
|
|
4
4
|
"description": "Turn your context to the dark side. Standardize and share your OpenCode setup with a fully dockerized environment, designed for seamless collaboration and CI integration.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|