cdspec 0.1.4 → 0.1.6

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/README.md CHANGED
@@ -1,18 +1,17 @@
1
- # CDSpec
1
+ # CDSpec
2
2
 
3
- `cdspec` 是一个 Skill 编排 CLI,用来把项目里的模板/技能一键安装到不同智能体目录(Codex / ClaudeCode / iFlow),并自动生成可调用命令。
3
+ `cdspec` 是一个用于规范项目开发、提高开发效率的 Skill 初始化 CLI
4
+ 它会把项目内 `templates/` 的技能模板一键安装到不同编程智能体(Codex / ClaudeCode / iFlow)可识别的目录,并自动生成对应命令文件。
4
5
 
5
6
  ## 功能
6
7
 
7
- - `templates/` 批量生成并安装 skills
8
- - 自动为每个 skill 生成命令文件
9
- - 生成命令与 skill 的绑定说明(AGENTS/CLAUDE/IFLOW)
10
- - 支持任务拆分与归档(`task split/status/archive`)
8
+ - 基于 `templates/` 一键生成并安装 skills
9
+ - 自动为每个 skill 生成可调用命令(`cd-<skill-name>`)
10
+ - 支持选择生成路径:默认路径(用户目录)或当前项目路径
11
+ - 支持目标智能体:`codex`、`claudecode`、`iflow`
11
12
 
12
13
  ## 安装
13
14
 
14
- 全局安装(已发布到 npm):
15
-
16
15
  ```bash
17
16
  npm i -g cdspec
18
17
  ```
@@ -23,17 +22,28 @@ npm i -g cdspec
23
22
  cdspec --help
24
23
  ```
25
24
 
26
- 本地开发方式:
25
+ ## 使用
26
+
27
+ 执行初始化(交互选择智能体 + 路径模式):
27
28
 
28
29
  ```bash
29
- npm install
30
- npm run build
31
- npm link
30
+ cdspec init
31
+ ```
32
+
33
+ 非交互方式:
34
+
35
+ ```bash
36
+ cdspec init --agents codex,claudecode,iflow --path-mode default
32
37
  ```
33
38
 
34
- ## 快速开始
39
+ 可选参数:
35
40
 
36
- 在项目根目录准备 `templates/`,每个技能一个目录,目录内至少有 `SKILL.md`。
41
+ - `--agents <agents>`: `codex|claudecode|iflow`,支持逗号分隔
42
+ - `--path-mode <mode>`: `default|project`
43
+
44
+ ## 模板约定
45
+
46
+ 在项目根目录准备 `templates/`,每个技能一个目录,且至少包含 `SKILL.md`。
37
47
 
38
48
  示例:
39
49
 
@@ -43,66 +53,30 @@ templates/
43
53
  SKILL.md
44
54
  agents/openai.yaml
45
55
  references/*
46
- frontend-standards/
56
+ frontend-standard/
57
+ SKILL.md
58
+ backend-standard/
47
59
  SKILL.md
48
60
  ```
49
61
 
50
- 执行初始化:
51
-
52
- ```bash
53
- cdspec init
54
- ```
55
-
56
- 或指定智能体:
57
-
58
- ```bash
59
- cdspec init --agents codex,claudecode,iflow
60
- ```
61
-
62
- ## 生成规则(当前版本)
63
-
64
- 1. `templates/*` 下每个 skill 目录会被安装到目标智能体的 `skills/`。
65
- 2. 每个 skill 自动生成一个命令文件,命令名规则为:
66
- `cd-<skill-name>`
67
- 3. `init` 默认覆盖旧文件(不需要 `--force`)。
68
-
69
- 示例:
70
-
71
- - skill: `frontend-develop-standard`
72
- - 命令文件:`cd-frontend-develop-standard.md`
73
-
74
62
  ## 输出目录
75
63
 
76
- 默认配置下:
64
+ `--path-mode default`(默认,用户目录):
77
65
 
78
66
  - Codex: `~/.codex/skills/*` 和 `~/.codex/prompts/*`
79
- - ClaudeCode: `.claude/skills/*` 和 `.claude/commands/opsx/*`
80
- - iFlow: `.iflow/skills/*` 和 `.iflow/commands/*`
81
-
82
- 附加说明文件:
67
+ - ClaudeCode: `~/.claude/skills/*` 和 `~/.claude/commands/*`
68
+ - iFlow: `~/.iflow/skills/*` 和 `~/.iflow/commands/*`
83
69
 
84
- - `~/.codex/AGENTS.md`
85
- - 项目根 `AGENTS.md`
86
- - 项目根 `CLAUDE.md`(当启用 claudecode)
87
- - `.iflow/IFLOW.md`(当启用 iflow)
70
+ `--path-mode project`(当前项目目录):
88
71
 
89
- ## 配置
72
+ - Codex: `./.codex/skills/*` 和 `./.codex/prompts/*`
73
+ - ClaudeCode: `./.claude/skills/*` 和 `./.claude/commands/*`
74
+ - iFlow: `./.iflow/skills/*` 和 `./.iflow/commands/*`
90
75
 
91
- 项目根配置文件:`cdspec.config.yaml`
76
+ ## 开发
92
77
 
93
- 可配置项包括:
94
-
95
- - 各智能体根目录(如 `~/.codex`)
96
- - 命令目录位置(`prompts` / `commands`)
97
- - 命令文件命名规则与 slash 展示规则
98
-
99
- ## 常见问题
100
-
101
- 1. `init` 后看不到新命令
102
- 重启 Codex 会话;部分客户端启动时才扫描 prompt 列表。
103
-
104
- 2. 命令重复(Team/个人各一份)
105
- 这是不同来源同时存在,清理个人或团队同名 skill 即可。
106
-
107
- 3. 发布 npm 报 401/404
108
- 先 `npm login`,再检查包名与权限后发布。
78
+ ```bash
79
+ npm install
80
+ npm run build
81
+ npm run dev
82
+ ```
package/dist/cli.js CHANGED
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- const _0x1e5646=_0x3b05;(function(_0x4ee451,_0x3569b9){const _0x1f05e0=_0x3b05,_0x5d1dc1=_0x4ee451();while(!![]){try{const _0x5179be=-parseInt(_0x1f05e0(0x84))/(-0x2001+-0x67*0x3d+-0x1*-0x388d)+parseInt(_0x1f05e0(0x96))/(0x12bf*-0x1+-0x1ecb+-0xc63*-0x4)+parseInt(_0x1f05e0(0x89))/(-0x1a5*0x16+0x287+0x3e*0x8b)*(-parseInt(_0x1f05e0(0x79))/(-0x1*0xc3b+-0x293*0x2+0x1165))+-parseInt(_0x1f05e0(0x7e))/(0x6*0x60a+-0x25c9+0x192)+-parseInt(_0x1f05e0(0xa4))/(-0x1615+0x5*0x449+0xae)*(-parseInt(_0x1f05e0(0x95))/(0x182+-0x3d*0x11+0x1*0x292))+-parseInt(_0x1f05e0(0x80))/(-0x1a10+-0xb7*-0x2e+-0x6ca)+parseInt(_0x1f05e0(0x8b))/(0x9*-0x47+-0x1020+0x12a8);if(_0x5179be===_0x3569b9)break;else _0x5d1dc1['push'](_0x5d1dc1['shift']());}catch(_0x8383ab){_0x5d1dc1['push'](_0x5d1dc1['shift']());}}}(_0xa98e,0xd687e+0x161f1+-0x11*0x357b));import _0x3e267c from'@inquirer/checkbox';import _0x263e5c from'@inquirer/select';import{Command}from'commander';function _0x3b05(_0xcb0c9b,_0x9f3b86){_0xcb0c9b=_0xcb0c9b-(-0x258d+-0x1382*0x1+-0x3988*-0x1);const _0x13c83a=_0xa98e();let _0x480847=_0x13c83a[_0xcb0c9b];return _0x480847;}import _0x4bde05 from'node:path';import _0xfd157b from'node:process';import{initSkills}from'./skill-core/service.js';const program=new Command();function _0xa98e(){const _0x22b31c=['默认路径(按配置)','argv','error','log','init','description','isTTY','command','message','67165ufSaFf','39170BEPBmB','length','iflow','toLowerCase','default|project','project','cdspec','join','[✓]','trim','--agents\x20<agents>','codex','0.1.0','agents','606RkbENY','exitCode','未知路径模式:\x20','claudecode','cwd','请选择编程智能体','[\x20]','48520pUTxzg','default','已完成初始化:','string','Skill\x20init\x20CLI','4843425GemgOe','已生成技能包:','11307288EXYiAg','stdin','请选择生成路径','version','1381099RrvMmJ','--path-mode\x20<mode>','当前项目路径','codex|claudecode|iflow|all\x20or\x20comma-separated','pathMode','3ozXreL','action','31709025QlVAEB'];_0xa98e=function(){return _0x22b31c;};return _0xa98e();}program['name'](_0x1e5646(0x9c))[_0x1e5646(0x91)](_0x1e5646(0x7d))[_0x1e5646(0x83)](_0x1e5646(0xa2)),program[_0x1e5646(0x93)](_0x1e5646(0x90))[_0x1e5646(0x91)]('为所选编程智能体初始化技能')['option'](_0x1e5646(0xa0),_0x1e5646(0x87))['option'](_0x1e5646(0x85),_0x1e5646(0x9a))[_0x1e5646(0x8a)](async _0x57c25b=>{const _0x1ec360=_0x1e5646,_0x57561a=_0x57c25b[_0x1ec360(0xa3)]??await askAgentsSelection(),_0x109d41=normalizePathMode(_0x57c25b[_0x1ec360(0x88)])??await askPathModeSelection(),_0x56cb02=await initSkills(_0xfd157b[_0x1ec360(0xa8)](),_0x57561a,!![],_0x109d41);console[_0x1ec360(0x8f)](_0x1ec360(0x7b)+_0x57561a),console['log']('生成路径模式:'+(_0x109d41==='project'?_0x1ec360(0x86):_0x1ec360(0x8c))),console[_0x1ec360(0x8f)](_0x1ec360(0x7f));for(const _0x268481 of _0x56cb02){console[_0x1ec360(0x8f)](_0x4bde05['resolve'](_0x268481));}}),program['parseAsync'](_0xfd157b[_0x1e5646(0x8d)])['catch'](_0x5aeae6=>{const _0x47bc0d=_0x1e5646,_0x8873c7=_0x5aeae6 instanceof Error?_0x5aeae6[_0x47bc0d(0x94)]:String(_0x5aeae6);console[_0x47bc0d(0x8e)](_0x8873c7),_0xfd157b[_0x47bc0d(0xa5)]=0x13f2*0x1+-0x1b59+0x768;});async function askAgentsSelection(){const _0x1abd93=_0x1e5646;if(!_0xfd157b['stdin'][_0x1abd93(0x92)])return _0x1abd93(0xa1);const _0x330887=await _0x3e267c({'message':_0x1abd93(0xa9),'required':!![],'theme':{'icon':{'checked':_0x1abd93(0x9e),'unchecked':_0x1abd93(0xaa),'cursor':'>'}},'choices':[{'name':'codex','value':'codex','checked':!![]},{'name':'claudecode','value':_0x1abd93(0xa7)},{'name':_0x1abd93(0x98),'value':'iflow'}]});if(_0x330887[_0x1abd93(0x97)]===0x21d9+-0x125a+-0xf7f)return'codex';return _0x330887[_0x1abd93(0x9d)](',');}async function askPathModeSelection(){const _0x5c279c=_0x1e5646;if(!_0xfd157b[_0x5c279c(0x81)][_0x5c279c(0x92)])return _0x5c279c(0x7a);return _0x263e5c({'message':_0x5c279c(0x82),'choices':[{'name':_0x5c279c(0x8c),'value':_0x5c279c(0x7a)},{'name':_0x5c279c(0x86),'value':_0x5c279c(0x9b)}],'default':_0x5c279c(0x7a)});}function normalizePathMode(_0x11ee60){const _0x42cee6=_0x1e5646;if(typeof _0x11ee60!==_0x42cee6(0x7c))return undefined;const _0x194e87=_0x11ee60[_0x42cee6(0x9f)]()[_0x42cee6(0x99)]();if(_0x194e87===_0x42cee6(0x7a)||_0x194e87==='project')return _0x194e87;throw new Error(_0x42cee6(0xa6)+_0x11ee60+',可选值:\x20default\x20|\x20project');}
2
+ const _0x4b16ea=_0x4203;(function(_0x421c27,_0xdc8902){const _0x15aff1=_0x4203,_0x45608b=_0x421c27();while(!![]){try{const _0xa919ab=-parseInt(_0x15aff1(0x195))/(-0x2c*0x53+-0xa88+-0x1*-0x18cd)*(-parseInt(_0x15aff1(0x181))/(0xd84+0x148d+-0x220f))+-parseInt(_0x15aff1(0x17d))/(0x1489*0x1+-0x1*0x115c+0x5a*-0x9)*(-parseInt(_0x15aff1(0x192))/(0xa*-0x326+0x3*0x329+-0x1605*-0x1))+-parseInt(_0x15aff1(0x188))/(0x4ee+-0x2027+0xb*0x27a)*(parseInt(_0x15aff1(0x190))/(0x16db+-0x1ee6+0x23*0x3b))+parseInt(_0x15aff1(0x182))/(0x149c+0x427*-0x4+0x3f9*-0x1)*(parseInt(_0x15aff1(0x187))/(0x25c7*-0x1+-0x15fd+-0x4*-0xef3))+-parseInt(_0x15aff1(0x17e))/(0x6cb*-0x5+0x367+0x45f*0x7)+parseInt(_0x15aff1(0x176))/(-0x17fb+-0x2*0x1e9+0x1bd7)+-parseInt(_0x15aff1(0x191))/(0x1f83+-0x1*-0x259e+-0x25*0x1de);if(_0xa919ab===_0xdc8902)break;else _0x45608b['push'](_0x45608b['shift']());}catch(_0x540ee9){_0x45608b['push'](_0x45608b['shift']());}}}(_0x52fe,0xf2f3+0x269e5+-0x1227c));import _0x3cc44a from'@inquirer/checkbox';import _0x8480a7 from'@inquirer/select';import{Command}from'commander';function _0x52fe(){const _0x41959b=['claudecode','exitCode',',可选值:\x20default\x20|\x20project','toLowerCase','catch','isTTY','--path-mode\x20<mode>','message','cwd','agents','name','生成路径模式:','argv','parse','default','未知路径模式:\x20','iflow','--agents\x20<agents>','error','description','cdspec','codex','Skill\x20init\x20CLI','2353530GvueDK','option','已完成初始化:','command','dirname','action','utf8','859557fwmCcc','1124523ttfLXd','default|project','resolve','250JumRlH','1054067CzvjMd','parseAsync','string','stdin','当前项目路径','8SNKeBa','15KFOgel','[\x20]','请选择生成路径','为所选编程智能体初始化技能','length','请选择编程智能体','trim','project','271182elYhGP','4477308wAELxA','4NlfCvD','log','0.0.0','1129oUeDmV','codex|claudecode|iflow|all\x20or\x20comma-separated','version'];_0x52fe=function(){return _0x41959b;};return _0x52fe();}import{readFileSync}from'node:fs';function _0x4203(_0x522ec0,_0x59d852){_0x522ec0=_0x522ec0-(0x1f*-0x117+-0x1cb8+-0xaa9*-0x6);const _0x50d5ea=_0x52fe();let _0x197d36=_0x50d5ea[_0x522ec0];return _0x197d36;}import _0x223ce1 from'node:path';import _0x44e90e from'node:process';import{fileURLToPath}from'node:url';import{initSkills}from'./skill-core/service.js';const program=new Command(),cliVersion=readCliVersion();program[_0x4b16ea(0x1a2)](_0x4b16ea(0x1ac))[_0x4b16ea(0x1ab)](_0x4b16ea(0x175))[_0x4b16ea(0x197)](cliVersion),program[_0x4b16ea(0x179)]('init')[_0x4b16ea(0x1ab)](_0x4b16ea(0x18b))[_0x4b16ea(0x177)](_0x4b16ea(0x1a9),_0x4b16ea(0x196))[_0x4b16ea(0x177)](_0x4b16ea(0x19e),_0x4b16ea(0x17f))[_0x4b16ea(0x17b)](async _0x331d7e=>{const _0x28ed16=_0x4b16ea,_0x15b0a7=_0x331d7e[_0x28ed16(0x1a1)]??await askAgentsSelection(),_0x5a3cf6=normalizePathMode(_0x331d7e['pathMode'])??await askPathModeSelection(),_0x35b4db=await initSkills(_0x44e90e[_0x28ed16(0x1a0)](),_0x15b0a7,!![],_0x5a3cf6);console['log'](_0x28ed16(0x178)+_0x15b0a7),console[_0x28ed16(0x193)](_0x28ed16(0x1a3)+(_0x5a3cf6===_0x28ed16(0x18f)?_0x28ed16(0x186):'默认路径(按配置)')),console['log']('已生成技能包:');for(const _0x47adff of _0x35b4db){console['log'](_0x223ce1['resolve'](_0x47adff));}}),program[_0x4b16ea(0x183)](_0x44e90e[_0x4b16ea(0x1a4)])[_0x4b16ea(0x19c)](_0x443d48=>{const _0x2b1f9b=_0x4b16ea,_0x1f7c78=_0x443d48 instanceof Error?_0x443d48[_0x2b1f9b(0x19f)]:String(_0x443d48);console[_0x2b1f9b(0x1aa)](_0x1f7c78),_0x44e90e[_0x2b1f9b(0x199)]=-0x610*0x3+-0x3b*-0x7a+-0x1*0x9ed;});async function askAgentsSelection(){const _0x2bc2e9=_0x4b16ea;if(!_0x44e90e[_0x2bc2e9(0x185)][_0x2bc2e9(0x19d)])return _0x2bc2e9(0x1ad);const _0x179745=await _0x3cc44a({'message':_0x2bc2e9(0x18d),'required':!![],'theme':{'icon':{'checked':'[✓]','unchecked':_0x2bc2e9(0x189),'cursor':'>'}},'choices':[{'name':_0x2bc2e9(0x1ad),'value':_0x2bc2e9(0x1ad),'checked':!![]},{'name':_0x2bc2e9(0x198),'value':'claudecode'},{'name':_0x2bc2e9(0x1a8),'value':_0x2bc2e9(0x1a8)}]});if(_0x179745[_0x2bc2e9(0x18c)]===-0x1*-0x2125+0x1389*-0x1+0xd*-0x10c)return'codex';return _0x179745['join'](',');}async function askPathModeSelection(){const _0x42ed57=_0x4b16ea;if(!_0x44e90e[_0x42ed57(0x185)][_0x42ed57(0x19d)])return'default';return _0x8480a7({'message':_0x42ed57(0x18a),'choices':[{'name':'默认路径(按配置)','value':_0x42ed57(0x1a6)},{'name':'当前项目路径','value':_0x42ed57(0x18f)}],'default':'default'});}function normalizePathMode(_0x3980ca){const _0x40ede0=_0x4b16ea;if(typeof _0x3980ca!==_0x40ede0(0x184))return undefined;const _0x25289e=_0x3980ca[_0x40ede0(0x18e)]()[_0x40ede0(0x19b)]();if(_0x25289e==='default'||_0x25289e===_0x40ede0(0x18f))return _0x25289e;throw new Error(_0x40ede0(0x1a7)+_0x3980ca+_0x40ede0(0x19a));}function readCliVersion(){const _0x3887f5=_0x4b16ea;try{const _0x4b3a2c=_0x223ce1[_0x3887f5(0x17a)](fileURLToPath(import.meta.url)),_0x2095ff=_0x223ce1[_0x3887f5(0x180)](_0x4b3a2c,'..','package.json'),_0x5ea9ed=readFileSync(_0x2095ff,_0x3887f5(0x17c)),_0x5f2675=JSON[_0x3887f5(0x1a5)](_0x5ea9ed);return _0x5f2675[_0x3887f5(0x197)]||'0.0.0';}catch{return _0x3887f5(0x194);}}
@@ -1 +1 @@
1
- const _0x5373db=_0x2664;function _0x204d(){const _0x30cd4d=['3047364SjbeaV','explore','7837760tIKVPn','718dLzuZp','/opsx:{id}','{id}.md','archive','IFLOW.md','2875jSExhy','~/.iflow','Archive\x20completed\x20changes\x20and\x20update\x20baseline\x20specs.','Implement\x20approved\x20tasks\x20and\x20keep\x20spec\x20updates\x20in\x20sync.','AGENTS.md','10116320bxqRUa','opsx-{id}.md','apply','commands','.codex','1311985awSZdh','openspec-core','/opsx-{id}','Create\x20a\x20change\x20proposal\x20with\x20scope\x20and\x20impacted\x20specs.','CLAUDE.md','2974380IIcmfp','Analyze\x20existing\x20specs\x20and\x20produce\x20planned\x20deltas.','2708970Woprdq'];_0x204d=function(){return _0x30cd4d;};return _0x204d();}(function(_0x271c5e,_0x3be773){const _0x2d6a9f=_0x2664,_0x8ce1ea=_0x271c5e();while(!![]){try{const _0x310d9c=-parseInt(_0x2d6a9f(0x8e))/(0x3d7*0x5+-0xf*-0xa3+-0x1cbf)*(-parseInt(_0x2d6a9f(0x89))/(0x21e5*0x1+0x1*0x1135+-0x663*0x8))+parseInt(_0x2d6a9f(0x83))/(0x141*0x13+0x9b9+-0x2189)+parseInt(_0x2d6a9f(0x86))/(0x90+0x2089+-0x2115)+-parseInt(_0x2d6a9f(0x7e))/(-0x722+-0x6a3+0xdca*0x1)+parseInt(_0x2d6a9f(0x85))/(-0x1ff0+0x1487+0xb6f)+-parseInt(_0x2d6a9f(0x88))/(0x909+-0xb06+0x204)+-parseInt(_0x2d6a9f(0x93))/(0x100f+-0x1633*0x1+-0x62c*-0x1);if(_0x310d9c===_0x3be773)break;else _0x8ce1ea['push'](_0x8ce1ea['shift']());}catch(_0x25c475){_0x8ce1ea['push'](_0x8ce1ea['shift']());}}}(_0x204d,-0x843a6+0x9de20+-0x863*-0xe2));function _0x2664(_0x243ab2,_0x16c0f0){_0x243ab2=_0x243ab2-(0x1000+0x4f8+-0x147e);const _0x1be26f=_0x204d();let _0x11deeb=_0x1be26f[_0x243ab2];return _0x11deeb;}export const defaultConfig={'commandBindings':[{'id':'propose','skill':_0x5373db(0x7f),'description':_0x5373db(0x81)},{'id':_0x5373db(0x87),'skill':_0x5373db(0x7f),'description':_0x5373db(0x84)},{'id':_0x5373db(0x7b),'skill':_0x5373db(0x7f),'description':_0x5373db(0x91)},{'id':_0x5373db(0x8c),'skill':'openspec-core','description':_0x5373db(0x90)}],'agents':{'codex':{'rootDir':_0x5373db(0x7d),'commandsDir':'prompts','commandFilePattern':_0x5373db(0x7a),'slashPattern':_0x5373db(0x80),'guideFile':_0x5373db(0x92)},'claudecode':{'rootDir':'~/.claude','commandsDir':'commands/opsx','commandFilePattern':_0x5373db(0x8b),'slashPattern':_0x5373db(0x8a),'guideFile':_0x5373db(0x82),'guideAtProjectRoot':!![]},'iflow':{'rootDir':_0x5373db(0x8f),'commandsDir':_0x5373db(0x7c),'commandFilePattern':_0x5373db(0x7a),'slashPattern':'/opsx-{id}','guideFile':_0x5373db(0x8d)}}};
1
+ function _0x2010(_0x17e1b3,_0x42155a){_0x17e1b3=_0x17e1b3-(0x2346+-0x2507+0x24c);const _0x639d3d=_0x2993();let _0x1fb20c=_0x639d3d[_0x17e1b3];return _0x1fb20c;}const _0x18f611=_0x2010;(function(_0x34d5cf,_0x7dcc34){const _0x2df088=_0x2010,_0x459aae=_0x34d5cf();while(!![]){try{const _0xd1b8fc=parseInt(_0x2df088(0x97))/(-0x1d19+0x8db*0x2+-0x12*-0xa2)*(parseInt(_0x2df088(0x99))/(0x1*-0x15a+0x7*-0x39b+0x1a99))+parseInt(_0x2df088(0x92))/(-0x1fc5+0x3*0xa5+0x1dd9)+parseInt(_0x2df088(0x9a))/(-0x1c57+-0x6d*0x42+-0x61*-0x95)+parseInt(_0x2df088(0x8d))/(-0xf50+-0x2495+0x33ea)*(-parseInt(_0x2df088(0x8c))/(-0x1ce7*0x1+0x3*0xa31+-0x1a6))+parseInt(_0x2df088(0x8e))/(-0x1908+0xfe7+0x928)*(parseInt(_0x2df088(0x9b))/(0x4c8+0x130*-0x6+0x98*0x4))+-parseInt(_0x2df088(0x9c))/(0x1*-0x2153+0x719+0x1a43)*(parseInt(_0x2df088(0x96))/(-0x1d03+0x157f+0x78e))+-parseInt(_0x2df088(0x98))/(-0xef9+0x11bb+-0x2b7);if(_0xd1b8fc===_0x7dcc34)break;else _0x459aae['push'](_0x459aae['shift']());}catch(_0x55cac8){_0x459aae['push'](_0x459aae['shift']());}}}(_0x2993,0x22505+-0x20*-0x556+0x3*0x6cd));export const defaultConfig={'commandBindings':[],'agents':{'codex':{'rootDir':_0x18f611(0x93),'commandsDir':'prompts','commandFilePattern':_0x18f611(0x91),'slashPattern':'/{id}','guideFile':'AGENTS.md'},'claudecode':{'rootDir':'~/.claude','commandsDir':_0x18f611(0x95),'commandFilePattern':_0x18f611(0x91),'slashPattern':_0x18f611(0x8b),'guideFile':_0x18f611(0x8f),'guideAtProjectRoot':!![]},'iflow':{'rootDir':_0x18f611(0x90),'commandsDir':'commands','commandFilePattern':'{id}.md','slashPattern':_0x18f611(0x8b),'guideFile':_0x18f611(0x94)}}};function _0x2993(){const _0x5af806=['906380jmBUGI','930MEQTXV','12562JkEOGb','200eOrovt','166456HsILXh','1762480IDNAYR','18ttRQxE','/{id}','114942bhdhpB','5VcxQbM','7lAtIAf','CLAUDE.md','~/.iflow','{id}.md','108405rzmTcl','~/.codex','IFLOW.md','commands'];_0x2993=function(){return _0x5af806;};return _0x2993();}
@@ -1 +1 @@
1
- const _0x5222ab=_0x477f;(function(_0x135e07,_0x1b59d6){const _0x1bacdf=_0x477f,_0x37dfd2=_0x135e07();while(!![]){try{const _0x273373=parseInt(_0x1bacdf(0xc2))/(-0x10af+0x1fe5+-0xf35)+-parseInt(_0x1bacdf(0xc0))/(-0x21e1+0x161e+0xbc5)+-parseInt(_0x1bacdf(0xba))/(-0x1*-0x565+0x13f*0xa+-0x11d8)+-parseInt(_0x1bacdf(0xbc))/(0xd8d+-0x3c7*-0x2+-0x1517)+parseInt(_0x1bacdf(0xc4))/(-0x1fc0+-0x2*0x135a+0x1*0x4679)*(-parseInt(_0x1bacdf(0xc3))/(-0x19fe+-0x1da3+0x37a7))+parseInt(_0x1bacdf(0xc5))/(0x1ba1+0x2*0xd+-0x1bb4)+parseInt(_0x1bacdf(0xbb))/(-0x1*-0x758+-0x8a0+0x150)*(parseInt(_0x1bacdf(0xbf))/(-0x1731+-0x1aa0+0x31da));if(_0x273373===_0x1b59d6)break;else _0x37dfd2['push'](_0x37dfd2['shift']());}catch(_0x272f06){_0x37dfd2['push'](_0x37dfd2['shift']());}}}(_0x3771,0x1*-0x2aa43+0x14d*0x329+0xfcd*0xa));import _0x23dbf5 from'node:path';import{readFile}from'node:fs/promises';function _0x3771(){const _0x4c74fd=['538178SJbJiK','cdspec.config.yaml','205467lVGERH','1177158FJpbOt','5CAoiib','1866403rEdAWu','commandBindings','agents','claudecode','704997JfvrUd','542928nozQrv','446756ihDaxE','length','codex','63STNbVH'];_0x3771=function(){return _0x4c74fd;};return _0x3771();}import{parse}from'yaml';function _0x477f(_0x1cd539,_0x35e5c6){_0x1cd539=_0x1cd539-(0x4*-0x745+0x545*-0x6+0x3d6b);const _0x8f2e21=_0x3771();let _0x5f5a82=_0x8f2e21[_0x1cd539];return _0x5f5a82;}import{pathExists}from'../utils/fs.js';import{defaultConfig}from'./default.js';const CONFIG_FILE=_0x5222ab(0xc1);export async function loadConfig(_0x15af00){const _0x38535b=_0x5222ab,_0x196ed5=_0x23dbf5['join'](_0x15af00,CONFIG_FILE);if(!await pathExists(_0x196ed5))return defaultConfig;const _0x3ef151=await readFile(_0x196ed5,'utf8'),_0x31dfbb=parse(_0x3ef151);if(!_0x31dfbb)return defaultConfig;const _0x489231={'commandBindings':_0x31dfbb[_0x38535b(0xc6)]&&_0x31dfbb[_0x38535b(0xc6)][_0x38535b(0xbd)]>-0x2*-0x1387+0x3*-0x611+-0x119*0x13?_0x31dfbb[_0x38535b(0xc6)]:defaultConfig[_0x38535b(0xc6)],'agents':{'codex':{...defaultConfig['agents'][_0x38535b(0xbe)],..._0x31dfbb[_0x38535b(0xc7)]?.['codex']||{}},'claudecode':{...defaultConfig['agents'][_0x38535b(0xb9)],..._0x31dfbb[_0x38535b(0xc7)]?.[_0x38535b(0xb9)]||{}},'iflow':{...defaultConfig[_0x38535b(0xc7)]['iflow'],..._0x31dfbb[_0x38535b(0xc7)]?.['iflow']||{}}}};return _0x489231;}
1
+ (function(_0x683797,_0x40adb1){const _0x413135=_0x2f8b,_0x50cbe1=_0x683797();while(!![]){try{const _0x2d4c18=-parseInt(_0x413135(0x159))/(0x110*0x1+-0x21*-0x3c+0x1*-0x8cb)+parseInt(_0x413135(0x154))/(0xb*0x97+-0xb2d*-0x1+-0x11a8)*(-parseInt(_0x413135(0x15b))/(-0xb05+0x232b+-0x1823))+-parseInt(_0x413135(0x15f))/(-0x182*-0x3+-0xc59*-0x3+0x1*-0x298d)*(parseInt(_0x413135(0x156))/(0x4f*0x29+-0x7*-0x1bd+0x1*-0x18cd))+parseInt(_0x413135(0x14e))/(0x13cb+0x1*0x301+-0xb63*0x2)*(-parseInt(_0x413135(0x15c))/(0xdb7*0x1+-0x1dcf+-0x1*-0x101f))+-parseInt(_0x413135(0x157))/(-0x844+-0x2f*-0x6f+-0xc15)*(-parseInt(_0x413135(0x153))/(-0x4*-0x99e+0x229b+0x2*-0x2485))+-parseInt(_0x413135(0x152))/(-0x202+0x1*-0x503+0xd*0x8b)*(parseInt(_0x413135(0x158))/(0xcb1+0x2659*-0x1+-0x2b*-0x99))+parseInt(_0x413135(0x15e))/(0x3fb+0x76f*0x2+-0x1*0x12cd)*(parseInt(_0x413135(0x15a))/(-0x180b+-0x1e8c+-0x434*-0xd));if(_0x2d4c18===_0x40adb1)break;else _0x50cbe1['push'](_0x50cbe1['shift']());}catch(_0x15ca01){_0x50cbe1['push'](_0x50cbe1['shift']());}}}(_0x41ac,0x10*-0x4f3+-0x3dc25*0x1+0x1687*0x54));import _0x1b6585 from'node:path';import{readFile}from'node:fs/promises';import{parse}from'yaml';import{pathExists}from'../utils/fs.js';function _0x2f8b(_0x2868ef,_0x2e1771){_0x2868ef=_0x2868ef-(-0x1*0xd6e+0x16dc+-0x821);const _0x5d2295=_0x41ac();let _0x1fbfce=_0x5d2295[_0x2868ef];return _0x1fbfce;}function _0x41ac(){const _0x3c630f=['codex','length','45590zfdlmZ','111420KWSwww','6IMDfBR','agents','170WLkucG','232ePnoQQ','143FPUSPU','51372RFEFlr','1927679ZnLSvO','228561tfDmUy','4151VyqdRg','commandBindings','60CVQmYg','40712pkikbS','claudecode','2064AVWanq','iflow'];_0x41ac=function(){return _0x3c630f;};return _0x41ac();}import{defaultConfig}from'./default.js';const CONFIG_FILE='cdspec.config.yaml';export async function loadConfig(_0x1d0a5e){const _0xe7eb6b=_0x2f8b,_0x527fb8=_0x1b6585['join'](_0x1d0a5e,CONFIG_FILE);if(!await pathExists(_0x527fb8))return defaultConfig;const _0x142ba6=await readFile(_0x527fb8,'utf8'),_0x4c016e=parse(_0x142ba6);if(!_0x4c016e)return defaultConfig;const _0x3bdc7a={'commandBindings':_0x4c016e[_0xe7eb6b(0x15d)]&&_0x4c016e[_0xe7eb6b(0x15d)][_0xe7eb6b(0x151)]>-0xb*0x27a+0x322*0x8+-0x117*-0x2?_0x4c016e[_0xe7eb6b(0x15d)]:defaultConfig['commandBindings'],'agents':{'codex':{...defaultConfig['agents'][_0xe7eb6b(0x150)],..._0x4c016e['agents']?.[_0xe7eb6b(0x150)]||{}},'claudecode':{...defaultConfig[_0xe7eb6b(0x155)]['claudecode'],..._0x4c016e[_0xe7eb6b(0x155)]?.[_0xe7eb6b(0x14d)]||{}},'iflow':{...defaultConfig[_0xe7eb6b(0x155)][_0xe7eb6b(0x14f)],..._0x4c016e['agents']?.[_0xe7eb6b(0x14f)]||{}}}};return _0x3bdc7a;}
@@ -1 +1 @@
1
- function _0x2efe(_0xe98e69,_0x2b944b){_0xe98e69=_0xe98e69-(-0xbda+0x14b1+-0x821);var _0x56d631=_0x43b5();var _0x147f7e=_0x56d631[_0xe98e69];return _0x147f7e;}(function(_0x1bc325,_0x31ea4d){var _0x30c9a0=_0x2efe,_0x3b774e=_0x1bc325();while(!![]){try{var _0x9074ec=-parseInt(_0x30c9a0(0xc2))/(-0x74+0x985*0x1+0x244*-0x4)+-parseInt(_0x30c9a0(0xbb))/(0x1*0x1097+-0x1*-0x2547+-0x35dc)*(parseInt(_0x30c9a0(0xb6))/(0x62b*-0x1+0x515+0x119))+parseInt(_0x30c9a0(0xb9))/(-0xc99+-0x40a+-0x1*-0x10a7)*(parseInt(_0x30c9a0(0xbe))/(0x1aad*-0x1+-0xd3b+0x3*0xd4f))+-parseInt(_0x30c9a0(0xb7))/(0x10c*-0x1e+0x19c9+0x5a5)*(-parseInt(_0x30c9a0(0xbd))/(-0x228f+0xd96*0x1+0x1500))+parseInt(_0x30c9a0(0xbf))/(0x35b+-0x16*0x167+-0x105*-0x1b)+parseInt(_0x30c9a0(0xc1))/(-0x3*-0x3cb+-0x1a1*-0x16+-0x44a*0xb)+-parseInt(_0x30c9a0(0xc0))/(0x1943*-0x1+0xaea+0xe63);if(_0x9074ec===_0x31ea4d)break;else _0x3b774e['push'](_0x3b774e['shift']());}catch(_0x2b8dd1){_0x3b774e['push'](_0x3b774e['shift']());}}}(_0x43b5,0x1fd7d+-0xbf5f+0x10f52));import _0x4e12ac from'node:os';import _0x4887c8 from'node:path';function _0x43b5(){var _0x12ee88=['1300600McCJTH','125000pMidWb','774054KSPpIq','239904uyFnPm','slice','win32','1116IZitzT','12858WFaYbK','normalize','46680oxHyGa','isAbsolute','346uawZEa','join','525kQLTeK','25jbLieR'];_0x43b5=function(){return _0x12ee88;};return _0x43b5();}export function resolveAgentRoot(_0x4e9a55,_0x333d68){var _0x2e9e4c=_0x2efe;if(_0x333d68['startsWith']('~/')||_0x333d68['startsWith']('~\x5c'))return _0x4887c8[_0x2e9e4c(0xbc)](_0x4e12ac['homedir'](),_0x333d68[_0x2e9e4c(0xc3)](-0x1b6d*0x1+-0x26ba*0x1+0x1*0x4229));if(_0x4887c8[_0x2e9e4c(0xc4)][_0x2e9e4c(0xba)](_0x333d68)||_0x4887c8['posix'][_0x2e9e4c(0xba)](_0x333d68))return _0x4887c8[_0x2e9e4c(0xb8)](_0x333d68);return _0x4887c8[_0x2e9e4c(0xbc)](_0x4e9a55,_0x333d68);}
1
+ function _0x6ab6(){var _0x45b7e0=['852410DCKzcw','9NtLXTI','join','isAbsolute','startsWith','5599566VArKKU','659304pQiHJa','1QWOfzb','80tGVQYg','slice','win32','18546gjOatV','homedir','11Hshdnw','40Jusuvk','83587XwHGfx','927466JgVzoe','posix','normalize','2846148xVmODo'];_0x6ab6=function(){return _0x45b7e0;};return _0x6ab6();}(function(_0x2c7ce1,_0x1d72a0){var _0x1e6e5a=_0x5932,_0x349bfb=_0x2c7ce1();while(!![]){try{var _0x4db017=-parseInt(_0x1e6e5a(0x71))/(0xf98+0x23ef+-0x3386)*(-parseInt(_0x1e6e5a(0x7a))/(-0x9d+-0x1*-0x43b+-0x39c))+-parseInt(_0x1e6e5a(0x7f))/(0x169f+0x86+-0x1722)*(-parseInt(_0x1e6e5a(0x70))/(0x2*0xc5+-0xb94+-0x21*-0x4e))+parseInt(_0x1e6e5a(0x72))/(-0x1d92+-0x1*0x1cc1+0x1d2c*0x2)*(-parseInt(_0x1e6e5a(0x75))/(-0xd13+0x25f9*-0x1+0x1106*0x3))+parseInt(_0x1e6e5a(0x79))/(-0x26ba+0x11eb+0x14d6)*(-parseInt(_0x1e6e5a(0x78))/(0x12f1*-0x1+0x3*-0xb55+0x34f8))+-parseInt(_0x1e6e5a(0x6f))/(-0x214c*-0x1+0x2*-0x130e+0x4d9)+-parseInt(_0x1e6e5a(0x7e))/(0xd01+-0x129+-0xbce*0x1)+parseInt(_0x1e6e5a(0x77))/(-0x277*-0xc+0xc7c+-0x2a05)*(parseInt(_0x1e6e5a(0x7d))/(0x1fe3+-0x1*-0x22e5+-0x42bc));if(_0x4db017===_0x1d72a0)break;else _0x349bfb['push'](_0x349bfb['shift']());}catch(_0x3a2e3d){_0x349bfb['push'](_0x349bfb['shift']());}}}(_0x6ab6,-0x5e5a2+0x22014*0x3+0x54d24));import _0xf0043 from'node:os';function _0x5932(_0x1be6a5,_0x454f35){_0x1be6a5=_0x1be6a5-(-0x1d5d+0x1b*0x1+0x1dae);var _0x18bf18=_0x6ab6();var _0xefe177=_0x18bf18[_0x1be6a5];return _0xefe177;}import _0xbb11e1 from'node:path';export function resolveAgentRoot(_0x43cf2e,_0x5f4bcf){var _0x2b60f2=_0x5932;if(_0x5f4bcf[_0x2b60f2(0x6e)]('~/')||_0x5f4bcf[_0x2b60f2(0x6e)]('~\x5c'))return _0xbb11e1[_0x2b60f2(0x6c)](_0xf0043[_0x2b60f2(0x76)](),_0x5f4bcf[_0x2b60f2(0x73)](0x1d3b+0x719*-0x1+-0x1620));if(_0xbb11e1[_0x2b60f2(0x74)][_0x2b60f2(0x6d)](_0x5f4bcf)||_0xbb11e1[_0x2b60f2(0x7b)][_0x2b60f2(0x6d)](_0x5f4bcf))return _0xbb11e1[_0x2b60f2(0x7c)](_0x5f4bcf);return _0xbb11e1['join'](_0x43cf2e,_0x5f4bcf);}
@@ -1 +1 @@
1
- const _0x2a6c01=_0x15a7;function _0x2407(){const _0x1100a3=['348720nlbjxM','target','15ClPMUe','Target\x20already\x20exists\x20for\x20skill\x20\x22','name','108240nbuvNF','join','SKILL.md','109499ZgkGod','claudecode','[claudecode]\x20name\x20is\x20required.','2ruECuI','.\x20Use\x20--force\x20to\x20overwrite.','stringify','78zBYise','444710dcqaFK','741vaQexO','11wKmBMF','5909270jBgQeS','emit','push','\x22\x20at\x20','validate','claudecode.skill.json','1871748NKbSrI','16YcrsTi','795048wfKsQw'];_0x2407=function(){return _0x1100a3;};return _0x2407();}(function(_0x50f9d5,_0x437a96){const _0x130558=_0x15a7,_0x1b73fe=_0x50f9d5();while(!![]){try{const _0x4a6baf=-parseInt(_0x130558(0x17d))/(0xf*-0x2+-0x5*-0x5c6+-0x1cbf)*(parseInt(_0x130558(0x180))/(0xb07*-0x3+0x12*-0x47+0x2615))+parseInt(_0x130558(0x177))/(-0xb87+0x1cb+0x9bf)*(-parseInt(_0x130558(0x174))/(0x1fbe+-0x31d*-0x3+-0x2911))+-parseInt(_0x130558(0x17a))/(0x7cb*-0x1+0x66c+0x1*0x164)*(parseInt(_0x130558(0x183))/(-0x118c+-0x13d3+0x1*0x2565))+parseInt(_0x130558(0x184))/(-0x1fd9+0x1e7d+0x163)*(-parseInt(_0x130558(0x173))/(0xce+0x1*-0xdd3+0x1*0xd0d))+-parseInt(_0x130558(0x172))/(-0x2*0x1235+0x3*-0x79d+0x3b4a)+parseInt(_0x130558(0x187))/(0x3d*0x46+-0x2157+0x5f*0x2d)*(parseInt(_0x130558(0x186))/(0x1*0x188f+-0x2d0*0x6+-0x7a4))+-parseInt(_0x130558(0x175))/(0x1c0*0x4+0x1818+0xf86*-0x2)*(-parseInt(_0x130558(0x185))/(-0x12b8+-0x26e8+0x39ad*0x1));if(_0x4a6baf===_0x437a96)break;else _0x1b73fe['push'](_0x1b73fe['shift']());}catch(_0x3f00ed){_0x1b73fe['push'](_0x1b73fe['shift']());}}}(_0x2407,-0x357ca*0x2+0x6*-0x1a315+0xc4778*0x2));import _0x358ded from'node:path';function _0x15a7(_0x88f7a5,_0x4c7d31){_0x88f7a5=_0x88f7a5-(-0x1ac+-0x1b88+0x1ea5);const _0x8023fe=_0x2407();let _0x2418d3=_0x8023fe[_0x88f7a5];return _0x2418d3;}import{emptyDir,pathExists}from'../../utils/fs.js';import{emitWithLayout}from'./shared.js';export class ClaudeCodeAdapter{[_0x2a6c01(0x176)]=_0x2a6c01(0x17e);[_0x2a6c01(0x18b)](_0x5261a9){const _0x4588e2=_0x2a6c01,_0xe186a1=[];return!_0x5261a9[_0x4588e2(0x179)]&&_0xe186a1[_0x4588e2(0x189)]({'level':'error','message':_0x4588e2(0x17f)}),_0xe186a1;}async[_0x2a6c01(0x188)](_0xd12cbc,_0x17dec4,_0x25c009){const _0x328baf=_0x2a6c01;if(await pathExists(_0x17dec4)&&!_0x25c009)throw new Error(_0x328baf(0x178)+_0xd12cbc[_0x328baf(0x179)]+_0x328baf(0x18a)+_0x17dec4+_0x328baf(0x181));_0x25c009&&await emptyDir(_0x17dec4);const _0x2f702f={'name':_0xd12cbc[_0x328baf(0x179)],'description':_0xd12cbc['description'],'entry':_0x328baf(0x17c)};await emitWithLayout(_0xd12cbc,_0x17dec4,!![],[{'relativePath':_0x328baf(0x171),'content':JSON[_0x328baf(0x182)](_0x2f702f,null,0x1*-0x2627+-0x1c81+0x42aa)+'\x0a'}]);}}export function claudecodeSkillPath(_0x432baa,_0x394bfd){const _0x2a3ccc=_0x2a6c01;return _0x358ded[_0x2a3ccc(0x17b)](_0x432baa,_0x2a3ccc(0x17e),_0x394bfd);}
1
+ const _0xd8f94f=_0xece2;(function(_0x509980,_0x36638f){const _0x28c3fe=_0xece2,_0x39f5e8=_0x509980();while(!![]){try{const _0x4085f1=parseInt(_0x28c3fe(0x8b))/(-0x9+-0x5d6+-0x8*-0xbc)+parseInt(_0x28c3fe(0x7e))/(-0x5b0+-0x25c1*0x1+0x2b73)*(-parseInt(_0x28c3fe(0x76))/(-0x1*-0x2263+-0x1*0x257b+0x31b))+-parseInt(_0x28c3fe(0x87))/(-0x1512+-0x38b+0x18a1)*(-parseInt(_0x28c3fe(0x89))/(0x1354+0x1*0x1c8b+-0xa*0x4c9))+parseInt(_0x28c3fe(0x83))/(-0x16bd*0x1+0x1*0x1a82+-0x3bf)*(-parseInt(_0x28c3fe(0x78))/(-0x12b4+-0x35*-0xb5+-0x12be))+parseInt(_0x28c3fe(0x85))/(0x7b2*0x1+0x175d+0xa9*-0x2f)+-parseInt(_0x28c3fe(0x79))/(0x2*0x1229+0x5cc*0x2+0x77*-0x67)+parseInt(_0x28c3fe(0x84))/(0x6d*0x2+-0xf2b+0xe5b);if(_0x4085f1===_0x36638f)break;else _0x39f5e8['push'](_0x39f5e8['shift']());}catch(_0xacd9bf){_0x39f5e8['push'](_0x39f5e8['shift']());}}}(_0x4702,-0xb7*-0x12a4+-0x180ffa+0x180eb7*0x1));import _0x293bf0 from'node:path';import{emptyDir,pathExists}from'../../utils/fs.js';import{emitWithLayout}from'./shared.js';function _0xece2(_0x20c02d,_0x5240fb){_0x20c02d=_0x20c02d-(-0xe71*0x1+0xb*0x12+0x5*0x2d3);const _0x1cd8be=_0x4702();let _0x2930fc=_0x1cd8be[_0x20c02d];return _0x2930fc;}function _0x4702(){const _0x16060=['2450673iRHvap','join','claudecode.skill.json','error','validate','2lGJhFu','SKILL.md','Target\x20already\x20exists\x20for\x20skill\x20\x22','target','emit','6693324TxQnkz','7433760DdAhUz','7207712EuhCwu','[claudecode]\x20name\x20is\x20required.','12laBGYG','stringify','999095UXBXfv','name','1626040KufsGX','push','description','4827099SlzdhZ','claudecode','7aKHKym'];_0x4702=function(){return _0x16060;};return _0x4702();}export class ClaudeCodeAdapter{[_0xd8f94f(0x81)]=_0xd8f94f(0x77);[_0xd8f94f(0x7d)](_0x55f54c){const _0x2749f6=_0xd8f94f,_0xdc8c53=[];return!_0x55f54c[_0x2749f6(0x8a)]&&_0xdc8c53[_0x2749f6(0x74)]({'level':_0x2749f6(0x7c),'message':_0x2749f6(0x86)}),_0xdc8c53;}async[_0xd8f94f(0x82)](_0x325317,_0x57ccf3,_0x169424){const _0x21cda3=_0xd8f94f;if(await pathExists(_0x57ccf3)&&!_0x169424)throw new Error(_0x21cda3(0x80)+_0x325317[_0x21cda3(0x8a)]+'\x22\x20at\x20'+_0x57ccf3+'.\x20Use\x20--force\x20to\x20overwrite.');_0x169424&&await emptyDir(_0x57ccf3);const _0x434cc9={'name':_0x325317[_0x21cda3(0x8a)],'description':_0x325317[_0x21cda3(0x75)],'entry':_0x21cda3(0x7f)};await emitWithLayout(_0x325317,_0x57ccf3,!![],[{'relativePath':_0x21cda3(0x7b),'content':JSON[_0x21cda3(0x88)](_0x434cc9,null,-0xd*0x130+-0x553+0x14c5)+'\x0a'}]);}}export function claudecodeSkillPath(_0x1b6651,_0x7a0011){const _0x2bb445=_0xd8f94f;return _0x293bf0[_0x2bb445(0x7a)](_0x1b6651,_0x2bb445(0x77),_0x7a0011);}
@@ -1 +1 @@
1
- const _0xd84d7b=_0x2076;function _0x3f89(){const _0x94c4a0=['1410bmyBee','2WXhTda','join','3189033CPIAFd','48wdWMPR',':\x20description\x20is\x20required.','15bmBeWb','10HKECTM','205172HGPHPL','14zLMrjG','5645GwgQhk','3674856PxegjN','[codex]\x20','22183oJnmXy','11ObrmQz','emit','.\x20Use\x20--force\x20to\x20overwrite.','1595009XxJuqE','202431LRHcrI','Target\x20already\x20exists\x20for\x20skill\x20\x22','name','target','codex'];_0x3f89=function(){return _0x94c4a0;};return _0x3f89();}(function(_0x433ecb,_0x5c7a1a){const _0x47bd68=_0x2076,_0xb76c9c=_0x433ecb();while(!![]){try{const _0x40f5c9=parseInt(_0x47bd68(0xf3))/(0x153d+0x4a0*0x8+0xe8f*-0x4)*(parseInt(_0x47bd68(0xe2))/(-0x1df6+-0x1a87*-0x1+0x371))+parseInt(_0x47bd68(0xe7))/(0x20c5*-0x1+-0xd*-0x209+0x653*0x1)*(parseInt(_0x47bd68(0xe9))/(-0x44f+0xe2b+-0x9d8))+-parseInt(_0x47bd68(0xeb))/(-0x248f*0x1+-0x17f9+0x3c8d)*(parseInt(_0x47bd68(0xe1))/(0x86b+-0x20ac+-0x235*-0xb))+parseInt(_0x47bd68(0xee))/(0x606+-0x80f+0x210)*(parseInt(_0x47bd68(0xe5))/(0x23c9*0x1+0x17ea+-0x497*0xd))+parseInt(_0x47bd68(0xe4))/(-0x2*-0x1163+-0x111f+0xa*-0x1c3)*(parseInt(_0x47bd68(0xe8))/(-0x1*0x143b+0x87d+0xbc8))+-parseInt(_0x47bd68(0xef))/(-0x1f3b+-0x34b*0x1+-0x1*-0x2291)*(parseInt(_0x47bd68(0xec))/(-0x730+0x7a7+-0x6b))+parseInt(_0x47bd68(0xf2))/(-0xa9d+-0x1*0x18cd+-0x511*-0x7)*(parseInt(_0x47bd68(0xea))/(0x191+-0xbdf*-0x1+-0xd62));if(_0x40f5c9===_0x5c7a1a)break;else _0xb76c9c['push'](_0xb76c9c['shift']());}catch(_0x41d1fc){_0xb76c9c['push'](_0xb76c9c['shift']());}}}(_0x3f89,-0x89aa+-0x3821a+0x9e55f));import _0x5a9c81 from'node:path';import{emptyDir,pathExists}from'../../utils/fs.js';function _0x2076(_0x49f9c6,_0x1df850){_0x49f9c6=_0x49f9c6-(-0xb*-0x1c6+0xa77+0x2*-0xe8c);const _0x1001a1=_0x3f89();let _0x5a9c81=_0x1001a1[_0x49f9c6];return _0x5a9c81;}import{emitWithLayout}from'./shared.js';export class CodexAdapter{[_0xd84d7b(0xf6)]=_0xd84d7b(0xf7);['validate'](_0x9edd07){const _0x51e51e=_0xd84d7b,_0x126c50=[];return!_0x9edd07['description']&&_0x126c50['push']({'level':'error','message':_0x51e51e(0xed)+_0x9edd07[_0x51e51e(0xf5)]+_0x51e51e(0xe6)}),_0x126c50;}async[_0xd84d7b(0xf0)](_0x22cb9c,_0x229ef9,_0x29cdf9){const _0x28b673=_0xd84d7b;if(await pathExists(_0x229ef9)&&!_0x29cdf9)throw new Error(_0x28b673(0xf4)+_0x22cb9c[_0x28b673(0xf5)]+'\x22\x20at\x20'+_0x229ef9+_0x28b673(0xf1));_0x29cdf9&&await emptyDir(_0x229ef9),await emitWithLayout(_0x22cb9c,_0x229ef9,!![],[]);}}export function codexSkillPath(_0x376cb6,_0x4b554e){const _0x43cf9a=_0xd84d7b;return _0x5a9c81[_0x43cf9a(0xe3)](_0x376cb6,_0x43cf9a(0xf7),_0x4b554e);}
1
+ const _0x230d5b=_0x2828;(function(_0x33fcca,_0x96fd84){const _0x15bc5e=_0x2828,_0x50187a=_0x33fcca();while(!![]){try{const _0x2bb23a=-parseInt(_0x15bc5e(0x10e))/(-0xce+-0x249*-0xf+-0x3f*0x88)+-parseInt(_0x15bc5e(0x109))/(0x1*-0x3f9+0x7*-0x36d+0x952*0x3)*(-parseInt(_0x15bc5e(0x111))/(0x1b8*0x1+-0x7d2+0x139*0x5))+parseInt(_0x15bc5e(0x116))/(-0x5f0+0x336+0xea*0x3)+-parseInt(_0x15bc5e(0x106))/(-0x6a*-0x34+0x553*0x6+-0xa1*0x55)+-parseInt(_0x15bc5e(0x107))/(-0x9ef+0x15*0x4c+0x3b9)+-parseInt(_0x15bc5e(0x112))/(-0xfb4+-0x25*0x15+0x12c4)*(parseInt(_0x15bc5e(0x114))/(-0x155d+0x439*-0x4+0x2649))+parseInt(_0x15bc5e(0x113))/(-0x265e+0x81*-0x19+-0x100*-0x33);if(_0x2bb23a===_0x96fd84)break;else _0x50187a['push'](_0x50187a['shift']());}catch(_0x249cb0){_0x50187a['push'](_0x50187a['shift']());}}}(_0x239a,0x2289e+0x1b396+-0x219ac));import _0x5bc2b6 from'node:path';function _0x2828(_0x130ece,_0x34e498){_0x130ece=_0x130ece-(0x1e44+0x1b2b+-0x3869);const _0x7d7521=_0x239a();let _0x19d8b6=_0x7d7521[_0x130ece];return _0x19d8b6;}import{emptyDir,pathExists}from'../../utils/fs.js';import{emitWithLayout}from'./shared.js';export class CodexAdapter{['target']=_0x230d5b(0x10f);[_0x230d5b(0x10d)](_0x61f99b){const _0x14d01b=_0x230d5b,_0x2c299e=[];return!_0x61f99b[_0x14d01b(0x10b)]&&_0x2c299e['push']({'level':_0x14d01b(0x115),'message':'[codex]\x20'+_0x61f99b[_0x14d01b(0x108)]+_0x14d01b(0x110)}),_0x2c299e;}async['emit'](_0x35c907,_0x1d1341,_0x430564){const _0x26ebd2=_0x230d5b;if(await pathExists(_0x1d1341)&&!_0x430564)throw new Error(_0x26ebd2(0x10c)+_0x35c907[_0x26ebd2(0x108)]+_0x26ebd2(0x10a)+_0x1d1341+'.\x20Use\x20--force\x20to\x20overwrite.');_0x430564&&await emptyDir(_0x1d1341),await emitWithLayout(_0x35c907,_0x1d1341,!![],[]);}}function _0x239a(){const _0x19582f=['name','2KnzRWh','\x22\x20at\x20','description','Target\x20already\x20exists\x20for\x20skill\x20\x22','validate','55912bqrGED','codex',':\x20description\x20is\x20required.','91323fSBALQ','56bKbWdN','3772692uOOaXz','108680FUCEMZ','error','774236vxiloy','join','1065170nYlNiB','901356JeMCxq'];_0x239a=function(){return _0x19582f;};return _0x239a();}export function codexSkillPath(_0x10a67c,_0x5bee00){const _0x5529b3=_0x230d5b;return _0x5bc2b6[_0x5529b3(0x117)](_0x10a67c,_0x5529b3(0x10f),_0x5bee00);}
@@ -1 +1 @@
1
- const _0xc3010=_0x440b;(function(_0x29fe41,_0x4eb69e){const _0x1655cb=_0x440b,_0x310646=_0x29fe41();while(!![]){try{const _0x41f306=parseInt(_0x1655cb(0x1b0))/(0xf2d+-0x1b45+0xc19)*(parseInt(_0x1655cb(0x1b2))/(-0x1*0x154d+0x40a*-0x4+0x1a1*0x17))+-parseInt(_0x1655cb(0x1a1))/(-0xa8d+-0x118+0xba8)+-parseInt(_0x1655cb(0x1b3))/(0x2*0x9cc+-0x3*-0xcfe+0x5*-0xbb6)*(-parseInt(_0x1655cb(0x1a4))/(0xf32+0x134c+0x6e5*-0x5))+parseInt(_0x1655cb(0x19e))/(0x1bf*-0x1+0x5dd*-0x1+-0x2*-0x3d1)+parseInt(_0x1655cb(0x1a3))/(0xb*-0x226+0xd06*0x2+-0x263)*(-parseInt(_0x1655cb(0x1a0))/(0xd65+-0x125c+0x4ff))+-parseInt(_0x1655cb(0x1a7))/(0x5b*-0x19+-0xc4e+0x153a)*(parseInt(_0x1655cb(0x1a5))/(-0xfae+0xa75*-0x1+0x1a2d))+parseInt(_0x1655cb(0x1aa))/(0x12a1+0x9*0x315+0xb1*-0x43)*(parseInt(_0x1655cb(0x1b5))/(-0x90e+-0x1e91+0x27ab));if(_0x41f306===_0x4eb69e)break;else _0x310646['push'](_0x310646['shift']());}catch(_0x568375){_0x310646['push'](_0x310646['shift']());}}}(_0xcf8e,-0x18*-0x75cf+-0x3*-0x21a0d+-0xb226f));function _0xcf8e(){const _0x148fe9=['validate','121DPPuci','description','2292OpyoIc','4IJBeGQ',':\x20description\x20is\x20empty.','12aDZFVc','iflow','description:\x20\x22','.\x20Use\x20--force\x20to\x20overwrite.','253332NdBgGu','Target\x20already\x20exists\x20for\x20skill\x20\x22','24sDUFNx','1286319hMZfhU','emit','105175lxxeUO','1008725ZSPTSS','438580nDUNqg','name','45WLwSwi','[iflow]\x20','prompt.md','7896163nIJtFW','iflow.skill.yaml','name:\x20\x22','\x22\x20at\x20','push'];_0xcf8e=function(){return _0x148fe9;};return _0xcf8e();}import _0x39329c from'node:path';import{emptyDir,pathExists}from'../../utils/fs.js';import{emitWithLayout}from'./shared.js';function _0x440b(_0x525397,_0x43db3b){_0x525397=_0x525397-(-0xa35+-0x1319*-0x2+-0x266*0xb);const _0x1bf201=_0xcf8e();let _0x39329c=_0x1bf201[_0x525397];return _0x39329c;}export class IFlowAdapter{['target']=_0xc3010(0x19b);[_0xc3010(0x1af)](_0x56e491){const _0x4a405e=_0xc3010,_0x53193a=[];return!_0x56e491['description']&&_0x53193a[_0x4a405e(0x1ae)]({'level':'warning','message':_0x4a405e(0x1a8)+_0x56e491[_0x4a405e(0x1a6)]+_0x4a405e(0x1b4)}),_0x53193a;}async[_0xc3010(0x1a2)](_0x3c6525,_0x3fae18,_0x4e3d0b){const _0x5e8e8d=_0xc3010;if(await pathExists(_0x3fae18)&&!_0x4e3d0b)throw new Error(_0x5e8e8d(0x19f)+_0x3c6525[_0x5e8e8d(0x1a6)]+_0x5e8e8d(0x1ad)+_0x3fae18+_0x5e8e8d(0x19d));_0x4e3d0b&&await emptyDir(_0x3fae18);const _0x5f002d=[_0x5e8e8d(0x1ac)+_0x3c6525[_0x5e8e8d(0x1a6)]+'\x22',_0x5e8e8d(0x19c)+_0x3c6525[_0x5e8e8d(0x1b1)]['replace'](/"/g,'\x5c\x22')+'\x22','entry:\x20\x22prompt.md\x22']['join']('\x0a');await emitWithLayout(_0x3c6525,_0x3fae18,![],[{'relativePath':_0x5e8e8d(0x1a9),'content':'#\x20'+_0x3c6525[_0x5e8e8d(0x1a6)]+'\x0a\x0a'+_0x3c6525['body']+'\x0a'},{'relativePath':_0x5e8e8d(0x1ab),'content':_0x5f002d+'\x0a'}]);}}export function iflowSkillPath(_0x330b70,_0x36e7bb){const _0x9d8f11=_0xc3010;return _0x39329c['join'](_0x330b70,_0x9d8f11(0x19b),_0x36e7bb);}
1
+ function _0x4828(_0xdb5f5e,_0x216752){_0xdb5f5e=_0xdb5f5e-(-0x1a86+-0x62f*-0x1+0x159d);const _0x5597fd=_0x2768();let _0x4bf29c=_0x5597fd[_0xdb5f5e];return _0x4bf29c;}const _0x217185=_0x4828;(function(_0x87185a,_0x27daae){const _0x4b6f2e=_0x4828,_0x43c085=_0x87185a();while(!![]){try{const _0x2c7bd9=-parseInt(_0x4b6f2e(0x156))/(-0x114e+-0xa79+-0xfe*-0x1c)+-parseInt(_0x4b6f2e(0x147))/(0x13*0x185+-0x1bf0+-0xed*0x1)+-parseInt(_0x4b6f2e(0x14c))/(0xe80+-0xe*0x43+-0xad3)+parseInt(_0x4b6f2e(0x146))/(0x23e3*0x1+-0x17*-0x119+-0x3d1e)*(-parseInt(_0x4b6f2e(0x160))/(-0x35*-0x6d+-0x94a+-0xd42))+-parseInt(_0x4b6f2e(0x15d))/(0x110c*-0x2+-0x3b*0x34+0x2e1a)*(-parseInt(_0x4b6f2e(0x152))/(0xfbd*0x1+0x8*0x3fa+0xe*-0x365))+-parseInt(_0x4b6f2e(0x14e))/(0x258e+0x19*-0xf+-0x240f)+parseInt(_0x4b6f2e(0x15f))/(0x15b1+0x2ba*0x9+-0x2e32)*(parseInt(_0x4b6f2e(0x15c))/(-0x1e3d*0x1+-0x42*0x17+0x2435));if(_0x2c7bd9===_0x27daae)break;else _0x43c085['push'](_0x43c085['shift']());}catch(_0x1fce04){_0x43c085['push'](_0x43c085['shift']());}}}(_0x2768,0x250*-0x45d+0xe*0x153eb+-0x2*-0xe2af));import _0x5ab949 from'node:path';function _0x2768(){const _0x40e6a7=['495tUpJxM','1165RZRtJd','12772HelIoA','2222372NCbTwt','entry:\x20\x22prompt.md\x22','replace','join','body','3641907DJroRT','Target\x20already\x20exists\x20for\x20skill\x20\x22','3395664ApXTCg','name',':\x20description\x20is\x20empty.','description:\x20\x22','42IitGoX','iflow.skill.yaml','validate','push','867063unJpTK','description','warning','iflow','.\x20Use\x20--force\x20to\x20overwrite.','prompt.md','781050XyvXsN','737934HTtAUr','emit'];_0x2768=function(){return _0x40e6a7;};return _0x2768();}import{emptyDir,pathExists}from'../../utils/fs.js';import{emitWithLayout}from'./shared.js';export class IFlowAdapter{['target']=_0x217185(0x159);[_0x217185(0x154)](_0x34351d){const _0xcdf97b=_0x217185,_0x533768=[];return!_0x34351d[_0xcdf97b(0x157)]&&_0x533768[_0xcdf97b(0x155)]({'level':_0xcdf97b(0x158),'message':'[iflow]\x20'+_0x34351d[_0xcdf97b(0x14f)]+_0xcdf97b(0x150)}),_0x533768;}async[_0x217185(0x15e)](_0xc433aa,_0x5053bc,_0x2fc742){const _0x27831c=_0x217185;if(await pathExists(_0x5053bc)&&!_0x2fc742)throw new Error(_0x27831c(0x14d)+_0xc433aa['name']+'\x22\x20at\x20'+_0x5053bc+_0x27831c(0x15a));_0x2fc742&&await emptyDir(_0x5053bc);const _0xfd08d4=['name:\x20\x22'+_0xc433aa[_0x27831c(0x14f)]+'\x22',_0x27831c(0x151)+_0xc433aa['description'][_0x27831c(0x149)](/"/g,'\x5c\x22')+'\x22',_0x27831c(0x148)][_0x27831c(0x14a)]('\x0a');await emitWithLayout(_0xc433aa,_0x5053bc,![],[{'relativePath':_0x27831c(0x15b),'content':'#\x20'+_0xc433aa[_0x27831c(0x14f)]+'\x0a\x0a'+_0xc433aa[_0x27831c(0x14b)]+'\x0a'},{'relativePath':_0x27831c(0x153),'content':_0xfd08d4+'\x0a'}]);}}export function iflowSkillPath(_0x31d65f,_0x4c7897){const _0x5eae23=_0x217185;return _0x5ab949[_0x5eae23(0x14a)](_0x31d65f,_0x5eae23(0x159),_0x4c7897);}
@@ -1 +1 @@
1
- (function(_0x2032cd,_0x11bbb0){const _0x18562d=_0x26f8,_0x143189=_0x2032cd();while(!![]){try{const _0x3e8c42=-parseInt(_0x18562d(0x11d))/(0xc*0x1d+0x1229*0x1+-0x4*0x4e1)*(parseInt(_0x18562d(0x125))/(0x2093+-0x28f*-0x1+-0x2320))+-parseInt(_0x18562d(0x11b))/(0x1637+-0x17*-0x6a+0x2*-0xfdd)*(parseInt(_0x18562d(0x123))/(0x21a2+0xb1*0x21+-0x386f))+-parseInt(_0x18562d(0x120))/(0x6b0+0x1*0x14c2+-0x1b6d)+-parseInt(_0x18562d(0x11f))/(0x10a5*-0x1+0x22a7+0x47f*-0x4)*(parseInt(_0x18562d(0x121))/(0x4b*-0x42+0x1091*-0x1+-0x1ff*-0x12))+-parseInt(_0x18562d(0x119))/(0x91*0x2+-0x8f2+-0x8*-0xfb)*(parseInt(_0x18562d(0x117))/(-0x5*-0xb9+-0xcfe*0x1+0xa*0xf1))+parseInt(_0x18562d(0x129))/(-0x8*0x4d4+-0x1292+0x6f*0x84)*(-parseInt(_0x18562d(0x118))/(0x157d*0x1+0xd5c+0x21*-0x10e))+parseInt(_0x18562d(0x11a))/(-0x43*-0x5c+0x1267+-0x2a6f);if(_0x3e8c42===_0x11bbb0)break;else _0x143189['push'](_0x143189['shift']());}catch(_0x2227a0){_0x143189['push'](_0x143189['shift']());}}}(_0x333c,-0x1e9b4+-0xd*0x3aac+0x69738));import{ClaudeCodeAdapter}from'./claudecode-adapter.js';import{CodexAdapter}from'./codex-adapter.js';import{IFlowAdapter}from'./iflow-adapter.js';const adapters={'codex':new CodexAdapter(),'claudecode':new ClaudeCodeAdapter(),'iflow':new IFlowAdapter()};export function getAdapter(_0x51dba9){return adapters[_0x51dba9];}function _0x26f8(_0x1a9c39,_0x449bc2){_0x1a9c39=_0x1a9c39-(-0x1*0x3e6+0x605*0x3+-0xd14);const _0x184e43=_0x333c();let _0x1821af=_0x184e43[_0x1a9c39];return _0x1821af;}export function expandTargets(_0x48d33d){const _0x138550=_0x26f8,_0x13b571=_0x48d33d[_0x138550(0x12a)]()[_0x138550(0x126)]();if(_0x13b571===_0x138550(0x12c))return[_0x138550(0x11e),'claudecode',_0x138550(0x127)];const _0x3d98d8=_0x13b571[_0x138550(0x124)](',')[_0x138550(0x11c)](_0x4ba6a7=>_0x4ba6a7['trim']())[_0x138550(0x116)](Boolean)[_0x138550(0x11c)](normalizeTargetAlias);if(_0x3d98d8[_0x138550(0x128)]===-0x134d+0x5*0x267+0x74a)throw new Error(_0x138550(0x12d)+_0x48d33d+_0x138550(0x115));const _0x428d03=_0x3d98d8[_0x138550(0x116)](_0x2a68d8=>_0x2a68d8!=='codex'&&_0x2a68d8!==_0x138550(0x12b)&&_0x2a68d8!==_0x138550(0x127));if(_0x428d03['length']>0x10de+0xfee+-0x20cc)throw new Error('Unknown\x20target\x20\x22'+_0x428d03[0x980+0x6*0xc8+-0x8*0x1c6]+'\x22.\x20Use\x20codex|claudecode|iflow|all.');return Array[_0x138550(0x122)](new Set(_0x3d98d8));}function normalizeTargetAlias(_0x36f527){const _0x4d4118=_0x26f8;if(_0x36f527==='ifow')return _0x4d4118(0x127);return _0x36f527;}function _0x333c(){const _0x3f824b=['\x22.\x20Use\x20codex|claudecode|iflow|all.','filter','324yBfhne','561jpILVo','16784zQELNy','9869988NxQUHs','200358aGezzQ','map','1HYnMDw','codex','180354hjgvcs','571900GLQHIF','7dCFQKS','from','8TQJDBo','split','299254anyywT','toLowerCase','iflow','length','40790dBSRIO','trim','claudecode','all','Unknown\x20target\x20\x22'];_0x333c=function(){return _0x3f824b;};return _0x333c();}
1
+ (function(_0x6a6eee,_0x4e02d7){const _0xfcff5=_0x1985,_0x1d3562=_0x6a6eee();while(!![]){try{const _0xcae58=parseInt(_0xfcff5(0x129))/(-0x1*-0x90e+-0x1767+0xe5a)*(parseInt(_0xfcff5(0x138))/(-0x1b3c+-0x98*0x13+-0x2686*-0x1))+-parseInt(_0xfcff5(0x135))/(-0x14*0x80+-0x2ad*-0xd+-0x18c6)+parseInt(_0xfcff5(0x13c))/(0x3aa+-0x10c7+0xd21)+parseInt(_0xfcff5(0x12e))/(0x1*-0x89b+-0x24a+0xaea)*(parseInt(_0xfcff5(0x12d))/(0x1*-0x4ac+-0xd3*0x2d+0x1*0x29c9))+-parseInt(_0xfcff5(0x139))/(0x2646+-0x10a2*0x2+-0x4fb)+parseInt(_0xfcff5(0x12f))/(0x3*0xc61+-0x1d87*-0x1+-0x42a2)*(-parseInt(_0xfcff5(0x131))/(0x3ef*-0x7+0x2*0x67c+0x15*0xb2))+parseInt(_0xfcff5(0x133))/(-0x7*0x16d+-0x985*-0x1+-0x80*-0x1)*(-parseInt(_0xfcff5(0x13d))/(0x4fa+0x1f04+-0x23f3));if(_0xcae58===_0x4e02d7)break;else _0x1d3562['push'](_0x1d3562['shift']());}catch(_0x1374c1){_0x1d3562['push'](_0x1d3562['shift']());}}}(_0x1a5f,-0xeb6*0x6b+-0x12c4ef+0x262fb7*0x1));import{ClaudeCodeAdapter}from'./claudecode-adapter.js';import{CodexAdapter}from'./codex-adapter.js';import{IFlowAdapter}from'./iflow-adapter.js';const adapters={'codex':new CodexAdapter(),'claudecode':new ClaudeCodeAdapter(),'iflow':new IFlowAdapter()};function _0x1a5f(){const _0x39509d=['codex','2804860rgkIyA','1419kklWAe','Unknown\x20target\x20\x22','claudecode','1LdhzFE','map','iflow','ifow','3431442rHAwUR','15WQdGOo','7208LgXxOs','\x22.\x20Use\x20codex|claudecode|iflow|all.','945ocjADk','from','810cfPqdB','split','2970030QfFghP','filter','length','1383370ZjKSEM','8007993izRjJL','all'];_0x1a5f=function(){return _0x39509d;};return _0x1a5f();}export function getAdapter(_0x53ed76){return adapters[_0x53ed76];}export function expandTargets(_0x98a6){const _0x36a49a=_0x1985,_0x3b7e67=_0x98a6['trim']()['toLowerCase']();if(_0x3b7e67===_0x36a49a(0x13a))return[_0x36a49a(0x13b),_0x36a49a(0x13f),_0x36a49a(0x12b)];const _0x1237fa=_0x3b7e67[_0x36a49a(0x134)](',')[_0x36a49a(0x12a)](_0x5aac0c=>_0x5aac0c['trim']())[_0x36a49a(0x136)](Boolean)['map'](normalizeTargetAlias);if(_0x1237fa[_0x36a49a(0x137)]===0x6ad+0x46c*0x2+-0xf85)throw new Error(_0x36a49a(0x13e)+_0x98a6+_0x36a49a(0x130));const _0x144b2f=_0x1237fa[_0x36a49a(0x136)](_0xd49f42=>_0xd49f42!=='codex'&&_0xd49f42!==_0x36a49a(0x13f)&&_0xd49f42!==_0x36a49a(0x12b));if(_0x144b2f[_0x36a49a(0x137)]>-0x1844+-0x1*0x1fb9+0x37fd)throw new Error(_0x36a49a(0x13e)+_0x144b2f[-0x1f68+0x16b6+0x35*0x2a]+'\x22.\x20Use\x20codex|claudecode|iflow|all.');return Array[_0x36a49a(0x132)](new Set(_0x1237fa));}function _0x1985(_0x5f2c76,_0x185124){_0x5f2c76=_0x5f2c76-(0x148f+0x5a8+-0x190e);const _0x2c8794=_0x1a5f();let _0xa3df12=_0x2c8794[_0x5f2c76];return _0xa3df12;}function normalizeTargetAlias(_0x161463){const _0x110af2=_0x1985;if(_0x161463===_0x110af2(0x12c))return _0x110af2(0x12b);return _0x161463;}
@@ -1 +1 @@
1
- (function(_0xaefab8,_0x8a50b7){const _0x16de39=_0xe5ac,_0x355b96=_0xaefab8();while(!![]){try{const _0x2319f9=-parseInt(_0x16de39(0x185))/(-0x26ac+0x80*-0xd+0x2d2d)*(-parseInt(_0x16de39(0x18a))/(0x903+-0xfab*-0x1+-0xc56*0x2))+parseInt(_0x16de39(0x182))/(-0x1bd3+0x257d+-0x9a7)+-parseInt(_0x16de39(0x181))/(0x79f*0x5+-0x13ed+-0x122a)+parseInt(_0x16de39(0x17b))/(-0x1f*0x133+0xf2c+-0x2*-0xb03)+-parseInt(_0x16de39(0x183))/(0x1757+0x1a9e+-0x31ef)*(parseInt(_0x16de39(0x190))/(-0x1*0x2497+0x625+0x1d*0x10d))+-parseInt(_0x16de39(0x18f))/(0x3*-0x97b+-0x8ca+0x1*0x2543)*(parseInt(_0x16de39(0x17d))/(-0x1*-0x289+-0x13*-0x203+0xd93*-0x3))+parseInt(_0x16de39(0x17e))/(0x35*-0x72+0x7a9*-0x1+-0xa6f*-0x3);if(_0x2319f9===_0x8a50b7)break;else _0x355b96['push'](_0x355b96['shift']());}catch(_0x2d2423){_0x355b96['push'](_0x355b96['shift']());}}}(_0x56b3,-0x1*0x50383+-0x12619*-0x3+0x2*0x20a2a));import{copyFile,readFile,readdir,writeFile}from'node:fs/promises';function _0x56b3(){const _0x4a87a2=['6363AKikyI','223780YKOqFv','references','SKILL.md','1009512XRUNtm','347340jUWjmO','6RlQUSr','scripts','302119okNRud','relativePath','join','isDirectory','dirname','2lcGWdg','name','assets','content','sourcePath','320kANQCV','1951194viBawh','1418795FhHQVi','utf8'];_0x56b3=function(){return _0x4a87a2;};return _0x56b3();}function _0xe5ac(_0x3adf33,_0x46bf1c){_0x3adf33=_0x3adf33-(-0x71*0x1f+0x1*-0x266f+0x1*0x3599);const _0x4df010=_0x56b3();let _0x26accc=_0x4df010[_0x3adf33];return _0x26accc;}import _0x4df010 from'node:path';import{ensureDir,pathExists}from'../../utils/fs.js';export async function emitWithLayout(_0x26accc,_0x29ef43,_0x42abff,_0x3474ec){const _0x3a0874=_0xe5ac;await ensureDir(_0x29ef43);if(_0x42abff){const _0x2c3d48=_0x4df010[_0x3a0874(0x187)](_0x26accc[_0x3a0874(0x18e)],_0x3a0874(0x180));await copyFile(_0x2c3d48,_0x4df010[_0x3a0874(0x187)](_0x29ef43,_0x3a0874(0x180)));}for(const _0x2b69c3 of _0x3474ec){const _0x119c9a=_0x4df010[_0x3a0874(0x187)](_0x29ef43,_0x2b69c3[_0x3a0874(0x186)]);await ensureDir(_0x4df010[_0x3a0874(0x189)](_0x119c9a)),await writeFile(_0x119c9a,_0x2b69c3[_0x3a0874(0x18d)],_0x3a0874(0x17c));}const _0x141aed=['agents',_0x3a0874(0x17f),_0x3a0874(0x184),_0x3a0874(0x18c)];for(const _0xd974c of _0x141aed){const _0x583390=_0x4df010[_0x3a0874(0x187)](_0x26accc[_0x3a0874(0x18e)],_0xd974c);if(!await pathExists(_0x583390))continue;await copyFolder(_0x583390,_0x4df010[_0x3a0874(0x187)](_0x29ef43,_0xd974c));}}async function copyFolder(_0x17c225,_0x4366ea){const _0x1ebe64=_0xe5ac;await ensureDir(_0x4366ea);const _0x178ed2=await readdir(_0x17c225,{'withFileTypes':!![]});for(const _0x4b577a of _0x178ed2){const _0x4917be=_0x4df010[_0x1ebe64(0x187)](_0x17c225,_0x4b577a['name']),_0x1a0265=_0x4df010[_0x1ebe64(0x187)](_0x4366ea,_0x4b577a[_0x1ebe64(0x18b)]);if(_0x4b577a[_0x1ebe64(0x188)]()){await copyFolder(_0x4917be,_0x1a0265);continue;}const _0x1f090f=await readFile(_0x4917be);await writeFile(_0x1a0265,_0x1f090f);}}
1
+ (function(_0x546e31,_0x29ab05){const _0xc954fa=_0x55b2,_0x1de45b=_0x546e31();while(!![]){try{const _0x423744=parseInt(_0xc954fa(0x1f4))/(-0x1c9+0x1fbd+-0x29*0xbb)*(-parseInt(_0xc954fa(0x1ee))/(-0x7b8*-0x5+0x1605*0x1+-0x3c9b))+-parseInt(_0xc954fa(0x1ed))/(0x4*0x4a0+-0x1504+0x287)*(parseInt(_0xc954fa(0x1e9))/(-0x4*0x1df+0x825*-0x2+0x17ca))+-parseInt(_0xc954fa(0x1f7))/(0x11d*0x22+0x141b+-0x39f0)*(parseInt(_0xc954fa(0x1eb))/(-0x26fa+-0xfe4+0x36e4))+parseInt(_0xc954fa(0x1ec))/(-0x2*0xbe1+-0x1cf*0x11+-0x14*-0x2ba)*(-parseInt(_0xc954fa(0x1f5))/(-0x22c4+0x1*0x7ae+0xd*0x216))+parseInt(_0xc954fa(0x1f6))/(0xe1a+-0x8ef*-0x3+-0x28de)+parseInt(_0xc954fa(0x1f2))/(0xb82+-0x17af+0xc37)*(-parseInt(_0xc954fa(0x1f3))/(0x1744+0x54+0x178d*-0x1))+parseInt(_0xc954fa(0x1e3))/(-0x40d+-0x10f2+0x150b);if(_0x423744===_0x29ab05)break;else _0x1de45b['push'](_0x1de45b['shift']());}catch(_0x4713a0){_0x1de45b['push'](_0x1de45b['shift']());}}}(_0x50a8,-0x676cf*-0x1+-0x5e7fa+-0xec21*-0xd));function _0x55b2(_0x3213f7,_0x114261){_0x3213f7=_0x3213f7-(0xcc*-0x5+-0x9ea+-0xfc9*-0x1);const _0x4b2467=_0x50a8();let _0x12b761=_0x4b2467[_0x3213f7];return _0x12b761;}import{copyFile,readFile,readdir,writeFile}from'node:fs/promises';import _0x12b761 from'node:path';function _0x50a8(){const _0x12351e=['sourcePath','references','3954260nclGzq','11IBDZvI','479XAVBWg','6136712aejiUv','2180889KfSUCy','2264065GhoxoD','agents','66925980iSOmVd','join','content','SKILL.md','dirname','utf8','1756KecoDO','relativePath','18fQgHCA','7zDGGAD','9363XWhAVh','4618imbNhX','name'];_0x50a8=function(){return _0x12351e;};return _0x50a8();}import{ensureDir,pathExists}from'../../utils/fs.js';export async function emitWithLayout(_0x1c8a72,_0x39dc7c,_0x999770,_0x21b165){const _0x2395d2=_0x55b2;await ensureDir(_0x39dc7c);if(_0x999770){const _0x362e54=_0x12b761['join'](_0x1c8a72['sourcePath'],_0x2395d2(0x1e6));await copyFile(_0x362e54,_0x12b761[_0x2395d2(0x1e4)](_0x39dc7c,'SKILL.md'));}for(const _0x13c0b8 of _0x21b165){const _0x4e2989=_0x12b761['join'](_0x39dc7c,_0x13c0b8[_0x2395d2(0x1ea)]);await ensureDir(_0x12b761[_0x2395d2(0x1e7)](_0x4e2989)),await writeFile(_0x4e2989,_0x13c0b8[_0x2395d2(0x1e5)],_0x2395d2(0x1e8));}const _0x53e82e=[_0x2395d2(0x1f8),_0x2395d2(0x1f1),'scripts','assets'];for(const _0x53a9eb of _0x53e82e){const _0x14ae8d=_0x12b761[_0x2395d2(0x1e4)](_0x1c8a72[_0x2395d2(0x1f0)],_0x53a9eb);if(!await pathExists(_0x14ae8d))continue;await copyFolder(_0x14ae8d,_0x12b761['join'](_0x39dc7c,_0x53a9eb));}}async function copyFolder(_0xf6de94,_0x2a419d){const _0x7327ef=_0x55b2;await ensureDir(_0x2a419d);const _0x1d6da1=await readdir(_0xf6de94,{'withFileTypes':!![]});for(const _0x4a809e of _0x1d6da1){const _0x301daf=_0x12b761[_0x7327ef(0x1e4)](_0xf6de94,_0x4a809e[_0x7327ef(0x1ef)]),_0xb4fbab=_0x12b761[_0x7327ef(0x1e4)](_0x2a419d,_0x4a809e[_0x7327ef(0x1ef)]);if(_0x4a809e['isDirectory']()){await copyFolder(_0x301daf,_0xb4fbab);continue;}const _0x46b295=await readFile(_0x301daf);await writeFile(_0xb4fbab,_0x46b295);}}
@@ -1 +1 @@
1
- (function(_0x4e5183,_0x2895fc){const _0x5b6281=_0x4486,_0x298629=_0x4e5183();while(!![]){try{const _0x17fb48=-parseInt(_0x5b6281(0x13e))/(-0x19d6+-0x577*0x2+-0x24c5*-0x1)+-parseInt(_0x5b6281(0x138))/(-0x9*-0x89+0x2589*0x1+0x14*-0x21e)*(parseInt(_0x5b6281(0x140))/(-0x1d83+-0x2*-0xc9d+-0x1*-0x44c))+-parseInt(_0x5b6281(0x137))/(0xdc0+-0x2*-0xe21+-0x29fe)*(parseInt(_0x5b6281(0x143))/(0x1e41*0x1+0x2311*0x1+-0xe5*0x49))+-parseInt(_0x5b6281(0x13d))/(-0xc51+-0x1263+-0x1b5*-0x12)+parseInt(_0x5b6281(0x14e))/(0x381+-0x12dd*-0x1+0x85*-0x2b)*(-parseInt(_0x5b6281(0x141))/(0xa*0x2fa+0x1c10+-0x112*0x36))+parseInt(_0x5b6281(0x13b))/(0x174b+0x1*0x202d+-0x376f)+parseInt(_0x5b6281(0x135))/(0x680+-0x17c*0x2+-0x37e);if(_0x17fb48===_0x2895fc)break;else _0x298629['push'](_0x298629['shift']());}catch(_0x4a674c){_0x298629['push'](_0x298629['shift']());}}}(_0x5599,-0x4c8b2+-0xaab+0x1079e1*0x1));function _0x5599(){const _0x1117e6=['11582136zKLyKi','replace','577296ILPocg','1027267feegrh','name','200337ojkbZH','520LjnYTp','scripts','28810isqmxJ','trim','replaceAll','references','description','utf8','agents','isDirectory','dirname','push','basename','85673gMnXNx','relative','23586230prdPEQ','join','344oHbbQA','14vTruef','assets','attributes'];_0x5599=function(){return _0x1117e6;};return _0x5599();}function _0x4486(_0xb9ac03,_0xfd17fc){_0xb9ac03=_0xb9ac03-(0x2b*-0x2f+-0x1074+-0xd3*-0x1f);const _0x4602da=_0x5599();let _0x200040=_0x4602da[_0xb9ac03];return _0x200040;}import{readdir,readFile}from'node:fs/promises';import _0x200040 from'node:path';import{parseFrontmatter}from'../utils/frontmatter.js';import{listDirs,pathExists}from'../utils/fs.js';const CODEX_DIR='.codex';export async function loadAllSkillManifests(_0x24ee6c){const _0x41afc0=_0x4486,_0x13bcdb=_0x200040['join'](_0x24ee6c,CODEX_DIR),_0x53f58d=await listDirs(_0x13bcdb),_0x542b28=[];for(const _0x5b1ae0 of _0x53f58d){const _0x31468d=_0x200040[_0x41afc0(0x136)](_0x13bcdb,_0x5b1ae0),_0x956508=await loadSkillManifest(_0x31468d);if(_0x956508)_0x542b28[_0x41afc0(0x14c)](_0x956508);}return _0x542b28;}async function loadSkillManifest(_0x4d91d5){const _0x48db78=_0x4486,_0x4d2971=_0x200040[_0x48db78(0x136)](_0x4d91d5,'SKILL.md');if(!await pathExists(_0x4d2971))return null;const _0x3327d9=await readFile(_0x4d2971,_0x48db78(0x148)),_0x5e84b5=parseFrontmatter(_0x3327d9),_0x3269bc=_0x5e84b5[_0x48db78(0x13a)]['name']?.[_0x48db78(0x144)](),_0xcfd232=_0x5e84b5['attributes'][_0x48db78(0x147)]?.[_0x48db78(0x144)](),_0x362ee3=_0x3269bc||_0x200040[_0x48db78(0x14d)](_0x4d91d5),_0x21c7e3=await collectRelativeFiles(_0x200040[_0x48db78(0x136)](_0x4d91d5,_0x48db78(0x149)),_0x48db78(0x149)),_0x5dffaf=await collectRelativeFiles(_0x200040[_0x48db78(0x136)](_0x4d91d5,_0x48db78(0x146)),_0x48db78(0x146)),_0x29d7d1=await collectRelativeFiles(_0x200040[_0x48db78(0x136)](_0x4d91d5,_0x48db78(0x142)),_0x48db78(0x142)),_0x52a47c=await collectRelativeFiles(_0x200040[_0x48db78(0x136)](_0x4d91d5,'assets'),_0x48db78(0x139));return{'name':_0x362ee3,'description':_0xcfd232||'','body':_0x5e84b5['body'][_0x48db78(0x144)](),'agents':_0x21c7e3,'resources':[..._0x5dffaf,..._0x29d7d1,..._0x52a47c],'sourcePath':_0x4d91d5};}async function collectRelativeFiles(_0x1d84e6,_0x9c1df6){if(!await pathExists(_0x1d84e6))return[];const _0x53e114=[];return await walk(_0x1d84e6,_0x1fb5be=>{const _0x5eccc2=_0x4486,_0x2d831d=_0x200040[_0x5eccc2(0x134)](_0x200040[_0x5eccc2(0x14b)](_0x1d84e6),_0x1fb5be);_0x53e114[_0x5eccc2(0x14c)](_0x2d831d[_0x5eccc2(0x145)]('\x5c','/')[_0x5eccc2(0x13c)](_0x9c1df6+'/./',_0x9c1df6+'/'));}),_0x53e114;}async function walk(_0x540d12,_0x35bb97){const _0x241a7a=_0x4486,_0xfc9bbf=await readdir(_0x540d12,{'withFileTypes':!![]});for(const _0x174614 of _0xfc9bbf){const _0x54e1b0=_0x200040[_0x241a7a(0x136)](_0x540d12,_0x174614[_0x241a7a(0x13f)]);if(_0x174614[_0x241a7a(0x14a)]()){await walk(_0x54e1b0,_0x35bb97);continue;}_0x35bb97(_0x54e1b0);}}
1
+ const _0x11d058=_0x49c3;function _0x49c3(_0xb12421,_0x1fe86a){_0xb12421=_0xb12421-(0x25*-0x9+-0x9b+-0x6*-0x6b);const _0x2fb4f2=_0x575f();let _0x373059=_0x2fb4f2[_0xb12421];return _0x373059;}(function(_0x5c5b8d,_0x3c1deb){const _0x496908=_0x49c3,_0xb766bb=_0x5c5b8d();while(!![]){try{const _0x5600de=parseInt(_0x496908(0x9d))/(0x1216+-0x15d7+-0x1*-0x3c2)*(parseInt(_0x496908(0xa6))/(0x1d39+0x271+-0x1fa8))+-parseInt(_0x496908(0xad))/(0x526*-0x4+-0x1819*0x1+0x2cb4)*(-parseInt(_0x496908(0xb4))/(-0x17b8+-0xc0*-0x2e+-0xac4))+parseInt(_0x496908(0x9e))/(0xdba*-0x1+-0x15cb*0x1+-0x11c5*-0x2)*(-parseInt(_0x496908(0x9a))/(-0xa*-0x125+-0x82*0xb+-0x5d6))+parseInt(_0x496908(0xa8))/(-0x1*-0xf17+0x20*0x89+0x28*-0xce)*(-parseInt(_0x496908(0x9c))/(-0x1af*-0xf+0x3f1*0x7+-0x34d0))+parseInt(_0x496908(0xa4))/(-0x14d5+-0x1*0x19ea+-0x1764*-0x2)+parseInt(_0x496908(0xae))/(0x249c+-0x1*-0xb04+0x2*-0x17cb)+parseInt(_0x496908(0xa3))/(0x2513*-0x1+0x11f3+-0x1*-0x132b)*(-parseInt(_0x496908(0x9f))/(0x1c09+0xc26+-0x2823));if(_0x5600de===_0x3c1deb)break;else _0xb766bb['push'](_0xb766bb['shift']());}catch(_0x3b8b30){_0xb766bb['push'](_0xb766bb['shift']());}}}(_0x575f,-0x20389+0x2d4a8+-0xd43e*-0x1));import{readdir,readFile}from'node:fs/promises';import _0x373059 from'node:path';import{parseFrontmatter}from'../utils/frontmatter.js';import{listDirs,pathExists}from'../utils/fs.js';const CODEX_DIR=_0x11d058(0xaf);function _0x575f(){const _0x4e8187=['assets','basename','name','push','1252LtXpMB','trim','6pmTZEV','dirname','4984DuEZuw','9790hVeQju','486815RiDEXC','784116WbEgZI','utf8','replace','scripts','11fRaQBZ','1169487peBxcV','attributes','40nkjFgJ','agents','1750VyhRgJ','join','replaceAll','isDirectory','relative','237vlXwPg','758550hUmEJH','.codex'];_0x575f=function(){return _0x4e8187;};return _0x575f();}export async function loadAllSkillManifests(_0x5a9e01){const _0x5009ba=_0x11d058,_0x4b54df=_0x373059[_0x5009ba(0xa9)](_0x5a9e01,CODEX_DIR),_0x5d5de4=await listDirs(_0x4b54df),_0x3fb448=[];for(const _0x27c4e9 of _0x5d5de4){const _0x4acfff=_0x373059[_0x5009ba(0xa9)](_0x4b54df,_0x27c4e9),_0x3e6f65=await loadSkillManifest(_0x4acfff);if(_0x3e6f65)_0x3fb448[_0x5009ba(0xb3)](_0x3e6f65);}return _0x3fb448;}async function loadSkillManifest(_0x3da5c4){const _0x155378=_0x11d058,_0x44b839=_0x373059[_0x155378(0xa9)](_0x3da5c4,'SKILL.md');if(!await pathExists(_0x44b839))return null;const _0x3712bb=await readFile(_0x44b839,_0x155378(0xa0)),_0x3136a5=parseFrontmatter(_0x3712bb),_0x343917=_0x3136a5[_0x155378(0xa5)][_0x155378(0xb2)]?.[_0x155378(0xb5)](),_0x128255=_0x3136a5[_0x155378(0xa5)]['description']?.[_0x155378(0xb5)](),_0x139439=_0x343917||_0x373059[_0x155378(0xb1)](_0x3da5c4),_0x567662=await collectRelativeFiles(_0x373059[_0x155378(0xa9)](_0x3da5c4,_0x155378(0xa7)),_0x155378(0xa7)),_0x311793=await collectRelativeFiles(_0x373059[_0x155378(0xa9)](_0x3da5c4,'references'),'references'),_0x2ab465=await collectRelativeFiles(_0x373059[_0x155378(0xa9)](_0x3da5c4,_0x155378(0xa2)),_0x155378(0xa2)),_0x44ec0a=await collectRelativeFiles(_0x373059[_0x155378(0xa9)](_0x3da5c4,_0x155378(0xb0)),_0x155378(0xb0));return{'name':_0x139439,'description':_0x128255||'','body':_0x3136a5['body'][_0x155378(0xb5)](),'agents':_0x567662,'resources':[..._0x311793,..._0x2ab465,..._0x44ec0a],'sourcePath':_0x3da5c4};}async function collectRelativeFiles(_0x15fffc,_0x500e1a){if(!await pathExists(_0x15fffc))return[];const _0x27f9e7=[];return await walk(_0x15fffc,_0x353055=>{const _0x1e04a8=_0x49c3,_0x2e53a1=_0x373059[_0x1e04a8(0xac)](_0x373059[_0x1e04a8(0x9b)](_0x15fffc),_0x353055);_0x27f9e7[_0x1e04a8(0xb3)](_0x2e53a1[_0x1e04a8(0xaa)]('\x5c','/')[_0x1e04a8(0xa1)](_0x500e1a+'/./',_0x500e1a+'/'));}),_0x27f9e7;}async function walk(_0xe91616,_0x1f2075){const _0x266ec3=_0x11d058,_0x1f55cd=await readdir(_0xe91616,{'withFileTypes':!![]});for(const _0x359550 of _0x1f55cd){const _0x5242d9=_0x373059['join'](_0xe91616,_0x359550['name']);if(_0x359550[_0x266ec3(0xab)]()){await walk(_0x5242d9,_0x1f2075);continue;}_0x1f2075(_0x5242d9);}}
@@ -1 +1 @@
1
- const _0x76320c=_0x2137;(function(_0x221dca,_0x402ed8){const _0x57f774=_0x2137,_0x49396e=_0x221dca();while(!![]){try{const _0x27708d=-parseInt(_0x57f774(0x157))/(-0x91c*0x1+-0x136*-0x16+-0x1187)*(parseInt(_0x57f774(0x13b))/(0x1019+0x7e1+-0x17f8))+parseInt(_0x57f774(0x160))/(-0x64*-0x12+0x17b5+-0x1eba)*(-parseInt(_0x57f774(0x140))/(0x114f+-0xa*0x118+-0x65b))+parseInt(_0x57f774(0x15e))/(-0x1f10+-0x10be+0x2fd3)*(-parseInt(_0x57f774(0x15c))/(-0x36c+-0x17*0x107+-0xef*-0x1d))+parseInt(_0x57f774(0x149))/(-0xc06+-0x1458+-0x1*-0x2065)*(parseInt(_0x57f774(0x14f))/(0x43*-0x4c+-0x13d4+0x27c0))+parseInt(_0x57f774(0x166))/(-0xc*0x293+-0x3f*0x5c+0x15*0x28d)*(parseInt(_0x57f774(0x146))/(-0x1119+0x108e+0x95*0x1))+-parseInt(_0x57f774(0x136))/(0x1bb6+0x10*0x1a7+0x201*-0x1b)*(-parseInt(_0x57f774(0x163))/(-0x1a58+0x49d*-0x5+0x3175))+-parseInt(_0x57f774(0x138))/(-0x1691+-0xafd+0x219b);if(_0x27708d===_0x402ed8)break;else _0x49396e['push'](_0x49396e['shift']());}catch(_0x16816e){_0x49396e['push'](_0x49396e['shift']());}}}(_0x4efb,-0x2*0x3fc67+0x3167+0x3f*0x3494));import{mkdtemp,readdir,readFile,rm,writeFile}from'node:fs/promises';import _0x515952 from'node:os';function _0x2137(_0x1019f5,_0x1ba794){_0x1019f5=_0x1019f5-(-0x1*-0x6f1+0x5*-0x74c+0x1eaf);const _0x10c08c=_0x4efb();let _0x1b2cbb=_0x10c08c[_0x1019f5];return _0x1b2cbb;}import _0x176846 from'node:path';import{fileURLToPath}from'node:url';import{parseFrontmatter}from'../utils/frontmatter.js';import{ensureDir,listDirs,pathExists}from'../utils/fs.js';const DEFAULT_SKILL_NAME=_0x76320c(0x135),BUILTIN_TEMPLATE_DIR=_0x176846[_0x76320c(0x161)](_0x176846[_0x76320c(0x147)](fileURLToPath(import.meta.url)),_0x76320c(0x145));export async function cleanupLegacyDefaultSkillDir(_0x83c5ab){const _0x4e3222=_0x76320c;await rm(_0x176846['join'](_0x83c5ab,_0x4e3222(0x12c),DEFAULT_SKILL_NAME),{'recursive':!![],'force':!![]}),await rm(_0x176846[_0x4e3222(0x14c)](_0x83c5ab,'.cdspec',_0x4e3222(0x153)),{'recursive':!![],'force':!![]});}export async function loadDefaultSkillManifest(_0x1faffe){const _0x5cb9ef=_0x76320c,_0x5b80d9=await loadProjectTemplateManifests(_0x1faffe);if(_0x5b80d9[_0x5cb9ef(0x133)]>-0x10cf+0xeed+0x1e2)return _0x5b80d9[-0x1f27+0x240b+-0x139*0x4];if(await pathExists(_0x176846[_0x5cb9ef(0x14c)](BUILTIN_TEMPLATE_DIR,'SKILL.md')))return buildManifestFromDir(BUILTIN_TEMPLATE_DIR);const _0x19847c=await buildFallbackTemplateInTemp();return buildManifestFromDir(_0x19847c);}export async function loadProjectTemplateManifests(_0x53bb98){const _0x393df9=_0x76320c;return loadFromProjectTemplates(_0x176846[_0x393df9(0x14c)](_0x53bb98,_0x393df9(0x142)));}async function buildManifestFromDir(_0x2d39c0){const _0x4f040c=_0x76320c,_0x3df226=await readFile(_0x176846[_0x4f040c(0x14c)](_0x2d39c0,_0x4f040c(0x12b)),_0x4f040c(0x124)),_0xd5206b=parseFrontmatter(_0x3df226),_0x49959a=_0xd5206b['attributes']['name']?.[_0x4f040c(0x13d)]()||DEFAULT_SKILL_NAME,_0x1fbd7d=_0xd5206b[_0x4f040c(0x14d)][_0x4f040c(0x167)]?.[_0x4f040c(0x13d)]()||_0x4f040c(0x152),_0x1ba0f3=await collectRelativeFiles(_0x176846[_0x4f040c(0x14c)](_0x2d39c0,_0x4f040c(0x14b))),_0x152c41=await collectRelativeFiles(_0x176846[_0x4f040c(0x14c)](_0x2d39c0,_0x4f040c(0x148))),_0x20e678=await collectRelativeFiles(_0x176846[_0x4f040c(0x14c)](_0x2d39c0,_0x4f040c(0x14a))),_0x340099=await collectRelativeFiles(_0x176846[_0x4f040c(0x14c)](_0x2d39c0,_0x4f040c(0x13e)));return{'name':_0x49959a,'description':_0x1fbd7d,'body':_0xd5206b[_0x4f040c(0x129)][_0x4f040c(0x13d)](),'agents':_0x1ba0f3,'resources':[..._0x152c41,..._0x20e678,..._0x340099],'sourcePath':_0x2d39c0};}async function collectRelativeFiles(_0x383e78){const _0x138986=_0x76320c;if(!await pathExists(_0x383e78))return[];const _0x3e1b5a=_0x176846[_0x138986(0x147)](_0x383e78),_0x3e52a3=[],_0x3a302f=[_0x383e78];while(_0x3a302f[_0x138986(0x133)]>-0x5*0x6eb+-0x4a3+0x139d*0x2){const _0x4ac9f6=_0x3a302f[_0x138986(0x12d)](),_0x182cf6=await listDirs(_0x4ac9f6);for(const _0x24140b of _0x182cf6){_0x3a302f[_0x138986(0x13f)](_0x176846[_0x138986(0x14c)](_0x4ac9f6,_0x24140b));}const _0x538707=await readdir(_0x4ac9f6,{'withFileTypes':!![]});for(const _0x1654e2 of _0x538707){if(!_0x1654e2['isFile']())continue;const _0x1b3258=_0x176846[_0x138986(0x14c)](_0x4ac9f6,_0x1654e2[_0x138986(0x158)]);_0x3e52a3[_0x138986(0x13f)](_0x176846['relative'](_0x3e1b5a,_0x1b3258)[_0x138986(0x126)]('\x5c','/'));}}return _0x3e52a3;}function _0x4efb(){const _0x12b869=['openai.yaml','\x20\x20short_description:\x20\x22','../../templates/default-skill','440yPCdhY','dirname','references','2093EEvJPg','scripts','agents','join','attributes','map','11952XivnZF','cdspec-skill-','description:\x20OpenSpec-style\x20change\x20workflow\x20skill.\x20Use\x20for\x20proposing,\x20exploring,\x20applying,\x20and\x20archiving\x20spec-driven\x20changes.','OpenSpec\x20default\x20skill','seed-skills','interface:','description:\x20','\x20\x20default_prompt:\x20\x22Use\x20$openspec-core\x20to\x20run\x20OpenSpec-style\x20workflows\x20in\x20this\x20repository.\x22','6676ZaVrGg','name','replace','\x20\x20short_description:\x20\x22Spec-driven\x20change\x20workflow\x20with\x20propose/explore/apply/archive\x22','#\x20OpenSpec\x20Workflow\x20Notes\x0a','6IwQuNT','name:\x20openspec-core','1076495tgnskY','\x20\x20default_prompt:\x20\x22Use\x20$','3wRFDyD','resolve','---','132pQUOaP','split','toLowerCase','35262rtsIKA','description','utf8','slice','replaceAll','basename','2.\x20/opsx-explore','body','cdspec-template-','SKILL.md','.codex','pop','.md','toUpperCase','3.\x20/opsx-apply','\x20to\x20follow\x20this\x20template\x20skill.\x22','Generated\x20from\x20templates/','length','project_notes.md','openspec-core','282667ZIVpIV','relative','1206738TFjAGT','tmpdir','sort','44jfYiSO','\x20\x20display_name:\x20\x22OpenSpec\x20Core\x22','trim','assets','push','434348PjIUbv','filter','templates'];_0x4efb=function(){return _0x12b869;};return _0x4efb();}async function buildFallbackTemplateInTemp(){const _0x1cbc82=_0x76320c,_0x2acf74=await mkdtemp(_0x176846[_0x1cbc82(0x14c)](_0x515952[_0x1cbc82(0x139)](),_0x1cbc82(0x150)));await ensureDir(_0x176846[_0x1cbc82(0x14c)](_0x2acf74,_0x1cbc82(0x14b))),await ensureDir(_0x176846[_0x1cbc82(0x14c)](_0x2acf74,_0x1cbc82(0x148)));const _0x5a2cdd=['---',_0x1cbc82(0x15d),_0x1cbc82(0x151),_0x1cbc82(0x162),'','#\x20OpenSpec\x20Core\x20Skill','','1.\x20/opsx-propose',_0x1cbc82(0x128),_0x1cbc82(0x130),'4.\x20/opsx-archive']['join']('\x0a'),_0x22c42b=[_0x1cbc82(0x154),_0x1cbc82(0x13c),_0x1cbc82(0x15a),_0x1cbc82(0x156)]['join']('\x0a');return await writeFile(_0x176846[_0x1cbc82(0x14c)](_0x2acf74,_0x1cbc82(0x12b)),_0x5a2cdd+'\x0a',_0x1cbc82(0x124)),await writeFile(_0x176846[_0x1cbc82(0x14c)](_0x2acf74,_0x1cbc82(0x14b),'openai.yaml'),_0x22c42b+'\x0a','utf8'),await writeFile(_0x176846[_0x1cbc82(0x14c)](_0x2acf74,_0x1cbc82(0x148),_0x1cbc82(0x134)),_0x1cbc82(0x15b)),_0x2acf74;}async function loadFromProjectTemplates(_0x5555e1){const _0x5be9e8=_0x76320c;if(!await pathExists(_0x5555e1))return[];const _0x24d988=[],_0x5dcea9=await listDirs(_0x5555e1);for(const _0x4609f9 of _0x5dcea9){const _0x1fda21=_0x176846[_0x5be9e8(0x14c)](_0x5555e1,_0x4609f9);await pathExists(_0x176846[_0x5be9e8(0x14c)](_0x1fda21,_0x5be9e8(0x12b)))&&_0x24d988[_0x5be9e8(0x13f)](await buildManifestFromDir(_0x1fda21));}if(_0x24d988[_0x5be9e8(0x133)]>-0x1*0x287+0x1*0x269f+-0x2418)return _0x24d988;const _0x55bb5b=await collectMarkdownFiles(_0x5555e1);for(const _0x255005 of _0x55bb5b[_0x5be9e8(0x13a)]()){_0x24d988[_0x5be9e8(0x13f)](await buildManifestFromMarkdown(_0x5555e1,_0x255005));}return _0x24d988;}async function buildManifestFromMarkdown(_0x16523f,_0x36a3d3){const _0x28035e=_0x76320c,_0x4cfc6f=await readFile(_0x36a3d3,_0x28035e(0x124)),_0x1b0008=parseFrontmatter(_0x4cfc6f),_0x58e9b7=_0x176846[_0x28035e(0x127)](_0x36a3d3,_0x176846['extname'](_0x36a3d3)),_0x397ee3=normalizeSkillName(_0x1b0008['attributes'][_0x28035e(0x158)]||_0x58e9b7),_0x41e3c4=_0x1b0008['attributes']['description']||_0x28035e(0x132)+_0x176846[_0x28035e(0x137)](_0x16523f,_0x36a3d3)[_0x28035e(0x126)]('\x5c','/'),_0x27eb2d=_0x1b0008[_0x28035e(0x129)][_0x28035e(0x13d)]()||_0x4cfc6f[_0x28035e(0x13d)](),_0x20cb1=await mkdtemp(_0x176846['join'](_0x515952[_0x28035e(0x139)](),_0x28035e(0x12a)));await ensureDir(_0x176846['join'](_0x20cb1,_0x28035e(0x14b))),await ensureDir(_0x176846[_0x28035e(0x14c)](_0x20cb1,_0x28035e(0x148)));const _0x20f438=[_0x28035e(0x162),'name:\x20'+_0x397ee3,_0x28035e(0x155)+_0x41e3c4,'---','',_0x27eb2d][_0x28035e(0x14c)]('\x0a'),_0x5ca1ed=[_0x28035e(0x154),'\x20\x20display_name:\x20\x22'+humanizeName(_0x397ee3)+'\x22',_0x28035e(0x144)+escapeYaml(_0x41e3c4)+'\x22',_0x28035e(0x15f)+_0x397ee3+_0x28035e(0x131)][_0x28035e(0x14c)]('\x0a');return await writeFile(_0x176846['join'](_0x20cb1,_0x28035e(0x12b)),_0x20f438+'\x0a',_0x28035e(0x124)),await writeFile(_0x176846[_0x28035e(0x14c)](_0x20cb1,_0x28035e(0x14b),_0x28035e(0x143)),_0x5ca1ed+'\x0a',_0x28035e(0x124)),await writeFile(_0x176846['join'](_0x20cb1,_0x28035e(0x148),_0x176846[_0x28035e(0x127)](_0x36a3d3)),_0x4cfc6f,_0x28035e(0x124)),buildManifestFromDir(_0x20cb1);}async function collectMarkdownFiles(_0x46c001){const _0x170f9a=_0x76320c,_0x417e75=[],_0x49750a=[_0x46c001];while(_0x49750a['length']>0x1*0x1307+-0x7e5*0x1+-0xb22){const _0x2afc02=_0x49750a['pop'](),_0x4ba927=await listDirs(_0x2afc02);for(const _0x2058f4 of _0x4ba927){_0x49750a[_0x170f9a(0x13f)](_0x176846[_0x170f9a(0x14c)](_0x2afc02,_0x2058f4));}const _0x36eaea=await readdir(_0x2afc02,{'withFileTypes':!![]});for(const _0x1a8384 of _0x36eaea){_0x1a8384['isFile']()&&_0x1a8384[_0x170f9a(0x158)]['toLowerCase']()['endsWith'](_0x170f9a(0x12e))&&_0x417e75[_0x170f9a(0x13f)](_0x176846[_0x170f9a(0x14c)](_0x2afc02,_0x1a8384[_0x170f9a(0x158)]));}}return _0x417e75;}function normalizeSkillName(_0x2457cb){const _0x1c64ad=_0x76320c;return _0x2457cb[_0x1c64ad(0x165)]()[_0x1c64ad(0x159)](/[^a-z0-9]+/g,'-')[_0x1c64ad(0x159)](/^-+|-+$/g,'')||DEFAULT_SKILL_NAME;}function humanizeName(_0x3852f4){const _0x68c86e=_0x76320c;return _0x3852f4[_0x68c86e(0x164)]('-')[_0x68c86e(0x141)](Boolean)[_0x68c86e(0x14e)](_0x27d6c5=>_0x27d6c5[0x3ce+-0xe74+0xaa6*0x1][_0x68c86e(0x12f)]()+_0x27d6c5[_0x68c86e(0x125)](-0x26e0+0x609+0x836*0x4))[_0x68c86e(0x14c)]('\x20');}function escapeYaml(_0x43317a){const _0x4792aa=_0x76320c;return _0x43317a[_0x4792aa(0x159)](/"/g,'\x5c\x22');}
1
+ const _0x2789d7=_0x1196;(function(_0x119c58,_0x3a2649){const _0xc69a57=_0x1196,_0x54bd1f=_0x119c58();while(!![]){try{const _0x72336f=parseInt(_0xc69a57(0x181))/(0x3*-0xcd7+0x1d0f*0x1+0x977)*(-parseInt(_0xc69a57(0x186))/(0x950+0x1d9+-0xb27))+-parseInt(_0xc69a57(0x18f))/(-0x2309*-0x1+-0x210a+-0x1*0x1fc)+-parseInt(_0xc69a57(0x16f))/(0x1b99*-0x1+-0x402+0x1f9f)+-parseInt(_0xc69a57(0x18d))/(0x1*0xadf+0x3*-0x445+0xa7*0x3)*(-parseInt(_0xc69a57(0x16a))/(-0x13fe+-0x14b*-0x15+-0x723))+-parseInt(_0xc69a57(0x173))/(0x53*-0xb+0x1fd3*0x1+-0x1c3b)+parseInt(_0xc69a57(0x184))/(-0xc04+-0x946+0x2*0xaa9)*(-parseInt(_0xc69a57(0x17b))/(0x11c5*-0x2+-0x113+-0x24a6*-0x1))+-parseInt(_0xc69a57(0x176))/(0x996+-0x1*-0x1d07+-0x2693)*(-parseInt(_0xc69a57(0x16d))/(-0x18e4+0xa83+0xe6c));if(_0x72336f===_0x3a2649)break;else _0x54bd1f['push'](_0x54bd1f['shift']());}catch(_0x5eea77){_0x54bd1f['push'](_0x54bd1f['shift']());}}}(_0xdefb,-0x63d9*-0x19+0x7*0x1d35+-0x3f9bc));import{mkdtemp,readdir,readFile,writeFile}from'node:fs/promises';import _0x47a8dc from'node:os';import _0xa65de5 from'node:path';import{parseFrontmatter}from'../utils/frontmatter.js';import{ensureDir,listDirs,pathExists}from'../utils/fs.js';function _0xdefb(){const _0x174104=['split','extname','toLowerCase','replace','12231QDjrtx','push','map','skill','replaceAll','isFile','33ZgYxqa','\x20to\x20run\x20this\x20skill.\x22','cdspec-template-','2064XpRkea','basename','27752yMyJzW','\x20\x20short_description:\x20\x22','join','body','filter','agents','name','449695whddjV','openai.yaml','2116401AaxnBY','tmpdir','references','utf8','templates','\x20\x20display_name:\x20\x22','Generated\x20from\x20templates/','SKILL.md','sort','length','trim','relative','6KavEUo','scripts','---','11XODlEN','pop','3249420qJQleq','attributes','description','description:\x20','1118194PcJITZ','name:\x20','endsWith','28269790dHGAFR'];_0xdefb=function(){return _0x174104;};return _0xdefb();}const DEFAULT_SKILL_NAME=_0x2789d7(0x17e);export async function loadProjectTemplateManifests(_0x4d133e){const _0x34f48a=_0x2789d7;return loadFromProjectTemplates(_0xa65de5[_0x34f48a(0x188)](_0x4d133e,_0x34f48a(0x162)));}async function buildManifestFromDir(_0x16d6b2){const _0x671b6=_0x2789d7,_0x2cbd3a=await readFile(_0xa65de5[_0x671b6(0x188)](_0x16d6b2,'SKILL.md'),_0x671b6(0x161)),_0xd50087=parseFrontmatter(_0x2cbd3a),_0x489c2=normalizeSkillName(_0xd50087[_0x671b6(0x170)][_0x671b6(0x18c)]?.['trim']()||_0xa65de5[_0x671b6(0x185)](_0x16d6b2)),_0x488fe3=_0xd50087['attributes']['description']?.[_0x671b6(0x168)]()||'Skill\x20from\x20templates/'+_0xa65de5[_0x671b6(0x185)](_0x16d6b2),_0x5acc7a=await collectRelativeFiles(_0xa65de5['join'](_0x16d6b2,'agents')),_0x425960=await collectRelativeFiles(_0xa65de5[_0x671b6(0x188)](_0x16d6b2,'references')),_0x56a955=await collectRelativeFiles(_0xa65de5[_0x671b6(0x188)](_0x16d6b2,_0x671b6(0x16b))),_0x2d007b=await collectRelativeFiles(_0xa65de5[_0x671b6(0x188)](_0x16d6b2,'assets'));return{'name':_0x489c2,'description':_0x488fe3,'body':_0xd50087['body'][_0x671b6(0x168)](),'agents':_0x5acc7a,'resources':[..._0x425960,..._0x56a955,..._0x2d007b],'sourcePath':_0x16d6b2};}async function collectRelativeFiles(_0x4d761d){const _0x2ff1e7=_0x2789d7;if(!await pathExists(_0x4d761d))return[];const _0x7dd218=_0xa65de5['dirname'](_0x4d761d),_0x129403=[],_0x2f6f01=[_0x4d761d];while(_0x2f6f01[_0x2ff1e7(0x167)]>-0x11ea+-0xe87*0x1+0x2071){const _0x4bd6cf=_0x2f6f01[_0x2ff1e7(0x16e)](),_0x477a87=await listDirs(_0x4bd6cf);for(const _0x2cb558 of _0x477a87){_0x2f6f01[_0x2ff1e7(0x17c)](_0xa65de5[_0x2ff1e7(0x188)](_0x4bd6cf,_0x2cb558));}const _0x1a1b26=await readdir(_0x4bd6cf,{'withFileTypes':!![]});for(const _0x979645 of _0x1a1b26){if(!_0x979645[_0x2ff1e7(0x180)]())continue;const _0x1d2c03=_0xa65de5[_0x2ff1e7(0x188)](_0x4bd6cf,_0x979645[_0x2ff1e7(0x18c)]);_0x129403['push'](_0xa65de5['relative'](_0x7dd218,_0x1d2c03)[_0x2ff1e7(0x17f)]('\x5c','/'));}}return _0x129403;}async function loadFromProjectTemplates(_0x233a57){const _0x5f42c4=_0x2789d7;if(!await pathExists(_0x233a57))return[];const _0x1fba18=[],_0x47367c=await listDirs(_0x233a57);for(const _0x15ad2b of _0x47367c){const _0x399348=_0xa65de5['join'](_0x233a57,_0x15ad2b);await pathExists(_0xa65de5[_0x5f42c4(0x188)](_0x399348,'SKILL.md'))&&_0x1fba18[_0x5f42c4(0x17c)](await buildManifestFromDir(_0x399348));}if(_0x1fba18[_0x5f42c4(0x167)]>-0x1bdb+0x1227+0x9b4)return _0x1fba18;const _0x2d8575=await collectMarkdownFiles(_0x233a57);for(const _0x2005a7 of _0x2d8575[_0x5f42c4(0x166)]()){_0x1fba18[_0x5f42c4(0x17c)](await buildManifestFromMarkdown(_0x233a57,_0x2005a7));}return _0x1fba18;}async function buildManifestFromMarkdown(_0x5c45cb,_0x166057){const _0x261fd0=_0x2789d7,_0x1dda73=await readFile(_0x166057,_0x261fd0(0x161)),_0x50db0e=parseFrontmatter(_0x1dda73),_0x2a6a5d=_0xa65de5[_0x261fd0(0x185)](_0x166057,_0xa65de5[_0x261fd0(0x178)](_0x166057)),_0x14cf37=normalizeSkillName(_0x50db0e[_0x261fd0(0x170)][_0x261fd0(0x18c)]||_0x2a6a5d),_0x554790=_0x50db0e['attributes'][_0x261fd0(0x171)]||_0x261fd0(0x164)+_0xa65de5[_0x261fd0(0x169)](_0x5c45cb,_0x166057)[_0x261fd0(0x17f)]('\x5c','/'),_0x5a3571=_0x50db0e[_0x261fd0(0x189)][_0x261fd0(0x168)]()||_0x1dda73[_0x261fd0(0x168)](),_0x2009e5=await mkdtemp(_0xa65de5[_0x261fd0(0x188)](_0x47a8dc[_0x261fd0(0x15f)](),_0x261fd0(0x183)));await ensureDir(_0xa65de5[_0x261fd0(0x188)](_0x2009e5,_0x261fd0(0x18b))),await ensureDir(_0xa65de5[_0x261fd0(0x188)](_0x2009e5,'references'));const _0x82941a=[_0x261fd0(0x16c),_0x261fd0(0x174)+_0x14cf37,_0x261fd0(0x172)+_0x554790,_0x261fd0(0x16c),'',_0x5a3571]['join']('\x0a'),_0x450dd7=['interface:',_0x261fd0(0x163)+humanizeName(_0x14cf37)+'\x22',_0x261fd0(0x187)+escapeYaml(_0x554790)+'\x22','\x20\x20default_prompt:\x20\x22Use\x20$'+_0x14cf37+_0x261fd0(0x182)][_0x261fd0(0x188)]('\x0a');return await writeFile(_0xa65de5['join'](_0x2009e5,_0x261fd0(0x165)),_0x82941a+'\x0a',_0x261fd0(0x161)),await writeFile(_0xa65de5[_0x261fd0(0x188)](_0x2009e5,_0x261fd0(0x18b),_0x261fd0(0x18e)),_0x450dd7+'\x0a',_0x261fd0(0x161)),await writeFile(_0xa65de5[_0x261fd0(0x188)](_0x2009e5,_0x261fd0(0x160),_0xa65de5['basename'](_0x166057)),_0x1dda73,_0x261fd0(0x161)),buildManifestFromDir(_0x2009e5);}function _0x1196(_0x47fc51,_0x4268a6){_0x47fc51=_0x47fc51-(-0x1a2f+0x246b+-0x8dd);const _0x1e211b=_0xdefb();let _0x2ea5d5=_0x1e211b[_0x47fc51];return _0x2ea5d5;}async function collectMarkdownFiles(_0x5941dc){const _0x283264=_0x2789d7,_0x37dbbd=[],_0x5f2a08=[_0x5941dc];while(_0x5f2a08[_0x283264(0x167)]>0x5*0x61f+0xb*0x54+-0x13*0x1cd){const _0x9dbc9d=_0x5f2a08[_0x283264(0x16e)](),_0x4951c8=await listDirs(_0x9dbc9d);for(const _0x542b04 of _0x4951c8){_0x5f2a08[_0x283264(0x17c)](_0xa65de5[_0x283264(0x188)](_0x9dbc9d,_0x542b04));}const _0x53f9a5=await readdir(_0x9dbc9d,{'withFileTypes':!![]});for(const _0x1e80a7 of _0x53f9a5){_0x1e80a7[_0x283264(0x180)]()&&_0x1e80a7[_0x283264(0x18c)][_0x283264(0x179)]()[_0x283264(0x175)]('.md')&&_0x37dbbd[_0x283264(0x17c)](_0xa65de5[_0x283264(0x188)](_0x9dbc9d,_0x1e80a7[_0x283264(0x18c)]));}}return _0x37dbbd;}function normalizeSkillName(_0xc84ea9){const _0x535d13=_0x2789d7;return _0xc84ea9[_0x535d13(0x179)]()[_0x535d13(0x17a)](/[^a-z0-9]+/g,'-')[_0x535d13(0x17a)](/^-+|-+$/g,'')||DEFAULT_SKILL_NAME;}function humanizeName(_0x38937e){const _0x294f38=_0x2789d7;return _0x38937e[_0x294f38(0x177)]('-')[_0x294f38(0x18a)](Boolean)[_0x294f38(0x17d)](_0x5cc21c=>_0x5cc21c[-0x12c*-0x4+0x1*0x7d9+-0xc89]['toUpperCase']()+_0x5cc21c['slice'](0xff*0x21+0x3*-0x329+-0x1763))[_0x294f38(0x188)]('\x20');}function escapeYaml(_0xbcf00e){return _0xbcf00e['replace'](/\"/g,'\x5c\x22');}
@@ -1 +1 @@
1
- const _0x1c543e=_0xd8f7;(function(_0x36f3c7,_0x166459){const _0xe53bb2=_0xd8f7,_0x4aaea1=_0x36f3c7();while(!![]){try{const _0x4037fe=parseInt(_0xe53bb2(0xff))/(0x1fed+-0xdca+-0x1222)*(parseInt(_0xe53bb2(0xf8))/(0x1*-0x19c6+-0x209d+0x3a65))+parseInt(_0xe53bb2(0x108))/(-0x1*-0x21bb+-0xf6d+-0x1*0x124b)+-parseInt(_0xe53bb2(0x10b))/(-0x145f+0x48e+-0x7*-0x243)+-parseInt(_0xe53bb2(0x100))/(0x1cb1+-0x8*-0x162+-0x27bc*0x1)+parseInt(_0xe53bb2(0x107))/(-0x110e+0xfeb+0x129)+-parseInt(_0xe53bb2(0xf6))/(0x23ca+0x2c*0xd8+-0x48e3)*(parseInt(_0xe53bb2(0xfe))/(0x17*-0x2+-0x1*-0x22f1+-0x11*0x20b))+-parseInt(_0xe53bb2(0xf0))/(0x3c4*-0x6+-0x46*0x86+0x3b45)*(-parseInt(_0xe53bb2(0xf3))/(0xa4b+-0x4*-0x431+-0x1b05));if(_0x4037fe===_0x166459)break;else _0x4aaea1['push'](_0x4aaea1['shift']());}catch(_0x14cef0){_0x4aaea1['push'](_0x4aaea1['shift']());}}}(_0x94ec,0x17*0x1027+-0x2e8b*0x11+0x35e40));import _0x5886dc from'node:path';import{rm}from'node:fs/promises';import{loadConfig}from'../config/loader.js';import{resolveAgentRoot}from'../config/path.js';import{loadAllSkillManifests}from'./manifest-loader.js';import{expandTargets,getAdapter}from'./adapters/index.js';import{installToolInteractionTemplates}from'./tool-interactions.js';import{cleanupLegacyDefaultSkillDir,loadDefaultSkillManifest,loadProjectTemplateManifests}from'./scaffold.js';import{validateManifest}from'./validator.js';export async function initSkills(_0x40570c,_0x1e754a,_0x10a654,_0x102a43=_0x1c543e(0x110)){const _0x2c976f=_0x1c543e;await cleanupLegacyDefaultSkillDir(_0x40570c);const _0x2af003=await loadConfig(_0x40570c),_0x4164a8=await loadProjectTemplateManifests(_0x40570c);let _0x30d9fa=_0x4164a8[_0x2c976f(0x10a)]>-0xeda+-0x2336+-0x321*-0x10?_0x4164a8:await loadAllSkillManifests(_0x40570c);if(_0x30d9fa[_0x2c976f(0x10a)]===0x17db+0xc11*0x2+0x1*-0x2ffd)_0x30d9fa=[await loadDefaultSkillManifest(_0x40570c)];const _0x1020a3=buildInitConfig(_0x2af003,_0x30d9fa,_0x102a43),_0x16e303=expandTargets(_0x1e754a);if(_0x10a654){for(const _0x2e4450 of _0x16e303){const _0x5f4143=resolveAgentRoot(_0x40570c,_0x1020a3['agents'][_0x2e4450][_0x2c976f(0xf2)]);await rm(_0x5886dc[_0x2c976f(0x112)](_0x5f4143,_0x2c976f(0xeb)),{'recursive':!![],'force':!![]}),await rm(_0x5886dc['join'](_0x5f4143,_0x1020a3['agents'][_0x2e4450][_0x2c976f(0x113)]),{'recursive':!![],'force':!![]});const _0x5394d3=_0x1020a3[_0x2c976f(0xed)][_0x2e4450][_0x2c976f(0xf4)]?_0x5886dc['join'](_0x40570c,_0x1020a3[_0x2c976f(0xed)][_0x2e4450][_0x2c976f(0x101)]):_0x5886dc['join'](_0x5f4143,_0x1020a3[_0x2c976f(0xed)][_0x2e4450][_0x2c976f(0x101)]);await rm(_0x5394d3,{'force':!![]});}await rm(_0x5886dc[_0x2c976f(0x112)](_0x40570c,_0x2c976f(0xfc)),{'force':!![]});}for(const _0x1ece67 of _0x30d9fa){const _0xc81918=[...validateManifest(_0x1ece67)];for(const _0x256fd1 of _0x16e303){_0xc81918[_0x2c976f(0xea)](...getAdapter(_0x256fd1)[_0x2c976f(0x105)](_0x1ece67));}failIfErrors(_0xc81918);}for(const _0x4d4558 of _0x30d9fa){for(const _0x1af836 of _0x16e303){const _0x597223=_0x5886dc['join'](resolveAgentRoot(_0x40570c,_0x1020a3[_0x2c976f(0xed)][_0x1af836][_0x2c976f(0xf2)]),'skills',_0x4d4558[_0x2c976f(0xf5)]);await getAdapter(_0x1af836)['emit'](_0x4d4558,_0x597223,_0x10a654);}}const _0x529e2d=[];for(const _0x5cb191 of _0x16e303){_0x529e2d[_0x2c976f(0xea)](...await installToolInteractionTemplates(_0x40570c,_0x5cb191,_0x30d9fa,_0x1020a3));}return _0x529e2d;}function buildInitConfig(_0x3cf59e,_0x2f2d87,_0x3fcd5a){const _0x2a5377=_0x1c543e,_0x4c6523=new Set(_0x2f2d87[_0x2a5377(0xf7)](_0x4b9900=>_0x4b9900['name'])),_0x366943=buildSkillDrivenBindings(_0x2f2d87),_0x17e846=_0x3fcd5a==='project'?{'codex':{..._0x3cf59e['agents'][_0x2a5377(0x10c)],'rootDir':toProjectRootDir(_0x3cf59e[_0x2a5377(0xed)][_0x2a5377(0x10c)][_0x2a5377(0xf2)],_0x2a5377(0xfb))},'claudecode':{..._0x3cf59e[_0x2a5377(0xed)][_0x2a5377(0x109)],'rootDir':toProjectRootDir(_0x3cf59e['agents'][_0x2a5377(0x109)][_0x2a5377(0xf2)],_0x2a5377(0xec))},'iflow':{..._0x3cf59e[_0x2a5377(0xed)]['iflow'],'rootDir':toProjectRootDir(_0x3cf59e[_0x2a5377(0xed)][_0x2a5377(0xee)][_0x2a5377(0xf2)],_0x2a5377(0x115))}}:_0x3cf59e['agents'];return{..._0x3cf59e,'commandBindings':_0x366943[_0x2a5377(0x10a)]>0xb8f+-0x2a8+0x35*-0x2b?_0x366943:_0x3cf59e[_0x2a5377(0xfd)][_0x2a5377(0xf7)](_0x3d7872=>_0x4c6523[_0x2a5377(0x10f)](_0x3d7872[_0x2a5377(0x106)])?_0x3d7872:{..._0x3d7872,'skill':_0x2f2d87[-0xc0b+0xc69+0x5e*-0x1]?.[_0x2a5377(0xf5)]||_0x3d7872[_0x2a5377(0x106)]}),'agents':{'codex':{..._0x17e846[_0x2a5377(0x10c)],'commandFilePattern':'{id}.md','slashPattern':_0x2a5377(0xef)},'claudecode':{..._0x17e846['claudecode'],'commandFilePattern':_0x2a5377(0x102),'slashPattern':_0x2a5377(0xef)},'iflow':{..._0x17e846[_0x2a5377(0xee)],'commandFilePattern':_0x2a5377(0x102),'slashPattern':_0x2a5377(0xef)}}};}function toProjectRootDir(_0x437309,_0x4e6b2f){const _0x1f5a22=_0x1c543e;if(!_0x437309)return _0x4e6b2f;if(!_0x437309[_0x1f5a22(0x116)]('~/')&&!_0x437309[_0x1f5a22(0x116)]('~\x5c')&&!_0x5886dc[_0x1f5a22(0x10e)](_0x437309))return _0x437309;const _0x7c33e3=_0x437309[_0x1f5a22(0x103)](/[/\\]+$/,''),_0x38618a=_0x5886dc['basename'](_0x7c33e3);return _0x38618a||_0x4e6b2f;}function buildSkillDrivenBindings(_0x4d9fbd){const _0x5a04e7=_0x1c543e,_0x7e621c=new Set();return _0x4d9fbd[_0x5a04e7(0xf7)](_0x203985=>{const _0x2e9285=_0x5a04e7,_0x9a11e2=commandIdForSkillName(_0x203985[_0x2e9285(0xf5)]);let _0x5bb32a=_0x9a11e2,_0x5888d3=0x570+0x2132+-0x26a0;while(_0x7e621c[_0x2e9285(0x10f)](_0x5bb32a)){_0x5bb32a=''+_0x9a11e2+_0x5888d3,_0x5888d3+=-0x1*-0x2371+-0x641+-0x1d2f;}return _0x7e621c['add'](_0x5bb32a),{'id':_0x5bb32a,'skill':_0x203985[_0x2e9285(0xf5)],'description':_0x2e9285(0xf1)+_0x203985[_0x2e9285(0xf5)]};});}function _0x94ec(){const _0x54ab84=['map','2ZWpXMA','[warn]\x20','cd-','.codex','AGENTS.md','commandBindings','8quRHGZ','142481wFLZTz','751195jgFedJ','guideFile','{id}.md','replace','level','validate','skill','759882eCBDUV','467667iwwIDm','claudecode','length','331960uFOLMs','codex','error','isAbsolute','has','default','message','join','commandsDir','warn','.iflow','startsWith','push','skills','.claude','agents','iflow','/{id}','9981CYPXoF','Run\x20skill\x20','rootDir','410sJwElV','guideAtProjectRoot','name','867797jwVGeI'];_0x94ec=function(){return _0x54ab84;};return _0x94ec();}function _0xd8f7(_0xdee536,_0x2e799e){_0xdee536=_0xdee536-(0xd12+-0xc55+0x2d*0x1);const _0x47e63f=_0x94ec();let _0x29b344=_0x47e63f[_0xdee536];return _0x29b344;}function commandIdForSkillName(_0x8cec6a){const _0xa6c3a9=_0x1c543e,_0x33c368=_0x8cec6a['toLowerCase']()[_0xa6c3a9(0x103)](/[^a-z0-9]+/g,'-')[_0xa6c3a9(0x103)](/^-+|-+$/g,'');return _0xa6c3a9(0xfa)+(_0x33c368||'skill');}function failIfErrors(_0x3d4e04){const _0x5c4214=_0x1c543e,_0x563e66=_0x3d4e04['filter'](_0x4d3508=>_0x4d3508[_0x5c4214(0x104)]==='warning');_0x563e66['forEach'](_0x572520=>console[_0x5c4214(0x114)](_0x5c4214(0xf9)+_0x572520[_0x5c4214(0x111)]));const _0x3dfc7f=_0x3d4e04['filter'](_0x313553=>_0x313553[_0x5c4214(0x104)]===_0x5c4214(0x10d));if(_0x3dfc7f[_0x5c4214(0x10a)]>0x317*0x4+-0x1*-0x7cf+-0x142b)throw new Error(_0x3dfc7f[_0x5c4214(0xf7)](_0x3661f3=>_0x3661f3['message'])[_0x5c4214(0x112)]('\x0a'));}
1
+ const _0x9c4956=_0xd99a;(function(_0x586ab5,_0x194bd4){const _0x4c095b=_0xd99a,_0xa515f1=_0x586ab5();while(!![]){try{const _0x314098=parseInt(_0x4c095b(0x192))/(0x13d*-0x3+0xca7+-0x1*0x8ef)*(-parseInt(_0x4c095b(0x182))/(-0x1*0xcf+-0x197*-0x6+-0x8b9))+-parseInt(_0x4c095b(0x17e))/(0x1*-0x2a1+-0x4a*0x39+0x131e*0x1)*(parseInt(_0x4c095b(0x1a6))/(-0x1654+0x214c+-0x57a*0x2))+parseInt(_0x4c095b(0x181))/(-0x1eb3+0x1654+0x864)*(-parseInt(_0x4c095b(0x19e))/(-0x25a0+-0x8e1+-0x2e87*-0x1))+-parseInt(_0x4c095b(0x1a2))/(-0x122b+0xc60+-0x2*-0x2e9)+parseInt(_0x4c095b(0x194))/(-0x192d+0x1d20+-0x3eb)*(parseInt(_0x4c095b(0x1ab))/(-0x1*-0xfb6+-0x101c*0x1+0x6f))+parseInt(_0x4c095b(0x17d))/(-0xb*0x191+0x2*0x8f9+-0xad)+-parseInt(_0x4c095b(0x17f))/(0x1e*-0x1d+0x88*-0x5+0x619)*(-parseInt(_0x4c095b(0x1a9))/(-0x137f+0x3*-0x6bb+-0x4*-0x9ef));if(_0x314098===_0x194bd4)break;else _0xa515f1['push'](_0xa515f1['shift']());}catch(_0x4589b2){_0xa515f1['push'](_0xa515f1['shift']());}}}(_0x8df5,0x7bfa1+-0x42e53*0x2+-0x95*-0xaad));import _0x5b1587 from'node:path';import{rm}from'node:fs/promises';import{loadConfig}from'../config/loader.js';import{resolveAgentRoot}from'../config/path.js';import{expandTargets,getAdapter}from'./adapters/index.js';import{loadProjectTemplateManifests}from'./scaffold.js';import{installToolInteractionTemplates}from'./tool-interactions.js';import{validateManifest}from'./validator.js';export async function initSkills(_0x4a8baf,_0x5898bf,_0x294dec,_0x2254ec=_0x9c4956(0x1a7)){const _0x4e70e1=_0x9c4956,_0x84798a=await loadConfig(_0x4a8baf),_0x4fc2b5=await loadProjectTemplateManifests(_0x4a8baf);if(_0x4fc2b5[_0x4e70e1(0x18d)]===0x1e1a*0x1+-0x5*0x68b+0x29d)throw new Error(_0x4e70e1(0x18e));const _0x533b18=buildInitConfig(_0x84798a,_0x4fc2b5,_0x2254ec),_0x5de9ed=expandTargets(_0x5898bf);if(_0x294dec)for(const _0x46d22b of _0x5de9ed){const _0x36552d=resolveAgentRoot(_0x4a8baf,_0x533b18['agents'][_0x46d22b][_0x4e70e1(0x189)]);await rm(_0x5b1587[_0x4e70e1(0x1a0)](_0x36552d,_0x4e70e1(0x183)),{'recursive':!![],'force':!![]}),await rm(_0x5b1587[_0x4e70e1(0x1a0)](_0x36552d,_0x533b18[_0x4e70e1(0x1a8)][_0x46d22b][_0x4e70e1(0x185)]),{'recursive':!![],'force':!![]});}for(const _0x12d3db of _0x4fc2b5){const _0x48d71e=[...validateManifest(_0x12d3db)];for(const _0x170ac9 of _0x5de9ed){_0x48d71e[_0x4e70e1(0x19b)](...getAdapter(_0x170ac9)[_0x4e70e1(0x19f)](_0x12d3db));}failIfErrors(_0x48d71e);}for(const _0x57e24e of _0x4fc2b5){for(const _0xffac3a of _0x5de9ed){const _0x48159d=_0x5b1587['join'](resolveAgentRoot(_0x4a8baf,_0x533b18[_0x4e70e1(0x1a8)][_0xffac3a][_0x4e70e1(0x189)]),_0x4e70e1(0x183),_0x57e24e[_0x4e70e1(0x19a)]);await getAdapter(_0xffac3a)[_0x4e70e1(0x18b)](_0x57e24e,_0x48159d,_0x294dec);}}const _0x245994=[];for(const _0x50df39 of _0x5de9ed){_0x245994['push'](...await installToolInteractionTemplates(_0x4a8baf,_0x50df39,_0x4fc2b5,_0x533b18));}return _0x245994;}function buildInitConfig(_0xb46525,_0x354a06,_0x1a6f3a){const _0x17c742=_0x9c4956,_0x3b60c2=new Set(_0x354a06[_0x17c742(0x1a1)](_0x3dd20a=>_0x3dd20a[_0x17c742(0x19a)])),_0x291973=buildSkillDrivenBindings(_0x354a06),_0x5d8d99=_0x1a6f3a==='project'?{'codex':{..._0xb46525['agents'][_0x17c742(0x19d)],'rootDir':toProjectRootDir(_0xb46525[_0x17c742(0x1a8)][_0x17c742(0x19d)][_0x17c742(0x189)],_0x17c742(0x1a3))},'claudecode':{..._0xb46525[_0x17c742(0x1a8)]['claudecode'],'rootDir':toProjectRootDir(_0xb46525[_0x17c742(0x1a8)]['claudecode'][_0x17c742(0x189)],_0x17c742(0x1a5))},'iflow':{..._0xb46525[_0x17c742(0x1a8)]['iflow'],'rootDir':toProjectRootDir(_0xb46525[_0x17c742(0x1a8)]['iflow'][_0x17c742(0x189)],_0x17c742(0x195))}}:_0xb46525['agents'];return{..._0xb46525,'commandBindings':_0x291973[_0x17c742(0x18d)]>-0xb26+0x12eb*-0x1+0x1e11?_0x291973:_0xb46525[_0x17c742(0x1aa)][_0x17c742(0x1a1)](_0x594dd2=>_0x3b60c2['has'](_0x594dd2[_0x17c742(0x17c)])?_0x594dd2:{..._0x594dd2,'skill':_0x354a06[0x23de+0x8cb+0x6f*-0x67]?.[_0x17c742(0x19a)]||_0x594dd2[_0x17c742(0x17c)]}),'agents':{'codex':{..._0x5d8d99[_0x17c742(0x19d)],'commandFilePattern':_0x17c742(0x19c),'slashPattern':_0x17c742(0x18c)},'claudecode':{..._0x5d8d99[_0x17c742(0x180)],'commandFilePattern':'{id}.md','slashPattern':_0x17c742(0x18c)},'iflow':{..._0x5d8d99[_0x17c742(0x193)],'commandFilePattern':_0x17c742(0x19c),'slashPattern':_0x17c742(0x18c)}}};}function toProjectRootDir(_0x3964ab,_0x5b70fb){const _0x212f5d=_0x9c4956;if(!_0x3964ab)return _0x5b70fb;if(!_0x3964ab[_0x212f5d(0x199)]('~/')&&!_0x3964ab['startsWith']('~\x5c')&&!_0x5b1587[_0x212f5d(0x197)](_0x3964ab))return _0x3964ab;const _0x1fbade=_0x3964ab['replace'](/[/\\]+$/,''),_0x2669cd=_0x5b1587[_0x212f5d(0x1a4)](_0x1fbade);return _0x2669cd||_0x5b70fb;}function _0x8df5(){const _0x1ce211=['1077909fbKBgb','.codex','basename','.claude','18168XaXFBo','default','agents','1315284AoulKf','commandBindings','18BIhIno','skill','4749990JczkEe','456zVfwAG','55hKbeOE','claudecode','5SeGsMi','4388dcLLTu','skills','cd-','commandsDir','level','replace','warning','rootDir','filter','emit','/{id}','length','未在当前项目找到可用\x20skill\x20模板。请在项目根目录准备\x20templates/<skill>/SKILL.md\x20后重试。','warn','message','toLowerCase','21qpljRH','iflow','1114040xrMSWR','.iflow','error','isAbsolute','forEach','startsWith','name','push','{id}.md','codex','264474isOlby','validate','join','map'];_0x8df5=function(){return _0x1ce211;};return _0x8df5();}function _0xd99a(_0x505ed3,_0x3dae32){_0x505ed3=_0x505ed3-(-0x2278+0x1b39+-0x2e9*-0x3);const _0x7a63c7=_0x8df5();let _0x102a4f=_0x7a63c7[_0x505ed3];return _0x102a4f;}function buildSkillDrivenBindings(_0x508dc7){const _0x50d862=_0x9c4956,_0x213956=new Set();return _0x508dc7[_0x50d862(0x1a1)](_0x140711=>{const _0x1b873b=_0x50d862,_0x180dfd=commandIdForSkillName(_0x140711[_0x1b873b(0x19a)]);let _0x476946=_0x180dfd,_0x469156=-0x25*0x34+-0x81f+0x321*0x5;while(_0x213956['has'](_0x476946)){_0x476946=''+_0x180dfd+_0x469156,_0x469156+=-0xbfe+0x7*-0x593+0x3304;}return _0x213956['add'](_0x476946),{'id':_0x476946,'skill':_0x140711[_0x1b873b(0x19a)],'description':'Run\x20skill\x20'+_0x140711[_0x1b873b(0x19a)]};});}function commandIdForSkillName(_0x1e7c53){const _0x147cab=_0x9c4956,_0x5c9add=_0x1e7c53[_0x147cab(0x191)]()[_0x147cab(0x187)](/[^a-z0-9]+/g,'-')[_0x147cab(0x187)](/^-+|-+$/g,'');return _0x147cab(0x184)+(_0x5c9add||_0x147cab(0x17c));}function failIfErrors(_0x407299){const _0x509c85=_0x9c4956,_0x10d5b5=_0x407299['filter'](_0x4a5a04=>_0x4a5a04[_0x509c85(0x186)]===_0x509c85(0x188));_0x10d5b5[_0x509c85(0x198)](_0x141d9b=>console[_0x509c85(0x18f)]('[warn]\x20'+_0x141d9b[_0x509c85(0x190)]));const _0x2270df=_0x407299[_0x509c85(0x18a)](_0x536758=>_0x536758[_0x509c85(0x186)]===_0x509c85(0x196));if(_0x2270df[_0x509c85(0x18d)]>-0x50+-0x1*0x26+0x76)throw new Error(_0x2270df[_0x509c85(0x1a1)](_0x4272c9=>_0x4272c9[_0x509c85(0x190)])[_0x509c85(0x1a0)]('\x0a'));}
@@ -1 +1 @@
1
- (function(_0x49863d,_0x70edfc){const _0x24f0e6=_0x1e91,_0x3af24b=_0x49863d();while(!![]){try{const _0x431eb9=-parseInt(_0x24f0e6(0x76))/(0x1263+0x1*-0x113+-0x5c5*0x3)*(parseInt(_0x24f0e6(0x70))/(0x202a+0x1bf+0x1*-0x21e7))+-parseInt(_0x24f0e6(0x6d))/(0x1278+-0x142d+0x1b8)*(-parseInt(_0x24f0e6(0x71))/(0xd7*-0x20+-0x1*0xc51+0x1*0x2735))+-parseInt(_0x24f0e6(0x7c))/(-0xd8c+0x12f8+0x567*-0x1)*(-parseInt(_0x24f0e6(0x79))/(0x11bf+-0x161f*0x1+-0x466*-0x1))+parseInt(_0x24f0e6(0x73))/(0x1001*0x2+-0x198e+0x23*-0x2f)*(-parseInt(_0x24f0e6(0x7a))/(-0x1b0+0x1fa3+0x1deb*-0x1))+parseInt(_0x24f0e6(0x80))/(0x42a+0x24bd+-0x28de)+-parseInt(_0x24f0e6(0x6f))/(-0x12a8+-0x1f*0xa2+-0x1328*-0x2)*(parseInt(_0x24f0e6(0x69))/(0x95*0x2b+-0x2*0x7c1+-0x97a))+-parseInt(_0x24f0e6(0x6b))/(0x5e2+-0x6*0x5b2+-0x1f*-0xea);if(_0x431eb9===_0x70edfc)break;else _0x3af24b['push'](_0x3af24b['shift']());}catch(_0xc3bb41){_0x3af24b['push'](_0x3af24b['shift']());}}}(_0x5c70,0x1*-0x506ab+-0x1eb5*-0x26+0xb8e2*0x6));import{writeFile}from'node:fs/promises';function _0x1e91(_0x2715ac,_0x5998ed){_0x2715ac=_0x2715ac-(-0xb*-0x3e+-0xf38+0xcf7);const _0x268bb2=_0x5c70();let _0x408cf9=_0x268bb2[_0x2715ac];return _0x408cf9;}import _0x5914ef from'node:path';import{resolveAgentRoot}from'../config/path.js';import{ensureDir}from'../utils/fs.js';export async function installToolInteractionTemplates(_0x435f3d,_0x49ed9c,_0x1fe416,_0x371707){const _0x441339=_0x1e91,_0x25bc3d=_0x371707[_0x441339(0x77)][_0x49ed9c],_0x51270a=resolveAgentRoot(_0x435f3d,_0x25bc3d[_0x441339(0x75)]),_0x59eb3e=_0x5914ef[_0x441339(0x74)](_0x51270a,_0x25bc3d['commandsDir']);await ensureDir(_0x59eb3e);const _0x4715f9=[];for(const _0x3ade12 of _0x371707['commandBindings']){const _0xb1d665=_0x25bc3d['commandFilePattern']['replace'](_0x441339(0x7d),_0x3ade12['id']),_0x5585dc=_0x5914ef['join'](_0x59eb3e,_0xb1d665);await writeFile(_0x5585dc,renderCommandTemplate(_0x49ed9c,_0x3ade12['id'],_0x3ade12[_0x441339(0x7b)],_0x3ade12[_0x441339(0x72)]),_0x441339(0x6c)),_0x4715f9[_0x441339(0x7f)](_0x5585dc);}return _0x4715f9;}function _0x5c70(){const _0x1e12e4=['699nQJGJy','agents','-\x20skill:\x20','60jGwkCJ','902248slxePf','skill','212200MuQWPD','{id}','##\x20Required\x20output','push','3106503fGSaEv','5425519jGGiVp','-\x20Updated\x20files','2154828ofeUlT','utf8','24onPKJF','##\x20Skill\x20binding','10bGwSAY','302WjKHTi','187436OeADPB','description','7nYcnBh','join','rootDir'];_0x5c70=function(){return _0x1e12e4;};return _0x5c70();}function renderCommandTemplate(_0x5bcfa6,_0x190db8,_0x1b8dc2,_0x13e1f5){const _0x191fe5=_0x1e91;return['#\x20'+_0x190db8+'\x20('+_0x5bcfa6+')','',_0x13e1f5,'',_0x191fe5(0x6e),_0x191fe5(0x78)+_0x1b8dc2,'',_0x191fe5(0x7e),'-\x20Change\x20ID',_0x191fe5(0x6a),'-\x20Validation\x20summary']['join']('\x0a');}
1
+ (function(_0x462330,_0x423048){const _0x14744e=_0x49d7,_0x157f67=_0x462330();while(!![]){try{const _0x589660=-parseInt(_0x14744e(0x164))/(-0xbc9*0x1+0x212e+-0x1564)+parseInt(_0x14744e(0x16b))/(0x2*-0x100b+0x1ebe+0x15a)+parseInt(_0x14744e(0x167))/(0x1e65*-0x1+-0x296*-0x2+-0x17c*-0x11)+parseInt(_0x14744e(0x16f))/(0x1b1*0x2+-0x2614+0xb92*0x3)*(parseInt(_0x14744e(0x165))/(-0x109e+0x19ee+-0x94b))+parseInt(_0x14744e(0x162))/(-0x21bf*0x1+-0x1f60+0x4125)+parseInt(_0x14744e(0x172))/(-0x12ab+0x379+0xf39)+-parseInt(_0x14744e(0x174))/(-0x13b7+0x1*0x1eee+-0xb2f);if(_0x589660===_0x423048)break;else _0x157f67['push'](_0x157f67['shift']());}catch(_0x833f90){_0x157f67['push'](_0x157f67['shift']());}}}(_0x31b6,-0x46b0d*0x3+0x1*-0x22712+0x97b*0x296));import{writeFile}from'node:fs/promises';import _0x3f4174 from'node:path';function _0x49d7(_0x46989b,_0x5068f0){_0x46989b=_0x46989b-(0x5f3*-0x6+0x2*0xb31+0xead);const _0x32f4e6=_0x31b6();let _0x3f4174=_0x32f4e6[_0x46989b];return _0x3f4174;}import{resolveAgentRoot}from'../config/path.js';function _0x31b6(){const _0x255a0e=['5193517tZxszB','skill','4203536WunNNM','rootDir','agents','join','{id}','##\x20Skill\x20binding','1623864FozTDD','utf8','642255aRyOgT','5MdxvyI','commandBindings','1010856sqiCcQ','description','push','##\x20Required\x20output','74518PJjlHA','replace','-\x20Change\x20ID','commandFilePattern','1511456Pcncfh','-\x20skill:\x20','-\x20Validation\x20summary'];_0x31b6=function(){return _0x255a0e;};return _0x31b6();}import{ensureDir}from'../utils/fs.js';export async function installToolInteractionTemplates(_0x3689a3,_0x309da8,_0x33c22b,_0x145ff8){const _0x41e38b=_0x49d7,_0x18e96b=_0x145ff8[_0x41e38b(0x15e)][_0x309da8],_0xfcf0c5=resolveAgentRoot(_0x3689a3,_0x18e96b[_0x41e38b(0x15d)]),_0x20f593=_0x3f4174['join'](_0xfcf0c5,_0x18e96b['commandsDir']);await ensureDir(_0x20f593);const _0x2039ac=[];for(const _0x2bf012 of _0x145ff8[_0x41e38b(0x166)]){const _0x11c4d5=_0x18e96b[_0x41e38b(0x16e)][_0x41e38b(0x16c)](_0x41e38b(0x160),_0x2bf012['id']),_0x3f630c=_0x3f4174[_0x41e38b(0x15f)](_0x20f593,_0x11c4d5);await writeFile(_0x3f630c,renderCommandTemplate(_0x309da8,_0x2bf012['id'],_0x2bf012[_0x41e38b(0x173)],_0x2bf012[_0x41e38b(0x168)]),_0x41e38b(0x163)),_0x2039ac[_0x41e38b(0x169)](_0x3f630c);}return _0x2039ac;}function renderCommandTemplate(_0x1b7113,_0x5cbc41,_0x5bab9f,_0x2eb657){const _0x365d18=_0x49d7;return['#\x20'+_0x5cbc41+'\x20('+_0x1b7113+')','',_0x2eb657,'',_0x365d18(0x161),_0x365d18(0x170)+_0x5bab9f,'',_0x365d18(0x16a),_0x365d18(0x16d),'-\x20Updated\x20files',_0x365d18(0x171)][_0x365d18(0x15f)]('\x0a');}
@@ -1 +1 @@
1
- function _0x1c5a(_0x38d2b7,_0x7568ae){_0x38d2b7=_0x38d2b7-(-0x8*-0x8b+0x1bce*0x1+-0x1f40);const _0x1a1f5e=_0x5cb0();let _0x3398bf=_0x1a1f5e[_0x38d2b7];return _0x3398bf;}function _0x5cb0(){const _0x38b3f5=['warning','437327WIofVy','\x22\x20has\x20empty\x20SKILL.md\x20body.','10gNiHEX','24vdaowX','4077225COPzMn','description','4528405KsEsTf','Skill\x20\x22','4kMlEWg','99457amdSFb','error','name','test','push','1452345FbNqtT','body','8582862rVXbWQ','2792034zxBcjS','60oCwQCO','\x22\x20is\x20missing\x20frontmatter\x20description.','Skill\x20name\x20is\x20required.'];_0x5cb0=function(){return _0x38b3f5;};return _0x5cb0();}(function(_0x4e83fd,_0x4e9613){const _0x187b49=_0x1c5a,_0x213012=_0x4e83fd();while(!![]){try{const _0xd5e82b=-parseInt(_0x187b49(0xec))/(0x1eb+0x190b+-0x1af5)*(parseInt(_0x187b49(0xfb))/(0x15fc+0x7d*-0x5+-0x683*0x3))+-parseInt(_0x187b49(0xf1))/(0x1700+-0x1e5f*-0x1+0xd57*-0x4)+-parseInt(_0x187b49(0xeb))/(0x1*0xd72+0x25f5+0xa47*-0x5)*(-parseInt(_0x187b49(0xe7))/(0x2e*-0xbb+-0x1b85+0x3d24))+parseInt(_0x187b49(0xf3))/(0x5ca+0x1379*-0x2+0x1*0x212e)+parseInt(_0x187b49(0xe9))/(0x1*-0x89f+-0x3*-0x509+-0x227*0x3)+-parseInt(_0x187b49(0xe6))/(0x50e*0x7+0x1152+-0x34ac)*(parseInt(_0x187b49(0xf4))/(-0x588*-0x1+0x1*0x18da+-0x1e59))+-parseInt(_0x187b49(0xf5))/(-0x181d+-0x63d*-0x2+0x31*0x3d)*(parseInt(_0x187b49(0xf9))/(-0x20fc+-0x160f*0x1+0x3716));if(_0xd5e82b===_0x4e9613)break;else _0x213012['push'](_0x213012['shift']());}catch(_0x183285){_0x213012['push'](_0x213012['shift']());}}}(_0x5cb0,-0xc*0xeec3+0x69d*-0x1cd+0x226d26));export function validateManifest(_0x3398bf){const _0x2fb7eb=_0x1c5a,_0x2eef17=[];return!_0x3398bf[_0x2fb7eb(0xee)]&&_0x2eef17[_0x2fb7eb(0xf0)]({'level':_0x2fb7eb(0xed),'message':_0x2fb7eb(0xf7)}),!_0x3398bf[_0x2fb7eb(0xe8)]&&_0x2eef17['push']({'level':_0x2fb7eb(0xed),'message':_0x2fb7eb(0xea)+_0x3398bf['name']+_0x2fb7eb(0xf6)}),!_0x3398bf[_0x2fb7eb(0xf2)]&&_0x2eef17[_0x2fb7eb(0xf0)]({'level':_0x2fb7eb(0xf8),'message':'Skill\x20\x22'+_0x3398bf[_0x2fb7eb(0xee)]+_0x2fb7eb(0xfa)}),!/^[a-z0-9-]+$/[_0x2fb7eb(0xef)](_0x3398bf[_0x2fb7eb(0xee)])&&_0x2eef17[_0x2fb7eb(0xf0)]({'level':_0x2fb7eb(0xf8),'message':_0x2fb7eb(0xea)+_0x3398bf[_0x2fb7eb(0xee)]+'\x22\x20should\x20use\x20lowercase\x20letters,\x20numbers,\x20and\x20hyphens.'}),_0x2eef17;}
1
+ (function(_0x5b70e9,_0x2d1a30){const _0x1420fa=_0x5c44,_0x6e9c09=_0x5b70e9();while(!![]){try{const _0x4450b1=-parseInt(_0x1420fa(0x145))/(0x8f5+-0xe*-0x187+-0x16*0x161)*(-parseInt(_0x1420fa(0x136))/(-0x314*0xc+-0x1*0x1ecc+0x1a*0x29b))+parseInt(_0x1420fa(0x13f))/(0x12cd*-0x1+-0x2c+0x12fc)+-parseInt(_0x1420fa(0x13b))/(-0x7*0x455+0x1564+0x8f3)*(-parseInt(_0x1420fa(0x134))/(-0x1*-0x1e51+-0x2138+0x2ec))+-parseInt(_0x1420fa(0x13c))/(-0x41*0x1+0x12*0x116+0x1345*-0x1)*(-parseInt(_0x1420fa(0x143))/(-0xd*-0x137+-0x1f45*-0x1+-0x2f09))+-parseInt(_0x1420fa(0x140))/(-0x1412+0x2527*0x1+-0x369*0x5)+-parseInt(_0x1420fa(0x144))/(0x25*0x47+-0x2ce+-0x76c)+-parseInt(_0x1420fa(0x139))/(-0x5ab*-0x2+0x208f+-0x2bdb*0x1)*(-parseInt(_0x1420fa(0x138))/(-0x85f+0x6e*-0x54+0x2c82));if(_0x4450b1===_0x2d1a30)break;else _0x6e9c09['push'](_0x6e9c09['shift']());}catch(_0x5dc16f){_0x6e9c09['push'](_0x6e9c09['shift']());}}}(_0x294a,-0x1a*-0xb2f6+-0x8af83+-0x853*-0x26));export function validateManifest(_0x58bfe5){const _0x4047ce=_0x5c44,_0x25aae1=[];return!_0x58bfe5[_0x4047ce(0x147)]&&_0x25aae1[_0x4047ce(0x142)]({'level':'error','message':'Skill\x20name\x20is\x20required.'}),!_0x58bfe5[_0x4047ce(0x13a)]&&_0x25aae1[_0x4047ce(0x142)]({'level':_0x4047ce(0x135),'message':_0x4047ce(0x13e)+_0x58bfe5[_0x4047ce(0x147)]+_0x4047ce(0x146)}),!_0x58bfe5['body']&&_0x25aae1[_0x4047ce(0x142)]({'level':_0x4047ce(0x13d),'message':'Skill\x20\x22'+_0x58bfe5['name']+_0x4047ce(0x137)}),!/^[a-z0-9-]+$/['test'](_0x58bfe5['name'])&&_0x25aae1[_0x4047ce(0x142)]({'level':_0x4047ce(0x13d),'message':_0x4047ce(0x13e)+_0x58bfe5[_0x4047ce(0x147)]+_0x4047ce(0x141)}),_0x25aae1;}function _0x5c44(_0x413204,_0x59a5bf){_0x413204=_0x413204-(0x1582+-0xc70*-0x1+-0x20be);const _0x5bc87c=_0x294a();let _0x296701=_0x5bc87c[_0x413204];return _0x296701;}function _0x294a(){const _0x59c0c8=['Skill\x20\x22','1802892rrmCXx','8249520esMppj','\x22\x20should\x20use\x20lowercase\x20letters,\x20numbers,\x20and\x20hyphens.','push','96299McyHQW','9318708XtLgrh','410209bVAAPH','\x22\x20is\x20missing\x20frontmatter\x20description.','name','58120aRNIIN','error','2nxiOib','\x22\x20has\x20empty\x20SKILL.md\x20body.','6048559tUrhqn','10BhyvoV','description','4GpaPht','522tzObSu','warning'];_0x294a=function(){return _0x59c0c8;};return _0x294a();}
@@ -1 +1 @@
1
- function _0x4e46(_0x355822,_0x20359f){_0x355822=_0x355822-(-0x82b+0x1*-0xea3+0x173d);const _0x52014c=_0x20ab();let _0x42b501=_0x52014c[_0x355822];return _0x42b501;}(function(_0x3de6f3,_0x10c9ed){const _0x3a0b78=_0x4e46,_0x588865=_0x3de6f3();while(!![]){try{const _0x189210=-parseInt(_0x3a0b78(0x82))/(0x1*-0x8cb+0x257b*-0x1+0x435*0xb)*(parseInt(_0x3a0b78(0x71))/(-0x73c+-0x11f+-0x85d*-0x1))+-parseInt(_0x3a0b78(0x7e))/(-0x3*-0x16e+-0x3*-0xc5f+-0x3*0xdcc)+parseInt(_0x3a0b78(0x79))/(-0x3c4*0x3+0x15*-0xe+0x91*0x16)+-parseInt(_0x3a0b78(0x7b))/(-0x48d+-0x239*-0x7+-0xafd)+-parseInt(_0x3a0b78(0x77))/(0x21df+0x11b*0x2+-0xb5*0x33)*(parseInt(_0x3a0b78(0x78))/(-0x17*0x58+-0x217*0x7+0x5a4*0x4))+parseInt(_0x3a0b78(0x74))/(0x1*0x20ab+0xd*-0x15e+-0xedd)+parseInt(_0x3a0b78(0x75))/(0x1e89+0x359*-0x2+0x22a*-0xb);if(_0x189210===_0x10c9ed)break;else _0x588865['push'](_0x588865['shift']());}catch(_0x1bf7a8){_0x588865['push'](_0x588865['shift']());}}}(_0x20ab,-0x53fc*-0x1+-0x5daa+0x42bda));export function parseFrontmatter(_0x33c4a1){const _0x1d42c7=_0x4e46,_0x465edb=_0x33c4a1['replace'](/^\uFEFF/,'')[_0x1d42c7(0x80)](/\r\n/g,'\x0a');if(!_0x465edb[_0x1d42c7(0x7a)](_0x1d42c7(0x70)))return{'attributes':{},'body':_0x465edb};const _0x5996d4=_0x465edb[_0x1d42c7(0x7c)]('\x0a---\x0a',0x1*-0x2243+0x3fc+0x1e4b);if(_0x5996d4===-(-0x1f71+-0x1e91+0xc67*0x5))return{'attributes':{},'body':_0x465edb};const _0x7f07da=_0x465edb[_0x1d42c7(0x7f)](-0x93*0x10+-0x1b66+0x249a,_0x5996d4),_0x30ad4f=_0x465edb[_0x1d42c7(0x7f)](_0x5996d4+(-0x18db+0x1a18+0x27*-0x8)),_0x194a23={};for(const _0x599dac of _0x7f07da['split']('\x0a')){const _0x539bb5=_0x599dac[_0x1d42c7(0x81)]();if(!_0x539bb5||_0x539bb5['startsWith']('#'))continue;const _0x83f224=_0x539bb5[_0x1d42c7(0x7c)](':');if(_0x83f224<=0x5e7*-0x6+0x161*-0x6+-0x6*-0x748)continue;const _0x39ecba=_0x539bb5[_0x1d42c7(0x7f)](-0xcfa+-0xc*0x338+0x339a,_0x83f224)[_0x1d42c7(0x81)]();let _0x48a203=_0x539bb5[_0x1d42c7(0x7f)](_0x83f224+(0x1a5a*-0x1+-0x1d13+0x376e))[_0x1d42c7(0x81)]();_0x48a203=stripQuotes(_0x48a203),_0x194a23[_0x39ecba]=_0x48a203;}return{'attributes':_0x194a23,'body':_0x30ad4f};}export function stringifyFrontmatter(_0x9509ef,_0x4fa06f){const _0x4b39eb=_0x4e46,_0x695e09=Object[_0x4b39eb(0x72)](_0x9509ef)['map'](([_0x548011,_0x2f8583])=>{const _0xd61263=_0x2f8583['replace'](/"/g,'\x5c\x22');return _0x548011+':\x20\x22'+_0xd61263+'\x22';});return _0x4b39eb(0x70)+_0x695e09[_0x4b39eb(0x6f)]('\x0a')+_0x4b39eb(0x76)+_0x4fa06f[_0x4b39eb(0x7d)]()+'\x0a';}function _0x20ab(){const _0x2c154f=['\x0a---\x0a\x0a','1157154mScjsw','7AoznHX','1878360fcNhIP','startsWith','1488940LKLIQe','indexOf','trimEnd','1161870akgGFY','slice','replace','trim','5lhmAXH','join','---\x0a','158042FquyOI','entries','endsWith','2252856PGSPRy','7134633VlKMWg'];_0x20ab=function(){return _0x2c154f;};return _0x20ab();}function stripQuotes(_0x21b2f6){const _0x35187a=_0x4e46;if(_0x21b2f6[_0x35187a(0x7a)]('\x22')&&_0x21b2f6[_0x35187a(0x73)]('\x22')||_0x21b2f6[_0x35187a(0x7a)]('\x27')&&_0x21b2f6[_0x35187a(0x73)]('\x27'))return _0x21b2f6[_0x35187a(0x7f)](-0xe68+0x247a+0x15*-0x10d,-(-0xe29+0xa*0x3ce+0x17e2*-0x1));return _0x21b2f6;}
1
+ function _0x3f15(_0x2d3bf1,_0x5a51de){_0x2d3bf1=_0x2d3bf1-(0x8*0x314+0x2*-0x1321+-0x5*-0x305);const _0x460221=_0x570a();let _0x29d2b1=_0x460221[_0x2d3bf1];return _0x29d2b1;}function _0x570a(){const _0x1c3eb2=['\x0a---\x0a\x0a','map','2717056YzmRTc','4872wPobBk','join','trim','entries','---\x0a','2132060zpSEEP','528638IgizyI',':\x20\x22','split','indexOf','\x0a---\x0a','startsWith','endsWith','slice','26KzRfca','17496fWXzGW','replace','1218216QsFqwA','4552359McmBdZ','8256oGZSEL'];_0x570a=function(){return _0x1c3eb2;};return _0x570a();}(function(_0x513a8a,_0xb16fe8){const _0x3c5cc3=_0x3f15,_0x570e0d=_0x513a8a();while(!![]){try{const _0x92913f=-parseInt(_0x3c5cc3(0x18a))/(-0x16ae+0x100e+-0x6a1*-0x1)+parseInt(_0x3c5cc3(0x17b))/(0x238a+0xd31+0x1*-0x30b9)*(-parseInt(_0x3c5cc3(0x184))/(0x10e9*0x1+0x1*-0x24ce+0x13e8))+-parseInt(_0x3c5cc3(0x183))/(0xe*0x61+-0x18d7+0x138d)+parseInt(_0x3c5cc3(0x189))/(-0xf4*0x27+-0x184e*-0x1+0xce3)+-parseInt(_0x3c5cc3(0x17e))/(0x2439+-0x7d*-0x4+-0x2627)+-parseInt(_0x3c5cc3(0x17f))/(-0x43f*0x4+-0x2703+0x3806*0x1)+parseInt(_0x3c5cc3(0x180))/(-0x159b+0x2*-0xba1+-0xef7*-0x3)*(parseInt(_0x3c5cc3(0x17c))/(0x527*0x7+-0x23dd+-0x2b*0x1));if(_0x92913f===_0xb16fe8)break;else _0x570e0d['push'](_0x570e0d['shift']());}catch(_0x28c2b7){_0x570e0d['push'](_0x570e0d['shift']());}}}(_0x570a,-0x284b6*0x2+-0x4ae37+0xf0fbc*0x1));export function parseFrontmatter(_0x21f03f){const _0x1375ca=_0x3f15,_0x14f024=_0x21f03f[_0x1375ca(0x17d)](/^\uFEFF/,'')[_0x1375ca(0x17d)](/\r\n/g,'\x0a');if(!_0x14f024[_0x1375ca(0x178)](_0x1375ca(0x188)))return{'attributes':{},'body':_0x14f024};const _0x9b8703=_0x14f024[_0x1375ca(0x18d)](_0x1375ca(0x177),-0x925*-0x2+-0x4ce+0x8*-0x1af);if(_0x9b8703===-(-0x257e+0x2394+0x1eb))return{'attributes':{},'body':_0x14f024};const _0x38309a=_0x14f024[_0x1375ca(0x17a)](0x10*-0x6a+-0x2ce*0xb+-0x2*-0x12bf,_0x9b8703),_0x30d955=_0x14f024[_0x1375ca(0x17a)](_0x9b8703+(0x1bb3+-0x1ffa*0x1+0x44c)),_0x4ba12f={};for(const _0x56b908 of _0x38309a[_0x1375ca(0x18c)]('\x0a')){const _0x9f38ff=_0x56b908['trim']();if(!_0x9f38ff||_0x9f38ff[_0x1375ca(0x178)]('#'))continue;const _0x6e7b25=_0x9f38ff[_0x1375ca(0x18d)](':');if(_0x6e7b25<=0x5*0x2b8+-0x7ee+-0x5aa)continue;const _0x24d902=_0x9f38ff[_0x1375ca(0x17a)](0x1*-0x1735+-0x14a6+0x2bdb,_0x6e7b25)[_0x1375ca(0x186)]();let _0x5dc71c=_0x9f38ff[_0x1375ca(0x17a)](_0x6e7b25+(-0xcbe+-0x9e*0x29+0x260d))[_0x1375ca(0x186)]();_0x5dc71c=stripQuotes(_0x5dc71c),_0x4ba12f[_0x24d902]=_0x5dc71c;}return{'attributes':_0x4ba12f,'body':_0x30d955};}export function stringifyFrontmatter(_0x3aa611,_0x1950c4){const _0x23eb39=_0x3f15,_0x460550=Object[_0x23eb39(0x187)](_0x3aa611)[_0x23eb39(0x182)](([_0x26682b,_0x3a5677])=>{const _0x15d295=_0x23eb39,_0x169428=_0x3a5677['replace'](/"/g,'\x5c\x22');return _0x26682b+_0x15d295(0x18b)+_0x169428+'\x22';});return _0x23eb39(0x188)+_0x460550[_0x23eb39(0x185)]('\x0a')+_0x23eb39(0x181)+_0x1950c4['trimEnd']()+'\x0a';}function stripQuotes(_0x596e88){const _0xa4d109=_0x3f15;if(_0x596e88[_0xa4d109(0x178)]('\x22')&&_0x596e88[_0xa4d109(0x179)]('\x22')||_0x596e88['startsWith']('\x27')&&_0x596e88['endsWith']('\x27'))return _0x596e88[_0xa4d109(0x17a)](0x1*-0xe78+-0x2053+0x2ecc,-(-0x8*0x2b7+0x1041+0x578));return _0x596e88;}
package/dist/utils/fs.js CHANGED
@@ -1 +1 @@
1
- (function(_0x6aa5d2,_0x45c489){const _0x41ada9=_0x567a,_0x37ea2a=_0x6aa5d2();while(!![]){try{const _0x467499=parseInt(_0x41ada9(0x83))/(0x6a0+-0x1e2d+0x178e)*(-parseInt(_0x41ada9(0x89))/(-0xcf9*-0x1+-0x1f5b+0x1264))+-parseInt(_0x41ada9(0x82))/(0x419+0x1*0xf9e+-0x34*0x61)+-parseInt(_0x41ada9(0x87))/(0x1*0x841+-0x1*0x1b0f+0x12d2)+-parseInt(_0x41ada9(0x8d))/(-0x20f6+-0xbc2+0x2cbd)+parseInt(_0x41ada9(0x86))/(-0x1*-0xc68+-0x1*0xa2b+-0x237)*(parseInt(_0x41ada9(0x85))/(0x291*0x6+-0x123b*-0x1+0x1fa*-0x11))+-parseInt(_0x41ada9(0x8c))/(0x2*0x4a5+-0xb*-0x34f+-0x2da7)+parseInt(_0x41ada9(0x8a))/(-0x1*-0xbe4+-0x829+-0x3b2);if(_0x467499===_0x45c489)break;else _0x37ea2a['push'](_0x37ea2a['shift']());}catch(_0x4efe05){_0x37ea2a['push'](_0x37ea2a['shift']());}}}(_0x3b16,0x343d*0x5+0x2*-0x5f8e2+0x1*0x1456c0));function _0x3b16(){const _0x2811a9=['896642asfNhG','29790198kCyLNc','name','300560kcBXvK','3837855UvMiVb','filter','2039448hDSHMw','1AlQytN','isDirectory','245kjudjB','14646SZLZvw','3380696TzhOqt','join'];_0x3b16=function(){return _0x2811a9;};return _0x3b16();}import{mkdir,readdir,rm,stat,copyFile}from'node:fs/promises';import _0x587c03 from'node:path';function _0x567a(_0x22bd6a,_0x5229b3){_0x22bd6a=_0x22bd6a-(0x238d*0x1+0x5*0x28d+-0x2fcc);const _0x15cd06=_0x3b16();let _0x587c03=_0x15cd06[_0x22bd6a];return _0x587c03;}export async function ensureDir(_0x15b30b){await mkdir(_0x15b30b,{'recursive':!![]});}export async function pathExists(_0x166fe4){try{return await stat(_0x166fe4),!![];}catch{return![];}}export async function emptyDir(_0x545df4){await rm(_0x545df4,{'recursive':!![],'force':!![]}),await mkdir(_0x545df4,{'recursive':!![]});}export async function copyDir(_0x2f3b06,_0x112e23){const _0x5460a4=_0x567a;await ensureDir(_0x112e23);const _0x25f88d=await readdir(_0x2f3b06,{'withFileTypes':!![]});for(const _0x515b68 of _0x25f88d){const _0x48d592=_0x587c03[_0x5460a4(0x88)](_0x2f3b06,_0x515b68[_0x5460a4(0x8b)]),_0x553dd1=_0x587c03[_0x5460a4(0x88)](_0x112e23,_0x515b68[_0x5460a4(0x8b)]);if(_0x515b68[_0x5460a4(0x84)]()){await copyDir(_0x48d592,_0x553dd1);continue;}await copyFile(_0x48d592,_0x553dd1);}}export async function listDirs(_0x23e641){const _0x3f818d=_0x567a;if(!await pathExists(_0x23e641))return[];const _0x281a00=await readdir(_0x23e641,{'withFileTypes':!![]});return _0x281a00[_0x3f818d(0x8e)](_0xbaa4d3=>_0xbaa4d3[_0x3f818d(0x84)]())['map'](_0x4557bf=>_0x4557bf['name']);}
1
+ (function(_0x4dca77,_0x1aac88){const _0xc3707b=_0xa974,_0x256879=_0x4dca77();while(!![]){try{const _0x29bfed=parseInt(_0xc3707b(0x6f))/(0x61f*-0x3+0x9e7+-0xb*-0xc5)+-parseInt(_0xc3707b(0x73))/(-0xcec*0x2+-0x1213*0x2+-0x200*-0x1f)+-parseInt(_0xc3707b(0x77))/(0x271+0x1*0xefd+0x1*-0x116b)+-parseInt(_0xc3707b(0x70))/(-0x630+-0x7ca+-0x255*-0x6)*(-parseInt(_0xc3707b(0x71))/(-0x1f*0x15+-0x240f*0x1+0x269f))+parseInt(_0xc3707b(0x72))/(-0x1*-0x11fb+0x217a+0x273*-0x15)*(parseInt(_0xc3707b(0x6c))/(-0x2466+-0x7*-0x539+-0x22))+parseInt(_0xc3707b(0x75))/(0x3*-0x41e+-0x641*-0x6+-0x1924)+parseInt(_0xc3707b(0x74))/(0x3ad*0x1+-0x11*-0x81+-0xc35)*(parseInt(_0xc3707b(0x6e))/(-0x262d+0x1ae4+0xb53));if(_0x29bfed===_0x1aac88)break;else _0x256879['push'](_0x256879['shift']());}catch(_0x4331f1){_0x256879['push'](_0x256879['shift']());}}}(_0x3972,-0x25*0x4525+-0x9bca0+0x4*0x71b6b));function _0x3972(){const _0x1ccc2a=['map','join','14HhxlDd','filter','10pWfmCV','517239kPTNex','3403308LuiRBI','5AtFzcB','1149420uVwlsC','2074904OOZsKZ','591687Zffewf','3104640TUjKmc','name','1792626UEjVVW'];_0x3972=function(){return _0x1ccc2a;};return _0x3972();}import{mkdir,readdir,rm,stat,copyFile}from'node:fs/promises';import _0x57bfe5 from'node:path';export async function ensureDir(_0x184e9f){await mkdir(_0x184e9f,{'recursive':!![]});}export async function pathExists(_0x4aa69f){try{return await stat(_0x4aa69f),!![];}catch{return![];}}function _0xa974(_0x3bf9fa,_0x384061){_0x3bf9fa=_0x3bf9fa-(-0x128c*-0x2+0xf2*0x22+-0x44d0);const _0x3c7c37=_0x3972();let _0x57bfe5=_0x3c7c37[_0x3bf9fa];return _0x57bfe5;}export async function emptyDir(_0x2d4ac8){await rm(_0x2d4ac8,{'recursive':!![],'force':!![]}),await mkdir(_0x2d4ac8,{'recursive':!![]});}export async function copyDir(_0x484f29,_0x44acf8){const _0x487039=_0xa974;await ensureDir(_0x44acf8);const _0x562c66=await readdir(_0x484f29,{'withFileTypes':!![]});for(const _0x375977 of _0x562c66){const _0x42eec9=_0x57bfe5['join'](_0x484f29,_0x375977[_0x487039(0x76)]),_0x427ca8=_0x57bfe5[_0x487039(0x79)](_0x44acf8,_0x375977[_0x487039(0x76)]);if(_0x375977['isDirectory']()){await copyDir(_0x42eec9,_0x427ca8);continue;}await copyFile(_0x42eec9,_0x427ca8);}}export async function listDirs(_0x38228f){const _0x5bd42a=_0xa974;if(!await pathExists(_0x38228f))return[];const _0x49f294=await readdir(_0x38228f,{'withFileTypes':!![]});return _0x49f294[_0x5bd42a(0x6d)](_0x1d80c0=>_0x1d80c0['isDirectory']())[_0x5bd42a(0x78)](_0x37ebb2=>_0x37ebb2[_0x5bd42a(0x76)]);}
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "cdspec",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "author": "liyanwei",
5
- "description": "CDSpec CLI for skill sync and task split/archive workflow",
5
+ "description": "CDSpec CLI for standardized skill installation and command generation",
6
6
  "type": "module",
7
7
  "bin": {
8
8
  "cdspec": "dist/cli.js"