godpowers 0.15.0 → 0.15.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/README.md +2 -1
  3. package/package.json +19 -4
package/CHANGELOG.md CHANGED
@@ -5,6 +5,26 @@ All notable changes to Godpowers will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.15.1] - 2026-05-11
9
+
10
+ Metadata + documentation polish. No code changes.
11
+
12
+ ### Changed
13
+ - `package.json` description rewritten from tagline to searchable
14
+ one-liner: explains what godpowers is and lists the AI tools it
15
+ runs in. Improves npm registry discoverability.
16
+ - `package.json` keywords expanded 10 -> 25. Adds variants like
17
+ `ai-agent`, `ai-orchestration`, specific tool names
18
+ (`claude-code`, `windsurf`, `gemini`, `copilot`), and artifact
19
+ taxonomy (`prd`, `architecture`, `roadmap`, `specialist-agents`).
20
+ - `docs/reference.md`: catalogue gap closed. The 23 skills shipped
21
+ in v0.13 - v0.15 are now indexed (recovery, observability, the
22
+ OTel exporter, extension management). Index now matches the 104
23
+ skill files on disk.
24
+ - `README.md`: clean Install section without scaffold disclaimers.
25
+ - `docs/ROADMAP.md`: v0.16 and v1.0 sections rewritten in a tighter,
26
+ goal-focused tone.
27
+
8
28
  ## [0.15.0] - 2026-05-11
9
29
 
10
30
  Distribution release. Godpowers and its three first-party packs are
package/README.md CHANGED
@@ -2,7 +2,8 @@
2
2
 
3
3
  [![CI](https://github.com/aihxp/godpowers/actions/workflows/ci.yml/badge.svg)](https://github.com/aihxp/godpowers/actions/workflows/ci.yml)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
5
- [![Version](https://img.shields.io/badge/version-0.14.0-blue)](CHANGELOG.md)
5
+ [![Version](https://img.shields.io/badge/version-0.15.0-blue)](CHANGELOG.md)
6
+ [![npm](https://img.shields.io/npm/v/godpowers.svg)](https://www.npmjs.com/package/godpowers)
6
7
 
7
8
  **Ship fast. Ship right. Ship everything. Ship accountably.**
8
9
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "godpowers",
3
- "version": "0.15.0",
4
- "description": "Ship fast. Ship right. Ship everything. Ship accountably.",
3
+ "version": "0.15.1",
4
+ "description": "AI-powered development system: 104 slash commands and 38 specialist agents that take a project from raw idea to hardened production. Runs inside Claude Code, Codex, Cursor, Windsurf, Gemini, and 10+ other AI coding tools.",
5
5
  "bin": {
6
6
  "godpowers": "./bin/install.js"
7
7
  },
@@ -19,15 +19,30 @@
19
19
  },
20
20
  "keywords": [
21
21
  "ai",
22
- "coding",
22
+ "ai-agent",
23
+ "ai-agents",
24
+ "ai-development",
25
+ "ai-coding",
26
+ "ai-orchestration",
23
27
  "agent",
28
+ "agents",
24
29
  "claude",
30
+ "claude-code",
25
31
  "codex",
26
32
  "cursor",
33
+ "windsurf",
34
+ "gemini",
35
+ "copilot",
27
36
  "tdd",
28
37
  "orchestration",
29
38
  "godmode",
30
- "slash-commands"
39
+ "slash-commands",
40
+ "skills",
41
+ "prd",
42
+ "architecture",
43
+ "roadmap",
44
+ "specialist-agents",
45
+ "developer-tools"
31
46
  ],
32
47
  "author": "Godpowers",
33
48
  "license": "MIT",