ima-claude 2.14.0 → 2.14.1
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/dist/cli.js
CHANGED
|
@@ -11,7 +11,7 @@ var HOOKS_DIR = join(CLAUDE_DIR, "hooks");
|
|
|
11
11
|
var COMMANDS_DIR = join(CLAUDE_DIR, "commands");
|
|
12
12
|
var RULES_DIR = join(CLAUDE_DIR, "rules");
|
|
13
13
|
var SETTINGS_FILE = join(CLAUDE_DIR, "settings.json");
|
|
14
|
-
var VERSION = "2.14.
|
|
14
|
+
var VERSION = "2.14.1";
|
|
15
15
|
var colors = {
|
|
16
16
|
reset: "\x1B[0m",
|
|
17
17
|
bright: "\x1B[1m",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ima-claude",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.1",
|
|
4
4
|
"description": "IMA's AI coding agent skills - FP patterns, architecture guidance, and team standards. Supports Claude Code, Junie CLI, Gemini CLI, and GitHub Copilot.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ima-claude",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.1",
|
|
4
4
|
"description": "IMA's Claude Code skills for functional programming, architecture, and team standards. 52 skills, 24 hooks, default persona, 3-tier memory system.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "IMA",
|
|
@@ -13,17 +13,17 @@ Execute WP-CLI commands in Flywheel Local WP environments without disrupting Cla
|
|
|
13
13
|
- **Recommended**: Use Kitty terminal with `$WP_LOCAL_SITE` configured (see Configuration)
|
|
14
14
|
- **Alternative**: Create `.wp-local` file in project root: `echo "19efkkzWB" > .wp-local`
|
|
15
15
|
|
|
16
|
-
**Run wp commands
|
|
16
|
+
**Run wp commands** (after alias setup in Configuration):
|
|
17
17
|
```bash
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
wpl plugin list
|
|
19
|
+
wpl db query "SELECT * FROM wp_posts LIMIT 5"
|
|
20
|
+
wpl user list
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
**
|
|
23
|
+
**Or run directly** (discovers install location automatically):
|
|
24
24
|
```bash
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
WP_LOCAL_SH=$(ls ~/.claude/skills/wp-local/scripts/wp-local.sh 2>/dev/null || ls ~/.claude/plugins/*/*/plugins/ima-claude/skills/wp-local/scripts/wp-local.sh 2>/dev/null | head -1)
|
|
26
|
+
bash "$WP_LOCAL_SH" plugin list
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
**Verify configuration**:
|
|
@@ -115,9 +115,15 @@ echo "journal-back" > .wp-local
|
|
|
115
115
|
|
|
116
116
|
Add to `~/.bashrc` or `~/.zshrc`:
|
|
117
117
|
```bash
|
|
118
|
-
|
|
118
|
+
wpl() {
|
|
119
|
+
local s=~/.claude/skills/wp-local/scripts/wp-local.sh
|
|
120
|
+
[[ -f "$s" ]] || s=$(ls ~/.claude/plugins/*/*/plugins/ima-claude/skills/wp-local/scripts/wp-local.sh 2>/dev/null | head -1)
|
|
121
|
+
bash "$s" "$@"
|
|
122
|
+
}
|
|
119
123
|
```
|
|
120
124
|
|
|
125
|
+
This works for both local installs (`~/.claude/skills/`) and marketplace installs (`~/.claude/plugins/marketplaces/*/`).
|
|
126
|
+
|
|
121
127
|
Reload shell:
|
|
122
128
|
```bash
|
|
123
129
|
source ~/.bashrc # or source ~/.zshrc
|