@indiekitai/pi-skills 1.0.0 → 1.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.
package/README.md CHANGED
@@ -41,6 +41,15 @@ git clone https://github.com/indiekitai/pi-skills ~/.codex/skills/indiekit-skill
41
41
  | [throttled](skills/throttled/SKILL.md) | Rate limiting (fixed/sliding window, token bucket, GCRA) |
42
42
  | [llm-context](skills/llm-context/SKILL.md) | Estimate LLM context usage for codebases |
43
43
  | [just](skills/just/SKILL.md) | Task runner (Justfile format, like make but better) |
44
+ | [git-standup](skills/git-standup/SKILL.md) | Generate daily standup reports from git history |
45
+ | [clash-init](skills/clash-init/SKILL.md) | Generate Clash/mihomo proxy configs (SS, VMess, VLESS, Trojan, Hysteria2) |
46
+ | [pgcomplete](skills/pgcomplete/SKILL.md) | Context-aware SQL auto-completion for PostgreSQL |
47
+ | [rich-inspect](skills/rich-inspect/SKILL.md) | Inspect JS/TS objects with rich terminal output |
48
+
49
+ ### Automation
50
+ | Skill | Description |
51
+ |-------|-------------|
52
+ | [trello-autopilot](skills/trello-autopilot/SKILL.md) | Auto-fix Trello bug cards with coding agents |
44
53
 
45
54
  ### Terminal Rendering
46
55
  | Skill | Description |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indiekitai/pi-skills",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "IndieKit developer tools as Pi/Claude Code/Codex skills — PostgreSQL health, schema diff, type generation, rate limiting, terminal styling, and more",
5
5
  "keywords": ["pi-package", "agent-skills", "postgresql", "developer-tools", "indiekit"],
6
6
  "author": "IndieKit <hello@indiekit.ai>",
@@ -0,0 +1,42 @@
1
+ ---
2
+ name: clash-init
3
+ description: Generate Clash/mihomo proxy configuration files. Supports Shadowsocks, VMess, VLESS, Trojan, Hysteria2 protocols with built-in rule templates. Use when setting up or configuring proxy/VPN clients.
4
+ ---
5
+
6
+ # clash-init
7
+
8
+ Clash/mihomo configuration generator. Interactive or CLI mode.
9
+
10
+ ## Setup
11
+
12
+ ```bash
13
+ npm install -g @indiekitai/clash-init
14
+ ```
15
+
16
+ ## Usage
17
+
18
+ ```bash
19
+ # Interactive mode
20
+ npx @indiekitai/clash-init
21
+
22
+ # Shadowsocks config
23
+ npx @indiekitai/clash-init --ss --server 1.2.3.4 --port 443 --password "xxx" --cipher "2022-blake3-aes-128-gcm"
24
+
25
+ # With China direct template
26
+ npx @indiekitai/clash-init --ss --server 1.2.3.4 --port 443 --password "xxx" --template china
27
+
28
+ # Test connectivity
29
+ npx @indiekitai/clash-init --test
30
+
31
+ # Check WARP exit IP
32
+ npx @indiekitai/clash-init --check-warp
33
+
34
+ # JSON output
35
+ npx @indiekitai/clash-init --json
36
+ ```
37
+
38
+ ## MCP Tools
39
+
40
+ - `generate_config` — Generate Clash YAML config
41
+ - `test_proxy` — Test proxy server connectivity
42
+ - `check_ip` — Check current exit IP and ISP
@@ -0,0 +1,39 @@
1
+ ---
2
+ name: git-standup
3
+ description: Generate daily standup reports from git commit history. Scans single or multiple repos, groups by project, supports markdown and JSON output. Use when creating work summaries or daily standups.
4
+ ---
5
+
6
+ # git-standup
7
+
8
+ Generate work standup reports from git history. Zero dependencies.
9
+
10
+ ## Setup
11
+
12
+ ```bash
13
+ npm install -g @indiekitai/git-standup
14
+ ```
15
+
16
+ ## Usage
17
+
18
+ ```bash
19
+ # Yesterday's commits
20
+ npx @indiekitai/git-standup
21
+
22
+ # Custom time range
23
+ npx @indiekitai/git-standup --since "2 days ago"
24
+
25
+ # Scan multiple repos
26
+ npx @indiekitai/git-standup --dir ~/projects
27
+
28
+ # Filter by author
29
+ npx @indiekitai/git-standup --author "sen"
30
+
31
+ # Output formats
32
+ npx @indiekitai/git-standup --json
33
+ npx @indiekitai/git-standup --markdown
34
+ ```
35
+
36
+ ## MCP Tools
37
+
38
+ - `generate_standup` — Generate standup report for given repos/time range
39
+ - `list_repos` — Discover git repos in a directory
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: pgcomplete
3
+ description: Context-aware SQL auto-completion engine for PostgreSQL. Provides smart completions for tables, columns, functions, schemas based on SQL context. Use when building SQL editors or interactive database tools.
4
+ ---
5
+
6
+ # pgcomplete
7
+
8
+ PostgreSQL auto-completion engine. TypeScript port of pgcli's completer.
9
+
10
+ ## Setup
11
+
12
+ ```bash
13
+ npm install -g @indiekitai/pgcomplete
14
+ ```
15
+
16
+ ## Usage
17
+
18
+ ```bash
19
+ # Interactive mode (connect to database)
20
+ npx @indiekitai/pgcomplete --url "postgres://user:pass@host:5432/db"
21
+
22
+ # One-shot completion
23
+ npx @indiekitai/pgcomplete --url "..." --complete "SELECT * FROM u"
24
+
25
+ # JSON output
26
+ npx @indiekitai/pgcomplete --url "..." --complete "SELECT " --json
27
+ ```
28
+
29
+ ## MCP Tools
30
+
31
+ - `complete` — Get completions for a SQL fragment
32
+ - `list_tables` — List all tables in database
33
+ - `list_columns` — List columns for a table
34
+ - `list_functions` — List available functions
35
+ - `list_schemas` — List schemas
@@ -0,0 +1,38 @@
1
+ ---
2
+ name: rich-inspect
3
+ description: Inspect JavaScript/TypeScript objects with colorful formatted output showing properties, methods, types, and docs. Port of Python Rich's inspect(). Use when debugging or exploring objects and modules.
4
+ ---
5
+
6
+ # rich-inspect
7
+
8
+ Inspect any JS/TS object with rich terminal output. Port of Python Rich's inspect().
9
+
10
+ ## Setup
11
+
12
+ ```bash
13
+ npm install -g @indiekitai/rich-inspect
14
+ ```
15
+
16
+ ## Usage
17
+
18
+ ```bash
19
+ # Inspect a JSON file
20
+ npx @indiekitai/rich-inspect data.json
21
+
22
+ # Inspect a JS module's exports
23
+ npx @indiekitai/rich-inspect ./my-module.js
24
+
25
+ # Show all members (including private)
26
+ npx @indiekitai/rich-inspect data.json --all
27
+
28
+ # Show only methods
29
+ npx @indiekitai/rich-inspect ./module.js --methods
30
+
31
+ # JSON output
32
+ npx @indiekitai/rich-inspect data.json --json
33
+ ```
34
+
35
+ ## MCP Tools
36
+
37
+ - `inspect_file` — Inspect a JS/TS file's exports
38
+ - `inspect_json` — Inspect a JSON structure
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: trello-autopilot
3
+ description: Automatically scan Trello boards for bug cards, invoke a coding agent to fix them, and move cards to Done. Use when automating bug triage and fix workflows with Trello.
4
+ ---
5
+
6
+ # trello-autopilot
7
+
8
+ Trello bug auto-fix pipeline. Scans a board for bug cards, invokes Claude Code to fix, moves cards when done.
9
+
10
+ ## Setup
11
+
12
+ ```bash
13
+ npm install -g @indiekitai/trello-autopilot
14
+ export TRELLO_API_KEY="your-key"
15
+ export TRELLO_TOKEN="your-token"
16
+ ```
17
+
18
+ ## Usage
19
+
20
+ ```bash
21
+ # Scan and fix bugs
22
+ npx @indiekitai/trello-autopilot --board "MyProject" --list "Bugs" --done "Done" --repo /path/to/repo
23
+
24
+ # Dry run (scan only, don't fix)
25
+ npx @indiekitai/trello-autopilot --board "MyProject" --list "Bugs" --dry-run
26
+
27
+ # JSON output
28
+ npx @indiekitai/trello-autopilot --board "MyProject" --list "Bugs" --json
29
+ ```
30
+
31
+ ## MCP Tools
32
+
33
+ - `scan_bugs` — List bug cards from a Trello board/list
34
+ - `fix_bug` — Invoke coding agent to fix a specific bug card
35
+ - `move_card` — Move a card to another list