@slamb2k/mad-skills 2.0.21 → 2.0.22
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/.claude-plugin/plugin.json +1 -1
- package/hooks/lib/banner.cjs +11 -8
- package/package.json +2 -2
- package/skills/manifest.json +1 -1
package/hooks/lib/banner.cjs
CHANGED
|
@@ -4,13 +4,16 @@ const config = require('./config.cjs');
|
|
|
4
4
|
|
|
5
5
|
// prettier-ignore
|
|
6
6
|
const BANNER_LINES = [
|
|
7
|
-
'
|
|
8
|
-
'
|
|
9
|
-
'
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
'
|
|
7
|
+
'::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::',
|
|
8
|
+
":::::'##::::'##::::'###::::'########::::::'######::'##:::'##:'####:'##:::::::'##::::::::'######::::::::",
|
|
9
|
+
"::::: ###::'###:::'## ##::: ##.... ##::::'##... ##: ##::'##::. ##:: ##::::::: ##:::::::'##... ##:::::::",
|
|
10
|
+
"::::: ####'####::'##:. ##:: ##:::: ##:::: ##:::..:: ##:'##:::: ##:: ##::::::: ##::::::: ##:::..::::::::",
|
|
11
|
+
"::::: ## ### ##:'##:::. ##: ##:::: ##::::. ######:: #####::::: ##:: ##::::::: ##:::::::. ######::::::::",
|
|
12
|
+
"::::: ##. #: ##: #########: ##:::: ##:::::..... ##: ##. ##:::: ##:: ##::::::: ##::::::::..... ##:::::::",
|
|
13
|
+
"::::: ##:.:: ##: ##.... ##: ##:::: ##::::'##::: ##: ##:. ##::: ##:: ##::::::: ##:::::::'##::: ##:::::::",
|
|
14
|
+
"::::: ##:::: ##: ##:::: ##: ########:::::. ######:: ##::. ##:'####: ########: ########:. ######::::::::",
|
|
15
|
+
"::::::..:::::..::..:::::..::........:::::::......:::..::::..::....::........::........:::......:::::::::",
|
|
16
|
+
'::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::',
|
|
14
17
|
];
|
|
15
18
|
|
|
16
19
|
const SEPARATOR = '\u2500'.repeat(70);
|
|
@@ -24,4 +27,4 @@ function getBanner() {
|
|
|
24
27
|
].join('\n');
|
|
25
28
|
}
|
|
26
29
|
|
|
27
|
-
module.exports = { getBanner, BANNER_MARKER: '
|
|
30
|
+
module.exports = { getBanner, BANNER_MARKER: '::::::::::::::::::::' };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slamb2k/mad-skills",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "Claude Code skills collection —
|
|
3
|
+
"version": "2.0.22",
|
|
4
|
+
"description": "Claude Code skills collection — full lifecycle development tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
package/skills/manifest.json
CHANGED