sra-skills 0.3.3 → 0.4.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.
Files changed (2) hide show
  1. package/index.mjs +2 -2
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -30,11 +30,11 @@ const TOOLS = {
30
30
  }
31
31
  }
32
32
  // Agents
33
- const agentsDir = join(repoPath, 'adapters', 'claude', 'agents');
33
+ const agentsDir = join(repoPath, 'agents');
34
34
  const targetAgents = join(HOME, '.claude', 'agents');
35
35
  if (existsSync(agentsDir)) {
36
36
  mkdirSync(targetAgents, { recursive: true });
37
- for (const f of readdirSync(agentsDir).filter(f => f.endsWith('.md'))) {
37
+ for (const f of readdirSync(agentsDir).filter(f => f.endsWith('.md') && f.toLowerCase() !== 'readme.md')) {
38
38
  symlinkSafe(join(agentsDir, f), join(targetAgents, f));
39
39
  console.log(` [claude] → agents/${f}`);
40
40
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sra-skills",
3
- "version": "0.3.3",
3
+ "version": "0.4.0",
4
4
  "description": "SRA agent skills installer — manage AI skill repos",
5
5
  "bin": {
6
6
  "sra": "index.mjs",