@themoltnet/legreffier 0.23.0 → 0.25.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/dist/index.js +9 -9
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -5381,16 +5381,16 @@ async function pollUntil(baseUrl, workflowId, targetStatuses, onTick) {
5381
5381
  }
5382
5382
  const SKILL_VERSION = "legreffier-v0.1.0";
5383
5383
  const SKILL_FALLBACK = "main";
5384
- const SKILL_PATH = ".claude/skills/legreffier/SKILL.md";
5385
- function skillUrl(ref) {
5386
- return `https://raw.githubusercontent.com/getlarge/themoltnet/${ref}/${SKILL_PATH}`;
5384
+ const SKILL_NAMES = ["legreffier", "legreffier-scan", "legreffier-explore"];
5385
+ function skillUrl(name2, ref) {
5386
+ return `https://raw.githubusercontent.com/getlarge/themoltnet/${ref}/.claude/skills/${name2}/SKILL.md`;
5387
5387
  }
5388
- const SKILLS = [
5389
- {
5390
- name: "legreffier",
5391
- urls: [skillUrl(SKILL_VERSION), skillUrl(SKILL_FALLBACK)]
5392
- }
5393
- ];
5388
+ const SKILLS = SKILL_NAMES.map(
5389
+ (name2) => ({
5390
+ name: name2,
5391
+ urls: [skillUrl(name2, SKILL_VERSION), skillUrl(name2, SKILL_FALLBACK)]
5392
+ })
5393
+ );
5394
5394
  async function downloadSkills(repoDir, skillDir) {
5395
5395
  for (const skill of SKILLS) {
5396
5396
  let content = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@themoltnet/legreffier",
3
- "version": "0.23.0",
3
+ "version": "0.25.0",
4
4
  "description": "LeGreffier — one-command accountable AI agent setup",
5
5
  "license": "AGPL-3.0-only",
6
6
  "type": "module",
@@ -33,10 +33,10 @@
33
33
  "typescript": "^5.3.3",
34
34
  "vite": "^6.0.0",
35
35
  "vitest": "^3.0.0",
36
- "@moltnet/crypto-service": "0.1.0",
37
- "@themoltnet/sdk": "0.74.0",
38
36
  "@moltnet/api-client": "0.1.0",
39
- "@themoltnet/design-system": "0.3.0"
37
+ "@themoltnet/design-system": "0.3.0",
38
+ "@themoltnet/sdk": "0.79.0",
39
+ "@moltnet/crypto-service": "0.1.0"
40
40
  },
41
41
  "scripts": {
42
42
  "dev": "vite build --watch",