agentic-skill-mill 1.0.9 → 1.0.11

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/install.sh DELETED
@@ -1,44 +0,0 @@
1
- #!/usr/bin/env bash
2
- # install.sh -- Remote-friendly bootstrap installer (for curl|bash use)
3
- # Installs the npm package globally, then runs install-local.sh in skills-only mode.
4
-
5
- set -euo pipefail
6
-
7
- PACKAGE_NAME="${SKILLMILL_PACKAGE_NAME:-agentic-skill-mill}"
8
- PACKAGE_VERSION="${SKILLMILL_PACKAGE_VERSION:-latest}"
9
-
10
- if [[ "${1:-}" == "--help" || "${1:-}" == "-h" ]]; then
11
- echo "Usage: bash install.sh [tool flags]"
12
- echo ""
13
- echo "This script installs ${PACKAGE_NAME}@${PACKAGE_VERSION} globally and then"
14
- echo "runs install-local.sh --skills-only with the flags you provide."
15
- echo ""
16
- echo "Examples:"
17
- echo " bash install.sh --all"
18
- echo " bash install.sh --cursor"
19
- echo ""
20
- echo "Environment overrides:"
21
- echo " SKILLMILL_PACKAGE_NAME Package to install (default: agentic-skill-mill)"
22
- echo " SKILLMILL_PACKAGE_VERSION Version tag (default: latest)"
23
- exit 0
24
- fi
25
-
26
- echo "==> Installing utility library: ${PACKAGE_NAME}@${PACKAGE_VERSION}"
27
- npm install -g "${PACKAGE_NAME}@${PACKAGE_VERSION}"
28
-
29
- GLOBAL_NODE_MODULES="$(npm root -g)"
30
- PACKAGE_DIR="${GLOBAL_NODE_MODULES}/${PACKAGE_NAME}"
31
- LOCAL_INSTALLER="${PACKAGE_DIR}/install-local.sh"
32
-
33
- if [[ ! -f "$LOCAL_INSTALLER" ]]; then
34
- echo "ERROR: Could not find install-local.sh at: $LOCAL_INSTALLER"
35
- echo "Check the package 'files' list to ensure install-local.sh is published."
36
- exit 1
37
- fi
38
-
39
- echo "==> Installing skills via local installer (skills-only mode)"
40
- bash "$LOCAL_INSTALLER" --skills-only "$@"
41
-
42
- echo ""
43
- echo "==> Done."
44
- echo "Utility and skills installed."