thepopebot 1.2.75-beta.8 → 1.2.75-beta.9

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/bin/cli.js CHANGED
@@ -273,7 +273,7 @@ async function init() {
273
273
  }
274
274
 
275
275
  // Create default skill activation symlinks
276
- const defaultSkills = ['agent-job-secrets'];
276
+ const defaultSkills = [];
277
277
  const activeDir = path.join(cwd, 'skills', 'active');
278
278
  fs.mkdirSync(activeDir, { recursive: true });
279
279
  for (const skill of defaultSkills) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thepopebot",
3
- "version": "1.2.75-beta.8",
3
+ "version": "1.2.75-beta.9",
4
4
  "type": "module",
5
5
  "description": "Create autonomous AI agents with a two-layer architecture: Next.js Event Handler + Docker Agent.",
6
6
  "bin": {
@@ -14,6 +14,9 @@
14
14
  # Skills dependencies (installed at runtime in Docker for correct arch)
15
15
  skills/*/node_modules/
16
16
 
17
+ # Dynamically activated skills (created at container runtime, not user config)
18
+ skills/active/agent-job-secrets
19
+
17
20
  # Database
18
21
  data/
19
22