@demig0d2/skills 1.0.2 → 1.1.2
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 +58 -67
- package/bin/cli.js +7 -3
- package/package.json +2 -5
- package/skills/book-creator/SKILL.md +848 -0
- package/skills/book-creator/references/kdp_specs.md +139 -0
- package/skills/book-creator/references/log_schema.md +149 -0
- package/skills/book-creator/references/patterns_quick_ref.md +71 -0
- package/skills/book-creator/references/thinkers_reference.md +104 -0
- package/skills/book-creator/scripts/__pycache__/bank_formatter.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/conflict_check.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/dna_scan.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/kdp_check.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/log_manager.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/scan_ai_patterns.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/score_report.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/toc_extract.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/validate_concept.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/word_count.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/bank_formatter.py +206 -0
- package/skills/book-creator/scripts/conflict_check.py +179 -0
- package/skills/book-creator/scripts/dna_scan.py +168 -0
- package/skills/book-creator/scripts/kdp_check.py +255 -0
- package/skills/book-creator/scripts/log_manager.py +258 -0
- package/skills/book-creator/scripts/scan_ai_patterns.py +279 -0
- package/skills/book-creator/scripts/score_report.py +237 -0
- package/skills/book-creator/scripts/toc_extract.py +151 -0
- package/skills/book-creator/scripts/validate_concept.py +255 -0
- package/skills/book-creator/scripts/word_count.py +196 -0
- package/skills/book-writer/scripts/__pycache__/kdp_check.cpython-312.pyc +0 -0
- package/skills/book-writer/scripts/__pycache__/toc_extract.cpython-312.pyc +0 -0
- package/skills/book-writer/scripts/__pycache__/word_count.cpython-312.pyc +0 -0
- package/skills/book-writer.zip +0 -0
- package/skills/chapter-auditor/scripts/__pycache__/score_report.cpython-312.pyc +0 -0
- package/skills/concept-expander/scripts/__pycache__/validate_concept.cpython-312.pyc +0 -0
- package/skills/continuity-tracker/scripts/__pycache__/conflict_check.cpython-312.pyc +0 -0
- package/skills/continuity-tracker/scripts/__pycache__/log_manager.cpython-312.pyc +0 -0
- package/skills/humanizer/scripts/__pycache__/dna_scan.cpython-312.pyc +0 -0
- package/skills/humanizer/scripts/__pycache__/scan_ai_patterns.cpython-312.pyc +0 -0
- package/skills/overhaul/scripts/__pycache__/changelog_gen.cpython-312.pyc +0 -0
- package/skills/overhaul/scripts/__pycache__/skill_parser.cpython-312.pyc +0 -0
- package/skills/overhaul/scripts/__pycache__/version_bump.cpython-312.pyc +0 -0
- package/skills/overhaul.zip +0 -0
- package/skills/research-aggregator/scripts/__pycache__/bank_formatter.cpython-312.pyc +0 -0
package/README.md
CHANGED
|
@@ -1,111 +1,102 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="file:///C:/Users/dheel/.gemini/antigravity/brain/3b99e1af-65bb-4c4b-be76-b8e4c2d929f9/demigod_skills_banner_1774762522101.png" alt="Demigod Skills Banner" width="100%">
|
|
3
|
+
</p>
|
|
2
4
|
|
|
3
|
-
|
|
5
|
+
# @demig0d2/skills ⚡
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
[](https://www.npmjs.com/package/@demig0d2/skills)
|
|
8
|
+
[](https://github.com/dheelep/demigod-skills/blob/main/LICENSE)
|
|
9
|
+
[](https://claude.ai)
|
|
10
|
+
|
|
11
|
+
> **The Sovereign AI Suite** — A collection of production-grade Claude skills for book writing, humanizing AI patterns, and upgrading skill files. Installable in a single command.
|
|
6
12
|
|
|
7
13
|
---
|
|
8
14
|
|
|
9
|
-
##
|
|
15
|
+
## 🚀 Quick Start
|
|
16
|
+
|
|
17
|
+
Get the entire suite ready in seconds. No complex configuration required.
|
|
10
18
|
|
|
11
19
|
```bash
|
|
12
|
-
# Install
|
|
13
|
-
npx @demig0d2/skills install book-
|
|
20
|
+
# Recommendation: Install the all-in-one 'book-creator'
|
|
21
|
+
cmd /c npx @demig0d2/skills@latest install book-creator
|
|
14
22
|
|
|
15
|
-
#
|
|
16
|
-
npx @demig0d2/skills install all
|
|
23
|
+
# Or install every individual skill at once
|
|
24
|
+
cmd /c npx @demig0d2/skills@latest install all
|
|
17
25
|
```
|
|
18
26
|
|
|
19
|
-
|
|
27
|
+
> [!TIP]
|
|
28
|
+
> **Windows Users**: Use `cmd /c` prefix if you encounter PowerShell execution policy errors.
|
|
20
29
|
|
|
21
30
|
---
|
|
22
31
|
|
|
23
|
-
## Commands
|
|
32
|
+
## 🛠️ Main Commands
|
|
24
33
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
npx @demig0d2/skills version # Show package version
|
|
34
|
-
```
|
|
34
|
+
| Command | Description |
|
|
35
|
+
| :--- | :--- |
|
|
36
|
+
| `install <skill>` | Install a specific skill to `~/.claude/skills/` |
|
|
37
|
+
| `install all` | Batch install every available skill |
|
|
38
|
+
| `list` | View available skills and their install status |
|
|
39
|
+
| `status` | Show which skills are currently active |
|
|
40
|
+
| `remove <skill>` | Cleanly uninstall a specific skill |
|
|
41
|
+
| `info <skill>` | Deep dive into a skill's capabilities |
|
|
35
42
|
|
|
36
43
|
---
|
|
37
44
|
|
|
38
|
-
##
|
|
45
|
+
## 🎨 The Skill Collection
|
|
39
46
|
|
|
40
|
-
### `book-
|
|
41
|
-
|
|
47
|
+
### `book-creator` ⭐ **The Crown Jewel**
|
|
48
|
+
**The complete book production pipeline in a single skill.**
|
|
49
|
+
Combines all writing skills into one cohesive workflow:
|
|
50
|
+
- **Concept Expansion** & Research Aggregation
|
|
51
|
+
- **Intake Questionnaire** & Table of Contents
|
|
52
|
+
- **Autonomous Writing** (Guided or Full)
|
|
53
|
+
- **7-Dimension Audit** & DNA-Aware Humanizer
|
|
54
|
+
- **Continuity Tracking** & KDP-ready DOCX Output
|
|
42
55
|
|
|
43
56
|
```bash
|
|
44
|
-
npx @demig0d2/skills install book-
|
|
57
|
+
npx @demig0d2/skills install book-creator
|
|
45
58
|
```
|
|
46
59
|
|
|
47
|
-
|
|
48
|
-
Strips all 25 documented AI writing patterns AND actively rewrites toward Vivid's style DNA simultaneously. Includes a DNA protection layer that identifies and exempts authentic signature constructions before the pattern elimination pass runs. Produces: draft → self-audit → final version → changes summary.
|
|
60
|
+
---
|
|
49
61
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
62
|
+
### `humanizer`
|
|
63
|
+
**Strip AI patterns while preserving your style DNA.**
|
|
64
|
+
Strips all 25 documented AI writing patterns and actively rewrites toward Vivid's style DNA simultaneously.
|
|
53
65
|
|
|
54
66
|
### `overhaul`
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
- **Personalized** — user-guided, decides scope/depth at each stage
|
|
58
|
-
|
|
59
|
-
```bash
|
|
60
|
-
npx @demig0d2/skills install overhaul
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
### `concept-expander`
|
|
64
|
-
Turns a rough book seed (a paragraph, title, or bullet points) into a complete concept document the book-writer can consume. Outputs logline, core question, reader profile, emotional arc, thematic clusters, comp titles, and chapter territories.
|
|
67
|
+
**Upgrade any skill file from good to astonishing.**
|
|
68
|
+
Diagnoses your existing skills across 6 dimensions and rebuilds them completely (Automated) or with your guidance (Personalized).
|
|
65
69
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
```
|
|
70
|
+
### `book-writer`
|
|
71
|
+
The specialized end-to-end authoring pipeline (Concept → TOC → KDP DOCX).
|
|
69
72
|
|
|
70
73
|
### `chapter-auditor`
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
```bash
|
|
74
|
-
npx @demig0d2/skills install chapter-auditor
|
|
75
|
-
```
|
|
74
|
+
Painstakenly scores chapters across 7 dimensions: voice, arc, rhythm, metaphor, structure, AI contamination, and resonance.
|
|
76
75
|
|
|
77
76
|
### `continuity-tracker`
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
```bash
|
|
81
|
-
npx @demig0d2/skills install continuity-tracker
|
|
82
|
-
```
|
|
77
|
+
Prevents world-building errors by tracking facts, metaphors, and open threads across all chapters.
|
|
83
78
|
|
|
84
79
|
### `research-aggregator`
|
|
85
|
-
Builds
|
|
86
|
-
|
|
87
|
-
```bash
|
|
88
|
-
npx @demig0d2/skills install research-aggregator
|
|
89
|
-
```
|
|
80
|
+
Builds philosophical anchors and empirical findings tuned for high-impact non-fiction and essays.
|
|
90
81
|
|
|
91
82
|
---
|
|
92
83
|
|
|
93
|
-
## Requirements
|
|
94
|
-
|
|
95
|
-
- Node.js 16+
|
|
96
|
-
- Claude.ai (any paid plan) or Claude Code
|
|
84
|
+
## 📋 Requirements
|
|
97
85
|
|
|
98
|
-
|
|
86
|
+
- **Node.js**: 16.0.0 or higher
|
|
87
|
+
- **Python**: 3.8+ (required for advanced script features)
|
|
88
|
+
- **Claude**: Required access to a [Claude.ai](https://claude.ai) account (any paid plan) or Claude Code.
|
|
99
89
|
|
|
100
90
|
---
|
|
101
91
|
|
|
102
|
-
## Author
|
|
92
|
+
## 👤 Author
|
|
103
93
|
|
|
104
|
-
**Dheelep N (Vivid)**
|
|
105
|
-
|
|
94
|
+
**Dheelep N (Vivid)**
|
|
95
|
+
*Developer • Author • AI Researcher*
|
|
96
|
+
Dedicated to building tools that augment human creativity through sovereign intelligence.
|
|
106
97
|
|
|
107
98
|
---
|
|
108
99
|
|
|
109
|
-
## License
|
|
100
|
+
## 📄 License
|
|
110
101
|
|
|
111
|
-
MIT
|
|
102
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
package/bin/cli.js
CHANGED
|
@@ -7,9 +7,13 @@ const os = require("os");
|
|
|
7
7
|
// ─── Constants ────────────────────────────────────────────────────────────────
|
|
8
8
|
|
|
9
9
|
const PACKAGE_NAME = "@demig0d2/skills";
|
|
10
|
-
const VERSION = "1.
|
|
10
|
+
const VERSION = "1.1.2";
|
|
11
11
|
|
|
12
12
|
const SKILLS = {
|
|
13
|
+
"book-creator": {
|
|
14
|
+
description: "Complete pipeline — all 6 skills in one, no other installs needed",
|
|
15
|
+
aliases: ["creator", "complete", "all-in-one"],
|
|
16
|
+
},
|
|
13
17
|
"book-writer": {
|
|
14
18
|
description: "Full end-to-end book authoring pipeline with KDP output",
|
|
15
19
|
aliases: ["book", "bookwriter"],
|
|
@@ -104,7 +108,7 @@ function printHelp() {
|
|
|
104
108
|
console.log(` install <skill> Install a skill to ~/.claude/skills/`);
|
|
105
109
|
console.log(` install all Install all skills at once`);
|
|
106
110
|
console.log(` remove <skill> Remove an installed skill`);
|
|
107
|
-
console.log(` remove all Remove all skills`);
|
|
111
|
+
console.log(` remove all Remove all demigod skills`);
|
|
108
112
|
console.log(` list List all available skills`);
|
|
109
113
|
console.log(` status Show which skills are installed`);
|
|
110
114
|
console.log(` info <skill> Show details about a skill`);
|
|
@@ -226,7 +230,7 @@ function removeSkill(skillName) {
|
|
|
226
230
|
}
|
|
227
231
|
|
|
228
232
|
function removeAll() {
|
|
229
|
-
console.log(`\n Removing all skills...\n`);
|
|
233
|
+
console.log(`\n Removing all @demig0d2/skills...\n`);
|
|
230
234
|
for (const skillName of ALL_SKILLS) {
|
|
231
235
|
removeSkill(skillName);
|
|
232
236
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@demig0d2/skills",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Claude skill suite by Vivid (Dheelep N) — book writing pipeline, humanizer, skill upgrader, and more",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
@@ -26,10 +26,7 @@
|
|
|
26
26
|
"email": "dheelepsain2+moba@gmail.com"
|
|
27
27
|
},
|
|
28
28
|
"main": "bin/cli.js",
|
|
29
|
-
"bin":
|
|
30
|
-
"skills": "bin/cli.js",
|
|
31
|
-
"demigod-skills": "bin/cli.js"
|
|
32
|
-
},
|
|
29
|
+
"bin": "bin/cli.js",
|
|
33
30
|
"files": [
|
|
34
31
|
"bin/",
|
|
35
32
|
"skills/",
|