oh-my-claude-sisyphus 1.0.0
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/LICENSE +21 -0
- package/README.md +416 -0
- package/dist/agents/definitions.d.ts +48 -0
- package/dist/agents/definitions.d.ts.map +1 -0
- package/dist/agents/definitions.js +271 -0
- package/dist/agents/definitions.js.map +1 -0
- package/dist/agents/index.d.ts +5 -0
- package/dist/agents/index.d.ts.map +1 -0
- package/dist/agents/index.js +5 -0
- package/dist/agents/index.js.map +1 -0
- package/dist/cli/index.d.ts +13 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +280 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/config/index.d.ts +5 -0
- package/dist/config/index.d.ts.map +1 -0
- package/dist/config/index.js +5 -0
- package/dist/config/index.js.map +1 -0
- package/dist/config/loader.d.ts +49 -0
- package/dist/config/loader.d.ts.map +1 -0
- package/dist/config/loader.js +329 -0
- package/dist/config/loader.js.map +1 -0
- package/dist/features/continuation-enforcement.d.ts +34 -0
- package/dist/features/continuation-enforcement.d.ts.map +1 -0
- package/dist/features/continuation-enforcement.js +142 -0
- package/dist/features/continuation-enforcement.js.map +1 -0
- package/dist/features/index.d.ts +6 -0
- package/dist/features/index.d.ts.map +1 -0
- package/dist/features/index.js +6 -0
- package/dist/features/index.js.map +1 -0
- package/dist/features/magic-keywords.d.ts +22 -0
- package/dist/features/magic-keywords.d.ts.map +1 -0
- package/dist/features/magic-keywords.js +189 -0
- package/dist/features/magic-keywords.js.map +1 -0
- package/dist/index.d.ts +105 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +146 -0
- package/dist/index.js.map +1 -0
- package/dist/mcp/index.d.ts +6 -0
- package/dist/mcp/index.d.ts.map +1 -0
- package/dist/mcp/index.js +5 -0
- package/dist/mcp/index.js.map +1 -0
- package/dist/mcp/servers.d.ts +77 -0
- package/dist/mcp/servers.d.ts.map +1 -0
- package/dist/mcp/servers.js +122 -0
- package/dist/mcp/servers.js.map +1 -0
- package/dist/shared/index.d.ts +5 -0
- package/dist/shared/index.d.ts.map +1 -0
- package/dist/shared/index.js +5 -0
- package/dist/shared/index.js.map +1 -0
- package/dist/shared/types.d.ts +133 -0
- package/dist/shared/types.d.ts.map +1 -0
- package/dist/shared/types.js +5 -0
- package/dist/shared/types.js.map +1 -0
- package/dist/tools/ast-tools.d.ts +63 -0
- package/dist/tools/ast-tools.d.ts.map +1 -0
- package/dist/tools/ast-tools.js +349 -0
- package/dist/tools/ast-tools.js.map +1 -0
- package/dist/tools/index.d.ts +52 -0
- package/dist/tools/index.d.ts.map +1 -0
- package/dist/tools/index.js +120 -0
- package/dist/tools/index.js.map +1 -0
- package/dist/tools/lsp/client.d.ts +201 -0
- package/dist/tools/lsp/client.d.ts.map +1 -0
- package/dist/tools/lsp/client.js +454 -0
- package/dist/tools/lsp/client.js.map +1 -0
- package/dist/tools/lsp/index.d.ts +9 -0
- package/dist/tools/lsp/index.d.ts.map +1 -0
- package/dist/tools/lsp/index.js +7 -0
- package/dist/tools/lsp/index.js.map +1 -0
- package/dist/tools/lsp/servers.d.ts +37 -0
- package/dist/tools/lsp/servers.d.ts.map +1 -0
- package/dist/tools/lsp/servers.js +148 -0
- package/dist/tools/lsp/servers.js.map +1 -0
- package/dist/tools/lsp/utils.d.ts +58 -0
- package/dist/tools/lsp/utils.d.ts.map +1 -0
- package/dist/tools/lsp/utils.js +236 -0
- package/dist/tools/lsp/utils.js.map +1 -0
- package/dist/tools/lsp-tools.d.ts +151 -0
- package/dist/tools/lsp-tools.d.ts.map +1 -0
- package/dist/tools/lsp-tools.js +358 -0
- package/dist/tools/lsp-tools.js.map +1 -0
- package/package.json +75 -0
- package/scripts/install.sh +765 -0
- package/scripts/uninstall.sh +47 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Oh-My-Claude-Sisyphus Uninstaller
|
|
3
|
+
|
|
4
|
+
set -e
|
|
5
|
+
|
|
6
|
+
BLUE='\033[0;34m'
|
|
7
|
+
GREEN='\033[0;32m'
|
|
8
|
+
YELLOW='\033[1;33m'
|
|
9
|
+
RED='\033[0;31m'
|
|
10
|
+
NC='\033[0m'
|
|
11
|
+
|
|
12
|
+
echo -e "${BLUE}Oh-My-Claude-Sisyphus Uninstaller${NC}"
|
|
13
|
+
echo ""
|
|
14
|
+
|
|
15
|
+
# Claude Code config directory (always ~/.claude)
|
|
16
|
+
CLAUDE_CONFIG_DIR="$HOME/.claude"
|
|
17
|
+
|
|
18
|
+
echo "This will remove Sisyphus agents and commands from:"
|
|
19
|
+
echo " $CLAUDE_CONFIG_DIR"
|
|
20
|
+
echo ""
|
|
21
|
+
read -p "Continue? (y/N) " -n 1 -r
|
|
22
|
+
echo
|
|
23
|
+
|
|
24
|
+
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
|
|
25
|
+
echo "Cancelled."
|
|
26
|
+
exit 0
|
|
27
|
+
fi
|
|
28
|
+
|
|
29
|
+
echo -e "${BLUE}Removing agents...${NC}"
|
|
30
|
+
rm -f "$CLAUDE_CONFIG_DIR/agents/oracle.md"
|
|
31
|
+
rm -f "$CLAUDE_CONFIG_DIR/agents/librarian.md"
|
|
32
|
+
rm -f "$CLAUDE_CONFIG_DIR/agents/explore.md"
|
|
33
|
+
rm -f "$CLAUDE_CONFIG_DIR/agents/frontend-engineer.md"
|
|
34
|
+
rm -f "$CLAUDE_CONFIG_DIR/agents/document-writer.md"
|
|
35
|
+
rm -f "$CLAUDE_CONFIG_DIR/agents/multimodal-looker.md"
|
|
36
|
+
|
|
37
|
+
echo -e "${BLUE}Removing commands...${NC}"
|
|
38
|
+
rm -f "$CLAUDE_CONFIG_DIR/commands/sisyphus.md"
|
|
39
|
+
rm -f "$CLAUDE_CONFIG_DIR/commands/sisyphus-default.md"
|
|
40
|
+
rm -f "$CLAUDE_CONFIG_DIR/commands/ultrawork.md"
|
|
41
|
+
rm -f "$CLAUDE_CONFIG_DIR/commands/deepsearch.md"
|
|
42
|
+
rm -f "$CLAUDE_CONFIG_DIR/commands/analyze.md"
|
|
43
|
+
|
|
44
|
+
echo ""
|
|
45
|
+
echo -e "${GREEN}Uninstallation complete!${NC}"
|
|
46
|
+
echo -e "${YELLOW}Note: CLAUDE.md was not removed. Delete manually if desired:${NC}"
|
|
47
|
+
echo " rm $CLAUDE_CONFIG_DIR/CLAUDE.md"
|