omkx 0.1.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.
Files changed (41) hide show
  1. package/.kiro/agents/atlas.json +30 -0
  2. package/.kiro/agents/ghost-explorer.json +22 -0
  3. package/.kiro/agents/ghost-junior.json +21 -0
  4. package/.kiro/agents/ghost-librarian.json +23 -0
  5. package/.kiro/agents/ghost-looker.json +15 -0
  6. package/.kiro/agents/ghost-metis.json +22 -0
  7. package/.kiro/agents/ghost-momus.json +22 -0
  8. package/.kiro/agents/ghost-oracle.json +22 -0
  9. package/.kiro/agents/prometheus.json +30 -0
  10. package/.kiro/agents/sisyphus.json +26 -0
  11. package/.kiro/hooks/agent-spawn.sh +50 -0
  12. package/.kiro/hooks/pre-tool-use.sh +30 -0
  13. package/.kiro/hooks/prometheus-read-guard.sh +21 -0
  14. package/.kiro/hooks/prometheus-write-guard.sh +22 -0
  15. package/.kiro/notepads/.gitkeep +0 -0
  16. package/.kiro/plans/.gitkeep +0 -0
  17. package/.kiro/prompts/atlas.md +142 -0
  18. package/.kiro/prompts/ghost-explorer.md +105 -0
  19. package/.kiro/prompts/ghost-junior.md +116 -0
  20. package/.kiro/prompts/ghost-librarian.md +99 -0
  21. package/.kiro/prompts/ghost-looker.md +97 -0
  22. package/.kiro/prompts/ghost-metis.md +116 -0
  23. package/.kiro/prompts/ghost-momus.md +103 -0
  24. package/.kiro/prompts/ghost-oracle.md +102 -0
  25. package/.kiro/prompts/prometheus.md +136 -0
  26. package/.kiro/prompts/sisyphus.md +119 -0
  27. package/.kiro/settings/mcp.json +8 -0
  28. package/.kiro/skills/code-review/SKILL.md +59 -0
  29. package/.kiro/skills/debugging/SKILL.md +83 -0
  30. package/.kiro/skills/frontend-ux/SKILL.md +54 -0
  31. package/.kiro/skills/git-operations/SKILL.md +36 -0
  32. package/.kiro/skills/programming/SKILL.md +53 -0
  33. package/.kiro/steering/omkx/architecture.md +166 -0
  34. package/.kiro/steering/omkx/conventions.md +64 -0
  35. package/.kiro/steering/omkx/plan-format.md +97 -0
  36. package/.kiro/steering/omkx/product.md +66 -0
  37. package/LICENSE +21 -0
  38. package/README.md +337 -0
  39. package/bin/cli.mjs +360 -0
  40. package/install.sh +117 -0
  41. package/package.json +14 -0
package/install.sh ADDED
@@ -0,0 +1,117 @@
1
+ #!/bin/bash
2
+ # omkx — Install Script
3
+ # Installs omkx multi-agent orchestration into the current Kiro project
4
+ # Usage: bash install.sh [--force] [--dir <path>]
5
+
6
+ set -e
7
+
8
+ FORCE=false
9
+ TARGET_DIR="$(pwd)"
10
+
11
+ while [[ $# -gt 0 ]]; do
12
+ case "$1" in
13
+ --force) FORCE=true; shift ;;
14
+ --dir) TARGET_DIR="$2"; shift 2 ;;
15
+ *) echo "Unknown option: $1"; exit 1 ;;
16
+ esac
17
+ done
18
+
19
+ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
20
+ KIRO_DIR="$TARGET_DIR/.kiro"
21
+
22
+ echo ""
23
+ echo "╔══════════════════════════════════════════════════════════╗"
24
+ echo "║ omkx — Multi-Agent Orchestration ║"
25
+ echo "║ for Kiro IDE ║"
26
+ echo "╚══════════════════════════════════════════════════════════╝"
27
+ echo ""
28
+
29
+ # Check if already installed
30
+ if [ -f "$KIRO_DIR/agents/prometheus.json" ] && [ "$FORCE" != true ]; then
31
+ echo "✅ omkx is already installed in $TARGET_DIR"
32
+ echo " Use --force to reinstall."
33
+ exit 0
34
+ fi
35
+
36
+ if [ "$FORCE" = true ]; then
37
+ echo "🔄 Force reinstalling omkx..."
38
+ rm -rf "$KIRO_DIR/agents" "$KIRO_DIR/prompts" "$KIRO_DIR/hooks" \
39
+ "$KIRO_DIR/skills" "$KIRO_DIR/steering/omkx" "$KIRO_DIR/settings/mcp.json"
40
+ fi
41
+
42
+ echo "📦 Installing omkx to $TARGET_DIR..."
43
+ echo ""
44
+
45
+ # Create directory structure
46
+ mkdir -p "$KIRO_DIR/agents"
47
+ mkdir -p "$KIRO_DIR/prompts"
48
+ mkdir -p "$KIRO_DIR/hooks"
49
+ mkdir -p "$KIRO_DIR/skills"
50
+ mkdir -p "$KIRO_DIR/steering/omkx"
51
+ mkdir -p "$KIRO_DIR/settings"
52
+ mkdir -p "$KIRO_DIR/plans"
53
+ mkdir -p "$KIRO_DIR/notepads"
54
+
55
+ # Copy agent configs
56
+ echo "📋 Copying agent configurations..."
57
+ cp "$SCRIPT_DIR/.kiro/agents/"*.json "$KIRO_DIR/agents/"
58
+ echo " ✅ 10 agent configs installed"
59
+
60
+ # Copy prompt files
61
+ echo "📝 Copying agent prompts..."
62
+ cp "$SCRIPT_DIR/.kiro/prompts/"*.md "$KIRO_DIR/prompts/"
63
+ echo " ✅ 10 prompt files installed"
64
+
65
+ # Copy hooks and make executable
66
+ echo "🪝 Copying hooks..."
67
+ cp "$SCRIPT_DIR/.kiro/hooks/"*.sh "$KIRO_DIR/hooks/"
68
+ chmod +x "$KIRO_DIR/hooks/"*.sh
69
+ echo " ✅ 4 hooks installed (executable)"
70
+
71
+ # Copy skills
72
+ echo "🎯 Copying skills..."
73
+ for skill in git-operations code-review frontend-ux debugging programming; do
74
+ if [ -d "$SCRIPT_DIR/.kiro/skills/$skill" ]; then
75
+ mkdir -p "$KIRO_DIR/skills/$skill"
76
+ cp "$SCRIPT_DIR/.kiro/skills/$skill/SKILL.md" "$KIRO_DIR/skills/$skill/SKILL.md"
77
+ fi
78
+ done
79
+ echo " ✅ 5 skills installed"
80
+
81
+ # Copy steering files
82
+ echo "🧭 Copying steering files..."
83
+ cp "$SCRIPT_DIR/.kiro/steering/omkx/"*.md "$KIRO_DIR/steering/omkx/"
84
+ echo " ✅ 4 steering files installed"
85
+
86
+ # Copy settings
87
+ echo "⚙️ Copying settings..."
88
+ cp "$SCRIPT_DIR/.kiro/settings/mcp.json" "$KIRO_DIR/settings/mcp.json"
89
+ echo " ✅ MCP settings installed"
90
+
91
+ # Create gitkeep files
92
+ touch "$KIRO_DIR/plans/.gitkeep"
93
+ touch "$KIRO_DIR/notepads/.gitkeep"
94
+
95
+ echo ""
96
+ echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
97
+ echo "✅ omkx installed successfully!"
98
+ echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
99
+ echo ""
100
+ echo "📂 Installed structure:"
101
+ echo " .kiro/agents/ → 10 agents"
102
+ echo " .kiro/prompts/ → 10 prompt files"
103
+ echo " .kiro/hooks/ → 4 lifecycle hooks"
104
+ echo " .kiro/skills/ → 5 shared skills"
105
+ echo " .kiro/steering/omkx/ → 4 steering documents"
106
+ echo " .kiro/settings/ → MCP configuration"
107
+ echo " .kiro/plans/ → Execution plans directory"
108
+ echo " .kiro/notepads/ → Agent notepad directories"
109
+ echo ""
110
+ echo "⌨️ Keyboard Shortcuts (in Kiro IDE):"
111
+ echo " ctrl+p → Prometheus (Planner)"
112
+ echo " ctrl+a → Atlas (Plan Executor)"
113
+ echo " ctrl+e → Sisyphus (Direct Executor)"
114
+ echo ""
115
+ echo "📖 Read .kiro/steering/omkx/product.md for full documentation."
116
+ echo "🌐 GitHub: https://github.com/seyisulu/omkx"
117
+ echo ""
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "omkx",
3
+ "version": "0.1.0",
4
+ "description": "Multi-agent orchestration for Kiro — agents from oh-my-openagent adapted for the Kiro IDE",
5
+ "bin": { "omkx": "bin/cli.mjs" },
6
+ "files": ["bin/", ".kiro/", "install.sh"],
7
+ "type": "module",
8
+ "keywords": ["kiro", "kiro-cli", "kiro-agents", "ai", "agents", "multi-agent", "orchestration", "oh-my-openagent"],
9
+ "author": "seyisulu",
10
+ "license": "MIT",
11
+ "repository": { "type": "git", "url": "git+https://github.com/seyisulu/omkx.git" },
12
+ "homepage": "https://github.com/seyisulu/omkx#readme",
13
+ "engines": { "node": ">=18.0.0" }
14
+ }