-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·32 lines (29 loc) · 964 Bytes
/
Copy pathinstall.sh
File metadata and controls
executable file
·32 lines (29 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env bash
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# install.sh is just update.sh with a friendlier "first time" prelude.
# Both flows do the same thing: migrate any stale name, refresh the
# marketplace, enable the plugin.
bash "$SCRIPT_DIR/update.sh"
echo ""
echo "Skills available as:"
echo " /flagrare:intake"
echo " /flagrare:atdd-plan"
echo " /flagrare:codebase-explore"
echo " /flagrare:work-prep"
echo " /flagrare:wrap-up"
echo " /flagrare:pr-reviewer"
echo " /flagrare:tdd-writer"
echo " /flagrare:ticket-creator"
echo " /flagrare:figma-matcher"
echo " /flagrare:smoke-test"
echo " /flagrare:staleness-audit"
echo " /flagrare:implementation-review"
echo " /flagrare:release-check"
echo " /flagrare:five-lens-review"
echo " /flagrare:ux-audit"
echo " /flagrare:open-pr"
echo " /flagrare:research-catalog"
echo " /flagrare:write-docs"
echo " /flagrare:update"
echo " /flagrare:uninstall"