@demig0d2/skills 1.0.2 → 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 +26 -45
- package/bin/cli.js +7 -3
- package/package.json +1 -1
- 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
|
@@ -2,21 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
> Claude skill suite by Vivid (Dheelep N)
|
|
4
4
|
|
|
5
|
-
A collection of production-grade Claude skills for book writing, humanizing AI text, upgrading skill files
|
|
5
|
+
A collection of production-grade Claude skills for book writing, humanizing AI text, and upgrading skill files — installable in one command.
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
## Install
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
#
|
|
13
|
-
npx @demig0d2/skills install book-
|
|
12
|
+
# The all-in-one skill — everything in one install
|
|
13
|
+
npx @demig0d2/skills install book-creator
|
|
14
14
|
|
|
15
|
-
#
|
|
15
|
+
# Or install everything separately
|
|
16
16
|
npx @demig0d2/skills install all
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
Skills are copied to `~/.claude/skills/` — Claude picks them up automatically on next session
|
|
19
|
+
Skills are copied to `~/.claude/skills/` — Claude picks them up automatically on next session.
|
|
20
20
|
|
|
21
21
|
---
|
|
22
22
|
|
|
@@ -26,7 +26,7 @@ Skills are copied to `~/.claude/skills/` — Claude picks them up automatically
|
|
|
26
26
|
npx @demig0d2/skills install <skill> # Install one skill
|
|
27
27
|
npx @demig0d2/skills install all # Install all skills
|
|
28
28
|
npx @demig0d2/skills remove <skill> # Remove a skill
|
|
29
|
-
npx @demig0d2/skills remove all # Remove all
|
|
29
|
+
npx @demig0d2/skills remove all # Remove all skills
|
|
30
30
|
npx @demig0d2/skills list # List available skills + install status
|
|
31
31
|
npx @demig0d2/skills status # Show which skills are installed
|
|
32
32
|
npx @demig0d2/skills info <skill> # Show details about a skill
|
|
@@ -37,72 +37,53 @@ npx @demig0d2/skills version # Show package version
|
|
|
37
37
|
|
|
38
38
|
## Skills
|
|
39
39
|
|
|
40
|
-
### `book-
|
|
41
|
-
|
|
40
|
+
### `book-creator` ⭐ Recommended
|
|
41
|
+
**The complete book production pipeline in a single skill.** Combines all 6 writing skills into one install — concept expansion, research aggregation, structure options, intake questionnaire, table of contents, chapter writing (guided or autonomous), 7-dimension chapter audit, DNA-aware humanizer, continuity tracking, and KDP DOCX output. All 10 scripts bundled. No other skills needed.
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
|
-
npx @demig0d2/skills install book-
|
|
44
|
+
npx @demig0d2/skills install book-creator
|
|
45
45
|
```
|
|
46
46
|
|
|
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.
|
|
47
|
+
---
|
|
49
48
|
|
|
50
|
-
|
|
51
|
-
npx @demig0d2/skills install humanizer
|
|
52
|
-
```
|
|
49
|
+
### Individual Skills
|
|
53
50
|
|
|
54
|
-
|
|
55
|
-
Upgrades any skill file from its current version to a dramatically better one. Two modes:
|
|
56
|
-
- **Automated** — diagnoses across 6 dimensions and rebuilds completely, no user input needed
|
|
57
|
-
- **Personalized** — user-guided, decides scope/depth at each stage
|
|
51
|
+
Install these separately if you want specific capabilities without the full pipeline.
|
|
58
52
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
```
|
|
53
|
+
### `book-writer`
|
|
54
|
+
Full book authoring pipeline. Concept → structure → questionnaire → research → TOC → chapters → audit → humanize → KDP DOCX. Includes 3 scripts: word count analyzer, KDP pre-flight checker, TOC extractor.
|
|
62
55
|
|
|
63
|
-
### `
|
|
64
|
-
|
|
56
|
+
### `humanizer`
|
|
57
|
+
Strips all 25 documented AI writing patterns AND rewrites toward Vivid's style DNA simultaneously. DNA protection layer preserves authentic constructions before stripping. 2 scripts: AI pattern scanner, DNA protection scanner.
|
|
65
58
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
```
|
|
59
|
+
### `overhaul`
|
|
60
|
+
Upgrades any skill file from good to astonishing. Two modes: Automated (full rebuild, no input needed) or Personalized (user-guided). 3 scripts: skill parser, version bumper, changelog generator.
|
|
69
61
|
|
|
70
|
-
### `
|
|
71
|
-
|
|
62
|
+
### `concept-expander`
|
|
63
|
+
Expands a rough seed into a full concept document ready for the pipeline. 1 script: concept validator.
|
|
72
64
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
```
|
|
65
|
+
### `chapter-auditor`
|
|
66
|
+
Scores chapters across 7 dimensions and gives PASS / CONDITIONAL PASS / REVISE verdict. 1 script: score report generator.
|
|
76
67
|
|
|
77
68
|
### `continuity-tracker`
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
```bash
|
|
81
|
-
npx @demig0d2/skills install continuity-tracker
|
|
82
|
-
```
|
|
69
|
+
Tracks facts, metaphors, insights, and open threads across all chapters. Detects contradictions before they compound. 2 scripts: log manager, conflict checker.
|
|
83
70
|
|
|
84
71
|
### `research-aggregator`
|
|
85
|
-
Builds a
|
|
86
|
-
|
|
87
|
-
```bash
|
|
88
|
-
npx @demig0d2/skills install research-aggregator
|
|
89
|
-
```
|
|
72
|
+
Builds a per-chapter research bank of thinkers, quotes, and philosophical anchors tuned to Vivid's genres. 1 script: bank formatter and validator.
|
|
90
73
|
|
|
91
74
|
---
|
|
92
75
|
|
|
93
76
|
## Requirements
|
|
94
77
|
|
|
95
78
|
- Node.js 16+
|
|
79
|
+
- Python 3.8+ (for scripts)
|
|
96
80
|
- Claude.ai (any paid plan) or Claude Code
|
|
97
81
|
|
|
98
|
-
Skills install to `~/.claude/skills/` and are picked up automatically by Claude on session start.
|
|
99
|
-
|
|
100
82
|
---
|
|
101
83
|
|
|
102
84
|
## Author
|
|
103
85
|
|
|
104
|
-
**Dheelep N (Vivid)** — developer, author, security researcher
|
|
105
|
-
8 published books · 6 research papers · 9+ production tools
|
|
86
|
+
**Dheelep N (Vivid)** — developer, author, security researcher
|
|
106
87
|
|
|
107
88
|
---
|
|
108
89
|
|
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.0
|
|
10
|
+
const VERSION = "1.1.0";
|
|
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
|
}
|