nori-ai 19.0.6 → 19.0.7
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/build/src/cli/features/claude-code/statusline/config/nori-statusline.sh +3 -3
- package/build/src/cli/features/hooks/config/autoupdate.js +25198 -0
- package/build/src/cli/features/hooks/config/commit-author.js +90 -0
- package/build/src/cli/features/hooks/config/context-usage-warning.js +10893 -0
- package/build/src/cli/features/hooks/config/nested-install-warning.js +10962 -0
- package/build/src/cli/features/hooks/config/notify-hook.sh +326 -0
- package/build/src/cli/features/hooks/config/slash-command-intercept.js +43105 -0
- package/build/src/cli/features/hooks/config/statistics-notification.js +10963 -0
- package/build/src/cli/features/hooks/config/statistics.js +11193 -0
- package/build/src/cli/features/hooks/config/summarize-notification.js +17925 -0
- package/build/src/cli/features/hooks/config/summarize.js +24688 -0
- package/package.json +1 -1
- package/scripts/build.sh +33 -0
|
@@ -13,7 +13,7 @@ if ! command -v jq >/dev/null 2>&1; then
|
|
|
13
13
|
NC='\033[0m'
|
|
14
14
|
|
|
15
15
|
echo -e "${YELLOW}⚠️ Nori statusline requires jq. Install: brew install jq (macOS) or apt install jq (Linux)${NC}"
|
|
16
|
-
echo -e "${YELLOW}Augmented with Nori v19.0.
|
|
16
|
+
echo -e "${YELLOW}Augmented with Nori v19.0.7${NC}"
|
|
17
17
|
exit 0
|
|
18
18
|
fi
|
|
19
19
|
|
|
@@ -196,9 +196,9 @@ PROFILE_NAME=$(echo "$INPUT" | jq -r '.profile_name // ""')
|
|
|
196
196
|
# Build branding message with upgrade link for free tier
|
|
197
197
|
if [ "$CONFIG_TIER" = "free" ]; then
|
|
198
198
|
# OSC 8 hyperlink format: \033]8;;URL\033\\TEXT\033]8;;\033\\
|
|
199
|
-
BRANDING="${YELLOW}Augmented with Nori v19.0.
|
|
199
|
+
BRANDING="${YELLOW}Augmented with Nori v19.0.7 (\033]8;;https://tilework.tech\033\\upgrade\033]8;;\033\\)${NC}"
|
|
200
200
|
else
|
|
201
|
-
BRANDING="${YELLOW}Augmented with Nori v19.0.
|
|
201
|
+
BRANDING="${YELLOW}Augmented with Nori v19.0.7 ${NC}"
|
|
202
202
|
fi
|
|
203
203
|
|
|
204
204
|
# Array of rotating tips about Nori features
|