phewsh 0.15.65 → 0.15.66
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/commands/pack.js +1 -1
- package/lib/packs.js +105 -1
- package/package.json +1 -1
package/commands/pack.js
CHANGED
|
@@ -52,7 +52,7 @@ async function install(name) {
|
|
|
52
52
|
console.log('');
|
|
53
53
|
|
|
54
54
|
if (p.kind === 'linked') {
|
|
55
|
-
console.log(` ${sage('This is a separate tool — phewsh doesn\'t vendor it.
|
|
55
|
+
console.log(` ${sage('This is a separate tool — phewsh doesn\'t vendor it. Start here:')}`);
|
|
56
56
|
console.log(` ${cream(p.install)}`);
|
|
57
57
|
console.log('');
|
|
58
58
|
return;
|
package/lib/packs.js
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
// • vendored — phewsh writes a clearly-marked block into the project's agent
|
|
13
13
|
// files (e.g. Karpathy's coding guidelines into CLAUDE.md/AGENTS.md).
|
|
14
14
|
// • linked — phewsh doesn't vendor it; it points you at the upstream
|
|
15
|
-
// installer (e.g. GSD is its own tool — we hand you its command).
|
|
15
|
+
// installer or review page (e.g. GSD is its own tool — we hand you its command).
|
|
16
16
|
|
|
17
17
|
const fs = require('fs');
|
|
18
18
|
const path = require('path');
|
|
@@ -52,6 +52,110 @@ const PACKS = {
|
|
|
52
52
|
license: 'see the GSD repo',
|
|
53
53
|
install: 'npx @gsd-build/get-shit-done init # follow the GSD repo for current instructions',
|
|
54
54
|
},
|
|
55
|
+
'loop-library': {
|
|
56
|
+
kind: 'linked',
|
|
57
|
+
title: 'Loop Library',
|
|
58
|
+
desc: 'Copy-ready agent loops with checks and stopping conditions. Good Work-layer inspiration; phewsh links to it without becoming a scheduler or runner.',
|
|
59
|
+
source: 'github.com/Forward-Future/loop-library · signals.forwardfuture.ai/loop-library',
|
|
60
|
+
license: 'MIT',
|
|
61
|
+
install: 'npx skills add Forward-Future/loop-library --skill loop-library -g # install through upstream skills tooling',
|
|
62
|
+
},
|
|
63
|
+
'matt-skills': {
|
|
64
|
+
kind: 'linked',
|
|
65
|
+
title: 'Matt Pocock Skills',
|
|
66
|
+
desc: 'Engineering-focused skills for debugging, TDD, domain modeling, handoffs, git guardrails, and design reviews.',
|
|
67
|
+
source: 'github.com/mattpocock/skills',
|
|
68
|
+
license: 'MIT',
|
|
69
|
+
install: 'npx skills@latest add mattpocock/skills # install through upstream skills tooling',
|
|
70
|
+
},
|
|
71
|
+
'cybersecurity-skills': {
|
|
72
|
+
kind: 'linked',
|
|
73
|
+
title: 'Anthropic Cybersecurity Skills',
|
|
74
|
+
desc: 'Large cybersecurity skill library mapped to security frameworks. Review scope carefully before using on real targets.',
|
|
75
|
+
source: 'github.com/mukul975/Anthropic-Cybersecurity-Skills',
|
|
76
|
+
license: 'Apache-2.0',
|
|
77
|
+
install: 'review https://github.com/mukul975/Anthropic-Cybersecurity-Skills # choose upstream install path and scope deliberately',
|
|
78
|
+
},
|
|
79
|
+
skillspector: {
|
|
80
|
+
kind: 'linked',
|
|
81
|
+
title: 'NVIDIA SkillSpector',
|
|
82
|
+
desc: 'Security scanner for AI-agent skills. Useful candidate for future Phewsh pack vetting before install or distribution.',
|
|
83
|
+
source: 'github.com/nvidia/skillspector',
|
|
84
|
+
license: 'see the SkillSpector repo',
|
|
85
|
+
install: 'review https://github.com/nvidia/skillspector # run scanner only after reading upstream docs',
|
|
86
|
+
},
|
|
87
|
+
'codebase-memory-mcp': {
|
|
88
|
+
kind: 'linked',
|
|
89
|
+
title: 'Codebase Memory MCP',
|
|
90
|
+
desc: 'Persistent code-intelligence MCP server for repository memory and fast code search. Linked only; configure per harness.',
|
|
91
|
+
source: 'github.com/DeusData/codebase-memory-mcp',
|
|
92
|
+
license: 'see the codebase-memory-mcp repo',
|
|
93
|
+
install: 'review https://github.com/DeusData/codebase-memory-mcp # install/configure upstream MCP manually',
|
|
94
|
+
},
|
|
95
|
+
'unlimited-ocr': {
|
|
96
|
+
kind: 'linked',
|
|
97
|
+
title: 'Unlimited OCR',
|
|
98
|
+
desc: 'Local/GPU OCR model candidate for images and PDFs. Relevant to RecipeFlower-style recipe capture, but heavy and not auto-installed.',
|
|
99
|
+
source: 'github.com/baidu/Unlimited-OCR',
|
|
100
|
+
license: 'MIT',
|
|
101
|
+
install: 'review https://github.com/baidu/Unlimited-OCR # inspect CUDA/SGLang requirements before installing',
|
|
102
|
+
},
|
|
103
|
+
'palmier-pro': {
|
|
104
|
+
kind: 'linked',
|
|
105
|
+
title: 'Palmier Pro',
|
|
106
|
+
desc: 'Open-source macOS video editor with an MCP surface. Useful media-production inspiration; platform-gated and not bundled.',
|
|
107
|
+
source: 'github.com/palmier-io/palmier-pro',
|
|
108
|
+
license: 'GPLv3',
|
|
109
|
+
install: 'review https://github.com/palmier-io/palmier-pro # macOS/Apple Silicon requirements apply',
|
|
110
|
+
},
|
|
111
|
+
openmontage: {
|
|
112
|
+
kind: 'linked',
|
|
113
|
+
title: 'OpenMontage',
|
|
114
|
+
desc: 'Agentic video-production system with pipelines, tools, and skills. Treat as an upstream media lab, not a core Phewsh dependency.',
|
|
115
|
+
source: 'github.com/calesthio/OpenMontage',
|
|
116
|
+
license: 'see the OpenMontage repo',
|
|
117
|
+
install: 'review https://github.com/calesthio/OpenMontage # install only in a project that needs agentic video production',
|
|
118
|
+
},
|
|
119
|
+
hyperframes: {
|
|
120
|
+
kind: 'linked',
|
|
121
|
+
title: 'Hyperframes',
|
|
122
|
+
desc: 'HTML-to-video rendering for agents. Good fit for future product demos, walkthroughs, and generated media packs.',
|
|
123
|
+
source: 'github.com/heygen-com/hyperframes',
|
|
124
|
+
license: 'see the Hyperframes repo',
|
|
125
|
+
install: 'review https://github.com/heygen-com/hyperframes # inspect current renderer/runtime requirements',
|
|
126
|
+
},
|
|
127
|
+
'deer-flow': {
|
|
128
|
+
kind: 'linked',
|
|
129
|
+
title: 'DeerFlow',
|
|
130
|
+
desc: 'Open-source agent harness with sub-agents, memory, sandboxes, and skills. Compare as an executor/harness, not a Phewsh replacement.',
|
|
131
|
+
source: 'github.com/bytedance/deer-flow',
|
|
132
|
+
license: 'MIT',
|
|
133
|
+
install: 'review https://github.com/bytedance/deer-flow # evaluate as a separate harness before configuring',
|
|
134
|
+
},
|
|
135
|
+
'hermes-agent': {
|
|
136
|
+
kind: 'linked',
|
|
137
|
+
title: 'Hermes Agent',
|
|
138
|
+
desc: 'Nous Research agent project. Linked as a possible compatible harness to evaluate before any deeper integration.',
|
|
139
|
+
source: 'github.com/nousresearch/hermes-agent',
|
|
140
|
+
license: 'see the Hermes Agent repo',
|
|
141
|
+
install: 'review https://github.com/nousresearch/hermes-agent # evaluate upstream capabilities first',
|
|
142
|
+
},
|
|
143
|
+
voicebox: {
|
|
144
|
+
kind: 'linked',
|
|
145
|
+
title: 'Voicebox',
|
|
146
|
+
desc: 'Open-source AI voice studio. Candidate for future audio/voice workflows and Keylink-adjacent media experiments.',
|
|
147
|
+
source: 'github.com/jamiepine/voicebox',
|
|
148
|
+
license: 'see the Voicebox repo',
|
|
149
|
+
install: 'review https://github.com/jamiepine/voicebox # install only for voice workflows that need it',
|
|
150
|
+
},
|
|
151
|
+
gstack: {
|
|
152
|
+
kind: 'linked',
|
|
153
|
+
title: 'gstack',
|
|
154
|
+
desc: 'Opinionated Claude Code setup with role/tooling patterns. Useful reference, but Phewsh should preserve its own four-word model.',
|
|
155
|
+
source: 'github.com/garrytan/gstack',
|
|
156
|
+
license: 'see the gstack repo',
|
|
157
|
+
install: 'review https://github.com/garrytan/gstack # inspect before mixing with existing agent files',
|
|
158
|
+
},
|
|
55
159
|
};
|
|
56
160
|
|
|
57
161
|
function markers(name) {
|