gl-life-claude-zen 1.3.3 → 1.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/README.md +57 -25
  2. package/bin/create-gl-life-claude.js +4 -5
  3. package/dist/hooks/auto-format.js +1 -1
  4. package/dist/hooks/check-pending-reviews.js +1 -1
  5. package/dist/hooks/complete-task.js +1 -1
  6. package/dist/hooks/detect-pending-reviews.js +1 -1
  7. package/dist/hooks/enforce-hard-requirements.js +1 -1
  8. package/dist/hooks/enforce-migration-workflow.js +1 -1
  9. package/dist/hooks/enforce-structured-development.js +1 -1
  10. package/dist/hooks/enforce-test-pyramid.js +1 -1
  11. package/dist/hooks/init-task-tracker.js +1 -1
  12. package/dist/hooks/performance-cache.js +1 -1
  13. package/dist/hooks/prevent-read-bypass.js +1 -1
  14. package/dist/hooks/start-task.js +1 -1
  15. package/dist/hooks/task-status.js +1 -1
  16. package/dist/hooks/validate-component-contract.js +1 -1
  17. package/dist/hooks/validate-database-changes.js +1 -1
  18. package/dist/hooks/validate-e2e-coverage.js +1 -1
  19. package/dist/hooks/validate-git-workflow.js +1 -1
  20. package/dist/hooks/validate-integration-site.js +1 -1
  21. package/dist/hooks/validate-migration-impact.js +1 -1
  22. package/dist/hooks/validate-task-completion.js +1 -1
  23. package/dist/hooks/validate-test-quality.js +1 -1
  24. package/dist/hooks/validate-test-results.js +1 -1
  25. package/dist/hooks/validate-ui-integration.js +1 -1
  26. package/dist/hooks/validate-ui-runtime.js +1 -1
  27. package/dist/hooks/validate-ui-syntax.js +1 -1
  28. package/dist/hooks/validate-ui-visual-native.js +1 -1
  29. package/dist/hooks/validate-ui-visual.js +1 -1
  30. package/dist/hooks/validate-visual-regression.js +1 -1
  31. package/dist/scripts/help.js +1 -1
  32. package/dist/scripts/plan-amend.js +1 -1
  33. package/dist/scripts/plan-create.js +1 -1
  34. package/dist/scripts/plan-generate.js +2 -0
  35. package/dist/scripts/plan-help.js +1 -1
  36. package/dist/scripts/plan-init.js +1 -1
  37. package/dist/scripts/plan-manager.js +1 -1
  38. package/dist/scripts/pre-publish-checklist.js +1 -1
  39. package/dist/scripts/production-test.js +1 -1
  40. package/dist/scripts/profile-hooks.js +1 -1
  41. package/dist/scripts/setup-git-hooks.js +1 -1
  42. package/dist/scripts/task-done.js +1 -1
  43. package/dist/scripts/task-merge.js +1 -1
  44. package/dist/scripts/task-next.js +1 -1
  45. package/dist/scripts/task-start.js +1 -1
  46. package/dist/scripts/task-status.js +1 -1
  47. package/dist/scripts/verify-hooks.js +1 -1
  48. package/package.json +1 -1
  49. package/templates/package.json +1 -0
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- var _0x3c5e0=_0x38ee;function _0x3293(){var _0x1e82d5=['Dynamic\x20require\x20of\x20\x22','constructor','.git','writeFileSync','jtgGa','exit','\x20\x20git\x20commit\x20--no-verify\x0a','2693308MpQKMc','existsSync','1811376LNUaHl','2608980YlpHWH','📋\x20Setting\x20up\x20git\x20hooks...\x0a','apply','\x20\x20pre-commit\x20\x20-\x20Validates\x20linting,\x20formatting,\x20tests\x20before\x20commit','607684RSUFaq','log','\x20git\x20hooks!\x0a','To\x20uninstall\x20hooks:','entries','Hooks\x20installed:','toString','\x0a🎉\x20Successfully\x20installed\x20','(((.+)+)+)+$','❌\x20Error:\x20Not\x20a\x20git\x20repository','platform','chmodSync','7267614kzqbLK','⚠️\x20\x20','TkUUh','search','IsaBs','6363800hBBDnv','\x20\x20commit-msg\x20\x20-\x20Enforces\x20commit\x20message\x20format\x20[TASK-XXX]\x20or\x20feat:/fix:','73650VtLfXn','yRAMC','error','path','64Nvvzzn','#!/bin/sh\x0a#\x20Commit-msg\x20hook:\x20Validate\x20commit\x20message\x20format\x0a\x0aCOMMIT_MSG_FILE=$1\x0aCOMMIT_MSG=$(cat\x20\x22$COMMIT_MSG_FILE\x22)\x0a\x0a#\x20Check\x20if\x20commit\x20message\x20follows\x20format:\x20[TASK-XXX]\x20Description\x0a#\x20or\x20starts\x20with\x20common\x20prefixes\x20like\x20feat:,\x20fix:,\x20docs:,\x20etc.\x0aif\x20echo\x20\x22$COMMIT_MSG\x22\x20|\x20grep\x20-qE\x20\x27^\x5c[TASK-[0-9]{3}\x5c]|^(feat|fix|docs|style|refactor|test|chore|perf|ci|build|revert):\x27;\x20then\x0a\x20\x20exit\x200\x0afi\x0a\x0a#\x20Allow\x20merge\x20commits\x0aif\x20echo\x20\x22$COMMIT_MSG\x22\x20|\x20grep\x20-qE\x20\x27^Merge\x27;\x20then\x0a\x20\x20exit\x200\x0afi\x0a\x0aecho\x20\x22❌\x20ERROR:\x20Invalid\x20commit\x20message\x20format\x22\x0aecho\x20\x22\x22\x0aecho\x20\x22Commit\x20message\x20must\x20start\x20with:\x22\x0aecho\x20\x22\x20\x20[TASK-XXX]\x20Description\x20\x20(for\x20task-related\x20commits)\x22\x0aecho\x20\x22\x20\x20feat:\x20Description\x20\x20\x20\x20\x20\x20\x20(for\x20new\x20features)\x22\x0aecho\x20\x22\x20\x20fix:\x20Description\x20\x20\x20\x20\x20\x20\x20\x20(for\x20bug\x20fixes)\x22\x0aecho\x20\x22\x20\x20docs:\x20Description\x20\x20\x20\x20\x20\x20\x20(for\x20documentation)\x22\x0aecho\x20\x22\x22\x0aecho\x20\x22Your\x20message:\x20$COMMIT_MSG\x22\x0aecho\x20\x22\x22\x0aexit\x201\x0a','.backup','\x20hook\x20already\x20exists\x20-\x20backing\x20up\x20to\x20','\x22\x20is\x20not\x20supported','Run\x20\x22git\x20init\x22\x20first','✅\x20Installed\x20','To\x20bypass\x20hooks\x20(NOT\x20RECOMMENDED):','copyFileSync','recursive','OqOCf','\x20hook','\x20\x20pre-push\x20\x20\x20\x20-\x20Prevents\x20pushing\x20to\x20main,\x20ensures\x20tests\x20pass\x0a','mkdirSync'];_0x3293=function(){return _0x1e82d5;};return _0x3293();}(function(_0x3f7ae4,_0xa03c8e){var _0x4f51c8=_0x38ee,_0x443ed0=_0x3f7ae4();while(!![]){try{var _0x312cde=parseInt(_0x4f51c8(0x178))/0x1+-parseInt(_0x4f51c8(0x160))/0x2+-parseInt(_0x4f51c8(0x161))/0x3+-parseInt(_0x4f51c8(0x191))/0x4+parseInt(_0x4f51c8(0x176))/0x5+parseInt(_0x4f51c8(0x171))/0x6+parseInt(_0x4f51c8(0x165))/0x7*(parseInt(_0x4f51c8(0x17c))/0x8);if(_0x312cde===_0xa03c8e)break;else _0x443ed0['push'](_0x443ed0['shift']());}catch(_0x54a4c2){_0x443ed0['push'](_0x443ed0['shift']());}}}(_0x3293,0xc42ac));var _0x1bb0c3=(function(){var _0x360352=!![];return function(_0x633c7a,_0xa58141){var _0x3737cc=_0x360352?function(){var _0x33f225=_0x38ee;if('OqOCf'!==_0x33f225(0x186)){var _0x5c0e55=_0x1cc69e?function(){if(_0x3b7ffa){var _0x785343=_0x3abc50['apply'](_0x184b44,arguments);return _0x85ff70=null,_0x785343;}}:function(){};return _0xe70ca8=![],_0x5c0e55;}else{if(_0xa58141){var _0x788575=_0xa58141[_0x33f225(0x163)](_0x633c7a,arguments);return _0xa58141=null,_0x788575;}}}:function(){};return _0x360352=![],_0x3737cc;};}()),_0x39f3f4=_0x1bb0c3(this,function(){var _0x1e8773=_0x38ee,_0x362e52={};_0x362e52[_0x1e8773(0x175)]=_0x1e8773(0x16d);var _0x5cfa34=_0x362e52;return _0x39f3f4[_0x1e8773(0x16b)]()['search'](_0x1e8773(0x16d))[_0x1e8773(0x16b)]()[_0x1e8773(0x18b)](_0x39f3f4)[_0x1e8773(0x174)](_0x5cfa34[_0x1e8773(0x175)]);});_0x39f3f4();var n=(_0x3846c5=>typeof require<'u'?require:typeof Proxy<'u'?new Proxy(_0x3846c5,{'get':(_0x2969fb,_0x260a9e)=>(typeof require<'u'?require:_0x2969fb)[_0x260a9e]}):_0x3846c5)(function(_0x4acff4){var _0x422115=_0x38ee,_0x3ec2a7={};_0x3ec2a7[_0x422115(0x173)]=function(_0x2158ba,_0x2c55f7){return _0x2158ba<_0x2c55f7;},_0x3ec2a7[_0x422115(0x18e)]=function(_0x4e20b7,_0x39f414){return _0x4e20b7+_0x39f414;},_0x3ec2a7[_0x422115(0x179)]=_0x422115(0x18a),_0x3ec2a7['HnSzU']=_0x422115(0x180);var _0x4a4db5=_0x3ec2a7;if(_0x4a4db5['TkUUh'](typeof require,'u'))return require[_0x422115(0x163)](this,arguments);throw Error(_0x4a4db5[_0x422115(0x18e)](_0x4a4db5[_0x422115(0x18e)](_0x4a4db5[_0x422115(0x179)],_0x4acff4),_0x4a4db5['HnSzU']));}),t=n('fs'),r=n(_0x3c5e0(0x17b)),s='.git/hooks';t[_0x3c5e0(0x15f)](_0x3c5e0(0x18c))||(console['error'](_0x3c5e0(0x16e)),console[_0x3c5e0(0x17a)](_0x3c5e0(0x181)),process['exit'](0x1));var _0x4b1a2d={};_0x4b1a2d[_0x3c5e0(0x185)]=!0x0,t[_0x3c5e0(0x15f)](s)||t[_0x3c5e0(0x189)](s,_0x4b1a2d),console[_0x3c5e0(0x166)](_0x3c5e0(0x162));var a='#!/bin/sh\x0a#\x20Pre-commit\x20hook:\x20Run\x20tests\x20and\x20linting\x20before\x20commit\x0a\x0aecho\x20\x22🔍\x20Running\x20pre-commit\x20checks...\x22\x0a\x0a#\x20Check\x20if\x20we\x27re\x20on\x20main\x20branch\x0aBRANCH=$(git\x20rev-parse\x20--abbrev-ref\x20HEAD)\x0aif\x20[\x20\x22$BRANCH\x22\x20=\x20\x22main\x22\x20]\x20||\x20[\x20\x22$BRANCH\x22\x20=\x20\x22master\x22\x20];\x20then\x0a\x20\x20echo\x20\x22❌\x20ERROR:\x20Cannot\x20commit\x20directly\x20to\x20$BRANCH\x20branch\x22\x0a\x20\x20echo\x20\x22Create\x20a\x20feature\x20branch\x20first:\x22\x0a\x20\x20echo\x20\x22\x20\x20git\x20checkout\x20-b\x20task/TASK-XXX-description\x22\x0a\x20\x20exit\x201\x0afi\x0a\x0a#\x20Run\x20linter\x20if\x20package.json\x20has\x20lint\x20script\x0aif\x20grep\x20-q\x20\x27\x22lint\x22\x27\x20package.json\x202>/dev/null;\x20then\x0a\x20\x20echo\x20\x22Running\x20linter...\x22\x0a\x20\x20npm\x20run\x20lint\x20--silent\x0a\x20\x20if\x20[\x20$?\x20-ne\x200\x20];\x20then\x0a\x20\x20\x20\x20echo\x20\x22❌\x20Linting\x20failed.\x20Fix\x20errors\x20before\x20committing.\x22\x0a\x20\x20\x20\x20exit\x201\x0a\x20\x20fi\x0afi\x0a\x0a#\x20Run\x20formatter\x20check\x20if\x20available\x0aif\x20grep\x20-q\x20\x27\x22format:check\x22\x27\x20package.json\x202>/dev/null;\x20then\x0a\x20\x20echo\x20\x22Checking\x20formatting...\x22\x0a\x20\x20npm\x20run\x20format:check\x20--silent\x0a\x20\x20if\x20[\x20$?\x20-ne\x200\x20];\x20then\x0a\x20\x20\x20\x20echo\x20\x22❌\x20Formatting\x20check\x20failed.\x20Run\x20\x27npm\x20run\x20format\x27\x20to\x20fix.\x22\x0a\x20\x20\x20\x20exit\x201\x0a\x20\x20fi\x0afi\x0a\x0a#\x20Run\x20tests\x0aif\x20grep\x20-q\x20\x27\x22test\x22\x27\x20package.json\x202>/dev/null;\x20then\x0a\x20\x20echo\x20\x22Running\x20tests...\x22\x0a\x20\x20npm\x20test\x20--silent\x0a\x20\x20if\x20[\x20$?\x20-ne\x200\x20];\x20then\x0a\x20\x20\x20\x20echo\x20\x22❌\x20Tests\x20failed.\x20Fix\x20failing\x20tests\x20before\x20committing.\x22\x0a\x20\x20\x20\x20exit\x201\x0a\x20\x20fi\x0afi\x0a\x0aecho\x20\x22✅\x20Pre-commit\x20checks\x20passed!\x22\x0aexit\x200\x0a',h=_0x3c5e0(0x17d),m='#!/bin/sh\x0a#\x20Pre-push\x20hook:\x20Final\x20validation\x20before\x20push\x0a\x0aecho\x20\x22🚀\x20Running\x20pre-push\x20checks...\x22\x0a\x0a#\x20Check\x20if\x20we\x27re\x20on\x20main\x20branch\x0aBRANCH=$(git\x20rev-parse\x20--abbrev-ref\x20HEAD)\x0aif\x20[\x20\x22$BRANCH\x22\x20=\x20\x22main\x22\x20]\x20||\x20[\x20\x22$BRANCH\x22\x20=\x20\x22master\x22\x20];\x20then\x0a\x20\x20echo\x20\x22❌\x20ERROR:\x20Cannot\x20push\x20directly\x20to\x20$BRANCH\x20branch\x22\x0a\x20\x20echo\x20\x22Create\x20a\x20feature\x20branch\x20first\x22\x0a\x20\x20exit\x201\x0afi\x0a\x0a#\x20Check\x20for\x20uncommitted\x20changes\x0aif\x20!\x20git\x20diff-index\x20--quiet\x20HEAD\x20--;\x20then\x0a\x20\x20echo\x20\x22❌\x20ERROR:\x20You\x20have\x20uncommitted\x20changes\x22\x0a\x20\x20echo\x20\x22Commit\x20or\x20stash\x20changes\x20before\x20pushing\x22\x0a\x20\x20exit\x201\x0afi\x0a\x0a#\x20Run\x20full\x20test\x20suite\x0aif\x20grep\x20-q\x20\x27\x22test\x22\x27\x20package.json\x202>/dev/null;\x20then\x0a\x20\x20echo\x20\x22Running\x20full\x20test\x20suite...\x22\x0a\x20\x20npm\x20test\x20--silent\x0a\x20\x20if\x20[\x20$?\x20-ne\x200\x20];\x20then\x0a\x20\x20\x20\x20echo\x20\x22❌\x20Tests\x20failed.\x20Fix\x20failing\x20tests\x20before\x20pushing.\x22\x0a\x20\x20\x20\x20exit\x201\x0a\x20\x20fi\x0afi\x0a\x0aecho\x20\x22✅\x20Pre-push\x20checks\x20passed!\x22\x0aexit\x200\x0a',f={'pre-commit':a,'commit-msg':h,'pre-push':m},c=0x0;for(let [e,i]of Object[_0x3c5e0(0x169)](f)){let o=r['join'](s,e);var _0x4c58d3={};_0x4c58d3['mode']=0x1ed,(t[_0x3c5e0(0x15f)](o)&&(console[_0x3c5e0(0x166)](_0x3c5e0(0x172)+e+_0x3c5e0(0x17f)+e+_0x3c5e0(0x17e)),t[_0x3c5e0(0x184)](o,o+_0x3c5e0(0x17e))),t[_0x3c5e0(0x18d)](o,i,_0x4c58d3),process[_0x3c5e0(0x16f)]!=='win32'&&t[_0x3c5e0(0x170)](o,0x1ed),console['log'](_0x3c5e0(0x182)+e+_0x3c5e0(0x187)),c++);}function _0x38ee(_0x1dd6e1,_0x8cd9){_0x1dd6e1=_0x1dd6e1-0x15f;var _0x1b4562=_0x3293();var _0x39f3f4=_0x1b4562[_0x1dd6e1];return _0x39f3f4;}console[_0x3c5e0(0x166)](_0x3c5e0(0x16c)+c+_0x3c5e0(0x167)),console[_0x3c5e0(0x166)](_0x3c5e0(0x16a)),console[_0x3c5e0(0x166)](_0x3c5e0(0x164)),console[_0x3c5e0(0x166)](_0x3c5e0(0x177)),console[_0x3c5e0(0x166)](_0x3c5e0(0x188)),console[_0x3c5e0(0x166)](_0x3c5e0(0x183)),console[_0x3c5e0(0x166)](_0x3c5e0(0x190)),console[_0x3c5e0(0x166)](_0x3c5e0(0x168)),console[_0x3c5e0(0x166)]('\x20\x20rm\x20.git/hooks/pre-commit\x20.git/hooks/commit-msg\x20.git/hooks/pre-push\x0a'),process[_0x3c5e0(0x18f)](0x0);
2
+ var _0x21a9e5=_0x5339;(function(_0x2ad9a9,_0x3b5f76){var _0x2e54e2=_0x5339,_0x388e5b=_0x2ad9a9();while(!![]){try{var _0x1f4508=parseInt(_0x2e54e2(0x149))/0x1+parseInt(_0x2e54e2(0x154))/0x2+-parseInt(_0x2e54e2(0x15e))/0x3+-parseInt(_0x2e54e2(0x159))/0x4+parseInt(_0x2e54e2(0x141))/0x5+-parseInt(_0x2e54e2(0x14f))/0x6+-parseInt(_0x2e54e2(0x143))/0x7*(-parseInt(_0x2e54e2(0x139))/0x8);if(_0x1f4508===_0x3b5f76)break;else _0x388e5b['push'](_0x388e5b['shift']());}catch(_0x520547){_0x388e5b['push'](_0x388e5b['shift']());}}}(_0x3b03,0x99997));function _0x3b03(){var _0x48fc4f=['emPnT','.git/hooks','❌\x20Error:\x20Not\x20a\x20git\x20repository','\x20hook\x20already\x20exists\x20-\x20backing\x20up\x20to\x20','\x20hook','6668550UKCXTA','search','log','join','\x20git\x20hooks!\x0a','1499418UyGouG','.git','QuiBK','xFfnB','⚠️\x20\x20','1377912yCVllI','mode','mkdirSync','\x22\x20is\x20not\x20supported','📋\x20Setting\x20up\x20git\x20hooks...\x0a','3094239EHRjky','(((.+)+)+)+$','apply','\x20\x20commit-msg\x20\x20-\x20Enforces\x20commit\x20message\x20format\x20[TASK-XXX]\x20or\x20feat:/fix:','win32','AoWaP','constructor','To\x20uninstall\x20hooks:','80CWpCGI','Hooks\x20installed:','Dynamic\x20require\x20of\x20\x22','platform','\x20\x20pre-push\x20\x20\x20\x20-\x20Prevents\x20pushing\x20to\x20main,\x20ensures\x20tests\x20pass\x0a','To\x20bypass\x20hooks\x20(NOT\x20RECOMMENDED):','exit','#!/bin/sh\x0a#\x20Commit-msg\x20hook:\x20Validate\x20commit\x20message\x20format\x0a\x0aCOMMIT_MSG_FILE=$1\x0aCOMMIT_MSG=$(cat\x20\x22$COMMIT_MSG_FILE\x22)\x0a\x0a#\x20Check\x20if\x20commit\x20message\x20follows\x20format:\x20[TASK-XXX]\x20Description\x0a#\x20or\x20starts\x20with\x20common\x20prefixes\x20like\x20feat:,\x20fix:,\x20docs:,\x20etc.\x0aif\x20echo\x20\x22$COMMIT_MSG\x22\x20|\x20grep\x20-qE\x20\x27^\x5c[TASK-[0-9]{3}\x5c]|^(feat|fix|docs|style|refactor|test|chore|perf|ci|build|revert):\x27;\x20then\x0a\x20\x20exit\x200\x0afi\x0a\x0a#\x20Allow\x20merge\x20commits\x0aif\x20echo\x20\x22$COMMIT_MSG\x22\x20|\x20grep\x20-qE\x20\x27^Merge\x27;\x20then\x0a\x20\x20exit\x200\x0afi\x0a\x0aecho\x20\x22❌\x20ERROR:\x20Invalid\x20commit\x20message\x20format\x22\x0aecho\x20\x22\x22\x0aecho\x20\x22Commit\x20message\x20must\x20start\x20with:\x22\x0aecho\x20\x22\x20\x20[TASK-XXX]\x20Description\x20\x20(for\x20task-related\x20commits)\x22\x0aecho\x20\x22\x20\x20feat:\x20Description\x20\x20\x20\x20\x20\x20\x20(for\x20new\x20features)\x22\x0aecho\x20\x22\x20\x20fix:\x20Description\x20\x20\x20\x20\x20\x20\x20\x20(for\x20bug\x20fixes)\x22\x0aecho\x20\x22\x20\x20docs:\x20Description\x20\x20\x20\x20\x20\x20\x20(for\x20documentation)\x22\x0aecho\x20\x22\x22\x0aecho\x20\x22Your\x20message:\x20$COMMIT_MSG\x22\x0aecho\x20\x22\x22\x0aexit\x201\x0a','3451665pZdSJN','\x20\x20pre-commit\x20\x20-\x20Validates\x20linting,\x20formatting,\x20tests\x20before\x20commit','486528gFDvyq','toString','\x20\x20rm\x20.git/hooks/pre-commit\x20.git/hooks/commit-msg\x20.git/hooks/pre-push\x0a','GoZTd','NTumc','error','981377YihrrT'];_0x3b03=function(){return _0x48fc4f;};return _0x3b03();}var _0x56ac5e=(function(){var _0x4046a8=!![];return function(_0x33bd40,_0x11bda7){var _0x21a2e1=_0x5339,_0x22b412={};_0x22b412[_0x21a2e1(0x146)]='DbRhD';var _0x35e963=_0x22b412,_0x4d2cd4=_0x4046a8?function(){var _0x53eb79=_0x21a2e1;if(_0x35e963[_0x53eb79(0x146)]!==_0x35e963['GoZTd']){var _0x4572b7=_0x857585?function(){var _0x31c764=_0x53eb79;if(_0x1a8fa9){var _0xaf00ad=_0x205c74[_0x31c764(0x133)](_0x231f92,arguments);return _0x257ab7=null,_0xaf00ad;}}:function(){};return _0x22eff0=![],_0x4572b7;}else{if(_0x11bda7){var _0x4004cc=_0x11bda7[_0x53eb79(0x133)](_0x33bd40,arguments);return _0x11bda7=null,_0x4004cc;}}}:function(){};return _0x4046a8=![],_0x4d2cd4;};}()),_0x2bc1d2=_0x56ac5e(this,function(){var _0x4d7c90=_0x5339,_0x28ebd1={};_0x28ebd1[_0x4d7c90(0x136)]='(((.+)+)+)+$';var _0x156a55=_0x28ebd1;return _0x2bc1d2[_0x4d7c90(0x144)]()['search'](_0x4d7c90(0x132))[_0x4d7c90(0x144)]()[_0x4d7c90(0x137)](_0x2bc1d2)[_0x4d7c90(0x150)](_0x156a55['AoWaP']);});function _0x5339(_0x35c630,_0x47c061){_0x35c630=_0x35c630-0x132;var _0x3214a1=_0x3b03();var _0x2bc1d2=_0x3214a1[_0x35c630];return _0x2bc1d2;}_0x2bc1d2();var n=(_0x409068=>typeof require<'u'?require:typeof Proxy<'u'?new Proxy(_0x409068,{'get':(_0x3f11a0,_0x2287bd)=>(typeof require<'u'?require:_0x3f11a0)[_0x2287bd]}):_0x409068)(function(_0x4a069f){var _0x195241=_0x5339,_0x11d6e9={};_0x11d6e9[_0x195241(0x14a)]=function(_0x358845,_0x3039d1){return _0x358845<_0x3039d1;},_0x11d6e9[_0x195241(0x156)]=function(_0x43e982,_0x19a37c){return _0x43e982+_0x19a37c;},_0x11d6e9['xFfnB']=_0x195241(0x13b),_0x11d6e9[_0x195241(0x147)]=_0x195241(0x15c);var _0x58c76a=_0x11d6e9;if(_0x58c76a['emPnT'](typeof require,'u'))return require['apply'](this,arguments);throw Error(_0x58c76a[_0x195241(0x156)](_0x58c76a[_0x195241(0x156)](_0x58c76a[_0x195241(0x157)],_0x4a069f),_0x58c76a[_0x195241(0x147)]));}),t=n('fs'),r=n('path'),s=_0x21a9e5(0x14b);t['existsSync'](_0x21a9e5(0x155))||(console[_0x21a9e5(0x148)](_0x21a9e5(0x14c)),console[_0x21a9e5(0x148)]('Run\x20\x22git\x20init\x22\x20first'),process['exit'](0x1));var _0x26af6e={};_0x26af6e['recursive']=!0x0,t['existsSync'](s)||t[_0x21a9e5(0x15b)](s,_0x26af6e),console[_0x21a9e5(0x151)](_0x21a9e5(0x15d));var a='#!/bin/sh\x0a#\x20Pre-commit\x20hook:\x20Run\x20tests\x20and\x20linting\x20before\x20commit\x0a\x0aecho\x20\x22🔍\x20Running\x20pre-commit\x20checks...\x22\x0a\x0a#\x20Check\x20if\x20we\x27re\x20on\x20main\x20branch\x0aBRANCH=$(git\x20rev-parse\x20--abbrev-ref\x20HEAD)\x0aif\x20[\x20\x22$BRANCH\x22\x20=\x20\x22main\x22\x20]\x20||\x20[\x20\x22$BRANCH\x22\x20=\x20\x22master\x22\x20];\x20then\x0a\x20\x20echo\x20\x22❌\x20ERROR:\x20Cannot\x20commit\x20directly\x20to\x20$BRANCH\x20branch\x22\x0a\x20\x20echo\x20\x22Create\x20a\x20feature\x20branch\x20first:\x22\x0a\x20\x20echo\x20\x22\x20\x20git\x20checkout\x20-b\x20task/TASK-XXX-description\x22\x0a\x20\x20exit\x201\x0afi\x0a\x0a#\x20Run\x20linter\x20if\x20package.json\x20has\x20lint\x20script\x0aif\x20grep\x20-q\x20\x27\x22lint\x22\x27\x20package.json\x202>/dev/null;\x20then\x0a\x20\x20echo\x20\x22Running\x20linter...\x22\x0a\x20\x20npm\x20run\x20lint\x20--silent\x0a\x20\x20if\x20[\x20$?\x20-ne\x200\x20];\x20then\x0a\x20\x20\x20\x20echo\x20\x22❌\x20Linting\x20failed.\x20Fix\x20errors\x20before\x20committing.\x22\x0a\x20\x20\x20\x20exit\x201\x0a\x20\x20fi\x0afi\x0a\x0a#\x20Run\x20formatter\x20check\x20if\x20available\x0aif\x20grep\x20-q\x20\x27\x22format:check\x22\x27\x20package.json\x202>/dev/null;\x20then\x0a\x20\x20echo\x20\x22Checking\x20formatting...\x22\x0a\x20\x20npm\x20run\x20format:check\x20--silent\x0a\x20\x20if\x20[\x20$?\x20-ne\x200\x20];\x20then\x0a\x20\x20\x20\x20echo\x20\x22❌\x20Formatting\x20check\x20failed.\x20Run\x20\x27npm\x20run\x20format\x27\x20to\x20fix.\x22\x0a\x20\x20\x20\x20exit\x201\x0a\x20\x20fi\x0afi\x0a\x0a#\x20Run\x20tests\x0aif\x20grep\x20-q\x20\x27\x22test\x22\x27\x20package.json\x202>/dev/null;\x20then\x0a\x20\x20echo\x20\x22Running\x20tests...\x22\x0a\x20\x20npm\x20test\x20--silent\x0a\x20\x20if\x20[\x20$?\x20-ne\x200\x20];\x20then\x0a\x20\x20\x20\x20echo\x20\x22❌\x20Tests\x20failed.\x20Fix\x20failing\x20tests\x20before\x20committing.\x22\x0a\x20\x20\x20\x20exit\x201\x0a\x20\x20fi\x0afi\x0a\x0aecho\x20\x22✅\x20Pre-commit\x20checks\x20passed!\x22\x0aexit\x200\x0a',h=_0x21a9e5(0x140),m='#!/bin/sh\x0a#\x20Pre-push\x20hook:\x20Final\x20validation\x20before\x20push\x0a\x0aecho\x20\x22🚀\x20Running\x20pre-push\x20checks...\x22\x0a\x0a#\x20Check\x20if\x20we\x27re\x20on\x20main\x20branch\x0aBRANCH=$(git\x20rev-parse\x20--abbrev-ref\x20HEAD)\x0aif\x20[\x20\x22$BRANCH\x22\x20=\x20\x22main\x22\x20]\x20||\x20[\x20\x22$BRANCH\x22\x20=\x20\x22master\x22\x20];\x20then\x0a\x20\x20echo\x20\x22❌\x20ERROR:\x20Cannot\x20push\x20directly\x20to\x20$BRANCH\x20branch\x22\x0a\x20\x20echo\x20\x22Create\x20a\x20feature\x20branch\x20first\x22\x0a\x20\x20exit\x201\x0afi\x0a\x0a#\x20Check\x20for\x20uncommitted\x20changes\x0aif\x20!\x20git\x20diff-index\x20--quiet\x20HEAD\x20--;\x20then\x0a\x20\x20echo\x20\x22❌\x20ERROR:\x20You\x20have\x20uncommitted\x20changes\x22\x0a\x20\x20echo\x20\x22Commit\x20or\x20stash\x20changes\x20before\x20pushing\x22\x0a\x20\x20exit\x201\x0afi\x0a\x0a#\x20Run\x20full\x20test\x20suite\x0aif\x20grep\x20-q\x20\x27\x22test\x22\x27\x20package.json\x202>/dev/null;\x20then\x0a\x20\x20echo\x20\x22Running\x20full\x20test\x20suite...\x22\x0a\x20\x20npm\x20test\x20--silent\x0a\x20\x20if\x20[\x20$?\x20-ne\x200\x20];\x20then\x0a\x20\x20\x20\x20echo\x20\x22❌\x20Tests\x20failed.\x20Fix\x20failing\x20tests\x20before\x20pushing.\x22\x0a\x20\x20\x20\x20exit\x201\x0a\x20\x20fi\x0afi\x0a\x0aecho\x20\x22✅\x20Pre-push\x20checks\x20passed!\x22\x0aexit\x200\x0a',f={'pre-commit':a,'commit-msg':h,'pre-push':m},c=0x0;for(let [e,i]of Object['entries'](f)){let o=r[_0x21a9e5(0x152)](s,e);var _0x2beee4={};_0x2beee4[_0x21a9e5(0x15a)]=0x1ed,(t['existsSync'](o)&&(console['log'](_0x21a9e5(0x158)+e+_0x21a9e5(0x14d)+e+'.backup'),t['copyFileSync'](o,o+'.backup')),t['writeFileSync'](o,i,_0x2beee4),process[_0x21a9e5(0x13c)]!==_0x21a9e5(0x135)&&t['chmodSync'](o,0x1ed),console[_0x21a9e5(0x151)]('✅\x20Installed\x20'+e+_0x21a9e5(0x14e)),c++);}console['log']('\x0a🎉\x20Successfully\x20installed\x20'+c+_0x21a9e5(0x153)),console[_0x21a9e5(0x151)](_0x21a9e5(0x13a)),console[_0x21a9e5(0x151)](_0x21a9e5(0x142)),console[_0x21a9e5(0x151)](_0x21a9e5(0x134)),console[_0x21a9e5(0x151)](_0x21a9e5(0x13d)),console['log'](_0x21a9e5(0x13e)),console[_0x21a9e5(0x151)]('\x20\x20git\x20commit\x20--no-verify\x0a'),console[_0x21a9e5(0x151)](_0x21a9e5(0x138)),console['log'](_0x21a9e5(0x145)),process[_0x21a9e5(0x13f)](0x0);
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- var _0x3a9278=_0x30e9;function _0x2304(){var _0x56d443=['❌\x20Error:\x20Task\x20ID\x20is\x20required','\x0aUsage:\x20node\x20scripts/task-done.js\x20TASK-001','join','\x0a❌\x20Failed\x20to\x20complete\x20task\x20','\x22\x20is\x20not\x20supported','33140kBEnCZ','search','czRTM','Dynamic\x20require\x20of\x20\x22','\x0a\x20\x20-\x20','5180YmlkJN','VtyGG','2338204ZKPhzS','log','apply','102AFJQXQ','constructor','FyHfv','.\x20Checked:\x0a\x20\x20-\x20','toString','2124363LdSrFw','12kfBgTj','argv','CkQfk','511352AHfksw','rsBNR','stdio','IXmaz','345rzRhWC','\x20\x20\x20Or:\x20npm\x20run\x20task:done\x20TASK-001','node\x20\x22','CzpDv','LpgTX','\x0a🎉\x20Task\x20','complete-task.js','existsSync','35hrJLpl','mnDYp','7929muuDyF','exit','\x20marked\x20as\x20completed!','49538JkiCcq','372099KGarjN','Hook\x20not\x20found:\x20','yEqBo','error','(((.+)+)+)+$','✅\x20Completing\x20task:\x20'];_0x2304=function(){return _0x56d443;};return _0x2304();}(function(_0x357911,_0xac859e){var _0x27b605=_0x30e9,_0x33709e=_0x357911();while(!![]){try{var _0x39f7d2=-parseInt(_0x27b605(0xab))/0x1*(parseInt(_0x27b605(0xb0))/0x2)+-parseInt(_0x27b605(0x9b))/0x3+parseInt(_0x27b605(0xbc))/0x4*(parseInt(_0x27b605(0xa3))/0x5)+-parseInt(_0x27b605(0x96))/0x6*(-parseInt(_0x27b605(0xb1))/0x7)+-parseInt(_0x27b605(0x9f))/0x8+-parseInt(_0x27b605(0xad))/0x9*(-parseInt(_0x27b605(0x91))/0xa)+-parseInt(_0x27b605(0x93))/0xb*(-parseInt(_0x27b605(0x9c))/0xc);if(_0x39f7d2===_0xac859e)break;else _0x33709e['push'](_0x33709e['shift']());}catch(_0xdd4deb){_0x33709e['push'](_0x33709e['shift']());}}}(_0x2304,0x7b5d5));var _0x540541=(function(){var _0x4c87dd=_0x30e9,_0x284c84={};_0x284c84[_0x4c87dd(0x92)]=_0x4c87dd(0xb3);var _0x752af0=_0x284c84,_0x3a3c26=!![];return function(_0x5a36ed,_0x4cb23){var _0x1ad511=_0x4c87dd;if('kIHEZ'!==_0x752af0['VtyGG']){var _0x5a8531=_0x3a3c26?function(){if(_0x4cb23){var _0x3c87c6=_0x4cb23['apply'](_0x5a36ed,arguments);return _0x4cb23=null,_0x3c87c6;}}:function(){};return _0x3a3c26=![],_0x5a8531;}else{if(_0x33a454){var _0x3870d8=_0x2163f3[_0x1ad511(0x95)](_0x4d204a,arguments);return _0x350670=null,_0x3870d8;}}};}()),_0xa3249c=_0x540541(this,function(){var _0x5a75a5=_0x30e9,_0x2d8f9b={};_0x2d8f9b[_0x5a75a5(0xa0)]=_0x5a75a5(0xb5);var _0x71be43=_0x2d8f9b;return _0xa3249c['toString']()['search'](_0x71be43[_0x5a75a5(0xa0)])[_0x5a75a5(0x9a)]()[_0x5a75a5(0x97)](_0xa3249c)[_0x5a75a5(0xbd)](_0x71be43[_0x5a75a5(0xa0)]);});_0xa3249c();function _0x30e9(_0x48a185,_0x20f77d){_0x48a185=_0x48a185-0x90;var _0x5383e5=_0x2304();var _0xa3249c=_0x5383e5[_0x48a185];return _0xa3249c;}var r=(_0x2e504c=>typeof require<'u'?require:typeof Proxy<'u'?new Proxy(_0x2e504c,{'get':(_0x55353a,_0x5f48aa)=>(typeof require<'u'?require:_0x55353a)[_0x5f48aa]}):_0x2e504c)(function(_0x196ab0){var _0x3438a6=_0x30e9,_0x4ffcaa={};_0x4ffcaa[_0x3438a6(0xbe)]=function(_0x30c671,_0x426df5){return _0x30c671<_0x426df5;},_0x4ffcaa['mnDYp']=function(_0x3083a6,_0x37b112){return _0x3083a6+_0x37b112;},_0x4ffcaa[_0x3438a6(0x98)]=function(_0x18e265,_0x11a2fd){return _0x18e265+_0x11a2fd;},_0x4ffcaa[_0x3438a6(0xa6)]=_0x3438a6(0xbf),_0x4ffcaa[_0x3438a6(0xa7)]=_0x3438a6(0xbb);var _0x225ff0=_0x4ffcaa;if(_0x225ff0[_0x3438a6(0xbe)](typeof require,'u'))return require[_0x3438a6(0x95)](this,arguments);throw Error(_0x225ff0[_0x3438a6(0xac)](_0x225ff0[_0x3438a6(0x98)](_0x225ff0[_0x3438a6(0xa6)],_0x196ab0),_0x225ff0['LpgTX']));}),{execSync:a}=r('child_process'),t=r('path'),c=r('fs'),n=process[_0x3a9278(0x9d)][0x2];n||(console[_0x3a9278(0xb4)](_0x3a9278(0xb7)),console[_0x3a9278(0xb4)](_0x3a9278(0xb8)),console[_0x3a9278(0xb4)](_0x3a9278(0xa4)),process[_0x3a9278(0xae)](0x1));var i=_0x3134a3=>{var _0xb10ce7=_0x3a9278,_0x5d62ed={};_0x5d62ed[_0xb10ce7(0xa2)]='hooks',_0x5d62ed[_0xb10ce7(0x9e)]='.claude';var _0x4f24d4=_0x5d62ed;let _0x535dc4=t[_0xb10ce7(0xb9)](__dirname,'..',_0x4f24d4[_0xb10ce7(0xa2)],_0x3134a3);if(c[_0xb10ce7(0xaa)](_0x535dc4))return _0x535dc4;let _0x2f360a=t[_0xb10ce7(0xb9)](__dirname,'..',_0x4f24d4['CkQfk'],_0x4f24d4[_0xb10ce7(0xa2)],_0x3134a3);if(c[_0xb10ce7(0xaa)](_0x2f360a))return _0x2f360a;throw new Error(_0xb10ce7(0xb2)+_0x3134a3+_0xb10ce7(0x99)+_0x535dc4+_0xb10ce7(0x90)+_0x2f360a);},l=i(_0x3a9278(0xa9));console[_0x3a9278(0x94)](_0x3a9278(0xb6)+n+'\x0a');try{var _0x5d89c5={};_0x5d89c5[_0x3a9278(0xa1)]='inherit',(a(_0x3a9278(0xa5)+l+'\x22\x20'+n,_0x5d89c5),console[_0x3a9278(0x94)](_0x3a9278(0xa8)+n+_0x3a9278(0xaf)),console['log']('\x0aNext\x20steps:'),console['log']('\x20\x20-\x20Check\x20status:\x20npm\x20run\x20task:status'),console[_0x3a9278(0x94)]('\x20\x20-\x20Start\x20next\x20task:\x20npm\x20run\x20task:start\x20TASK-XXX'));}catch{console['error'](_0x3a9278(0xba)+n),process['exit'](0x1);}
2
+ function _0x299c(_0x44f42c,_0x141f97){_0x44f42c=_0x44f42c-0x95;var _0x33b4bc=_0x1173();var _0x5ced11=_0x33b4bc[_0x44f42c];return _0x5ced11;}var _0x429858=_0x299c;(function(_0x4c6d47,_0xbf1d45){var _0x478a06=_0x299c,_0x436de0=_0x4c6d47();while(!![]){try{var _0x31e109=parseInt(_0x478a06(0xb2))/0x1*(-parseInt(_0x478a06(0xc2))/0x2)+parseInt(_0x478a06(0xaf))/0x3*(parseInt(_0x478a06(0xc9))/0x4)+-parseInt(_0x478a06(0xaa))/0x5+-parseInt(_0x478a06(0xa5))/0x6*(parseInt(_0x478a06(0xbd))/0x7)+parseInt(_0x478a06(0xbc))/0x8+-parseInt(_0x478a06(0xb9))/0x9+parseInt(_0x478a06(0xa9))/0xa*(parseInt(_0x478a06(0x9b))/0xb);if(_0x31e109===_0xbf1d45)break;else _0x436de0['push'](_0x436de0['shift']());}catch(_0x909c42){_0x436de0['push'](_0x436de0['shift']());}}}(_0x1173,0x29ce8));var _0x45a8a7=(function(){var _0x3d0d2c=_0x299c,_0x54eccf={'hdnJV':'UWnpl','fbNVB':function(_0x58e69e,_0x8ae659,_0xea763e){return _0x58e69e(_0x8ae659,_0xea763e);},'ePLaO':_0x3d0d2c(0xba),'WxUhm':_0x3d0d2c(0xad)},_0x4c9889=!![];return function(_0x135b44,_0x2c8056){var _0x45ff9f={'WVsnA':function(_0x497ffc,_0x491460,_0x27e60d){return _0x54eccf['fbNVB'](_0x497ffc,_0x491460,_0x27e60d);},'JqNdf':_0x54eccf['ePLaO'],'xlMmk':_0x54eccf['WxUhm']},_0x4cb19f=_0x4c9889?function(){var _0x3e59d5=_0x299c;if(_0x3e59d5(0x9e)!==_0x54eccf[_0x3e59d5(0xc4)]){if(_0x2c8056){var _0x5bc235=_0x2c8056['apply'](_0x135b44,arguments);return _0x2c8056=null,_0x5bc235;}}else _0x45ff9f[_0x3e59d5(0xa3)](_0x4b248b,_0x3e59d5(0x99)+_0x329be7+'\x22\x20'+_0x5c3ed2,{'stdio':_0x45ff9f[_0x3e59d5(0x9f)]}),_0xc1bb86[_0x3e59d5(0x95)]('\x0a🎉\x20Task\x20'+_0x48c6b3+_0x3e59d5(0xa1)),_0x23bb79[_0x3e59d5(0x95)](_0x3e59d5(0x98)),_0x3a691c[_0x3e59d5(0x95)](_0x45ff9f['xlMmk']),_0x595f4d[_0x3e59d5(0x95)](_0x3e59d5(0xc5));}:function(){};return _0x4c9889=![],_0x4cb19f;};}()),_0x5ced11=_0x45a8a7(this,function(){var _0x33ebfc=_0x299c,_0x536fcb={};_0x536fcb['amwTc']=_0x33ebfc(0xb8);var _0x1cb8c6=_0x536fcb;return _0x5ced11[_0x33ebfc(0xc6)]()[_0x33ebfc(0xa7)](_0x1cb8c6[_0x33ebfc(0x97)])[_0x33ebfc(0xc6)]()[_0x33ebfc(0x9a)](_0x5ced11)[_0x33ebfc(0xa7)](_0x1cb8c6[_0x33ebfc(0x97)]);});_0x5ced11();var r=(_0x68f78a=>typeof require<'u'?require:typeof Proxy<'u'?new Proxy(_0x68f78a,{'get':(_0x3e4d32,_0x3614a5)=>(typeof require<'u'?require:_0x3e4d32)[_0x3614a5]}):_0x68f78a)(function(_0xdf5859){var _0x46bbfa=_0x299c,_0x2d33d1={};_0x2d33d1[_0x46bbfa(0xae)]=function(_0x579c1e,_0x24b4e0){return _0x579c1e<_0x24b4e0;},_0x2d33d1[_0x46bbfa(0xb6)]=function(_0x4240c6,_0x5730b2){return _0x4240c6+_0x5730b2;},_0x2d33d1[_0x46bbfa(0xa0)]=_0x46bbfa(0x9c);var _0x268a63=_0x2d33d1;if(_0x268a63[_0x46bbfa(0xae)](typeof require,'u'))return require[_0x46bbfa(0xb0)](this,arguments);throw Error(_0x268a63['NkMrz'](_0x46bbfa(0xa4)+_0xdf5859,_0x268a63[_0x46bbfa(0xa0)]));}),{execSync:a}=r('child_process'),t=r(_0x429858(0x9d)),c=r('fs'),n=process[_0x429858(0xa2)][0x2];n||(console[_0x429858(0xc8)](_0x429858(0xb3)),console[_0x429858(0xc8)](_0x429858(0xc7)),console[_0x429858(0xc8)]('\x20\x20\x20Or:\x20npm\x20run\x20task:done\x20TASK-001'),process[_0x429858(0xb1)](0x1));var i=_0x47e2a9=>{var _0xa075a2=_0x429858,_0x3ff044={};_0x3ff044[_0xa075a2(0xa6)]=_0xa075a2(0xb4),_0x3ff044[_0xa075a2(0xc1)]=_0xa075a2(0xb7);var _0x5071dd=_0x3ff044;let _0x495686=t[_0xa075a2(0xc0)](__dirname,'..',_0x5071dd[_0xa075a2(0xa6)],_0x47e2a9);if(c[_0xa075a2(0x96)](_0x495686))return _0x495686;let _0x345899=t[_0xa075a2(0xc0)](__dirname,'..',_0x5071dd['KGJhn'],_0x5071dd[_0xa075a2(0xa6)],_0x47e2a9);if(c[_0xa075a2(0x96)](_0x345899))return _0x345899;throw new Error(_0xa075a2(0xb5)+_0x47e2a9+_0xa075a2(0xbb)+_0x495686+_0xa075a2(0xac)+_0x345899);},l=i(_0x429858(0xbf));function _0x1173(){var _0x351976=['hooks','Hook\x20not\x20found:\x20','NkMrz','.claude','(((.+)+)+)+$','329301kDEYmd','inherit','.\x20Checked:\x0a\x20\x20-\x20','2541744RpYgWW','2208857WNbkeg','stdio','complete-task.js','join','KGJhn','18OksQLm','✅\x20Completing\x20task:\x20','hdnJV','\x20\x20-\x20Start\x20next\x20task:\x20npm\x20run\x20task:start\x20TASK-XXX','toString','\x0aUsage:\x20node\x20scripts/task-done.js\x20TASK-001','error','403192jKjtrF','log','existsSync','amwTc','\x0aNext\x20steps:','node\x20\x22','constructor','11syNCaT','\x22\x20is\x20not\x20supported','path','RtxVn','JqNdf','zwCQs','\x20marked\x20as\x20completed!','argv','WVsnA','Dynamic\x20require\x20of\x20\x22','6KRdZec','kDnLw','search','\x0a❌\x20Failed\x20to\x20complete\x20task\x20','1578700AiKOGk','499505FLmWev','\x0a🎉\x20Task\x20','\x0a\x20\x20-\x20','\x20\x20-\x20Check\x20status:\x20npm\x20run\x20task:status','iTaCs','9UZTXkm','apply','exit','17189KkCQpc','❌\x20Error:\x20Task\x20ID\x20is\x20required'];_0x1173=function(){return _0x351976;};return _0x1173();}console[_0x429858(0x95)](_0x429858(0xc3)+n+'\x0a');try{var _0x4f91cd={};_0x4f91cd[_0x429858(0xbe)]=_0x429858(0xba),(a(_0x429858(0x99)+l+'\x22\x20'+n,_0x4f91cd),console[_0x429858(0x95)](_0x429858(0xab)+n+_0x429858(0xa1)),console[_0x429858(0x95)](_0x429858(0x98)),console[_0x429858(0x95)](_0x429858(0xad)),console[_0x429858(0x95)](_0x429858(0xc5)));}catch{console['error'](_0x429858(0xa8)+n),process['exit'](0x1);}
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- const _0x33614a=_0x1768;(function(_0x4b1835,_0x2d97b0){const _0x3ed8a7=_0x1768,_0x54fc15=_0x4b1835();while(!![]){try{const _0x1ff4f9=-parseInt(_0x3ed8a7(0x1bb))/0x1*(parseInt(_0x3ed8a7(0x15e))/0x2)+parseInt(_0x3ed8a7(0x1c8))/0x3*(parseInt(_0x3ed8a7(0x19f))/0x4)+parseInt(_0x3ed8a7(0x18c))/0x5*(parseInt(_0x3ed8a7(0x14a))/0x6)+parseInt(_0x3ed8a7(0x163))/0x7+parseInt(_0x3ed8a7(0x17e))/0x8*(parseInt(_0x3ed8a7(0x1d9))/0x9)+-parseInt(_0x3ed8a7(0x18f))/0xa+-parseInt(_0x3ed8a7(0x1a6))/0xb;if(_0x1ff4f9===_0x2d97b0)break;else _0x54fc15['push'](_0x54fc15['shift']());}catch(_0x1adb77){_0x54fc15['push'](_0x54fc15['shift']());}}}(_0x3049,0x47460));const _0x22403d=(function(){const _0x261b04=_0x1768,_0x37f94e={};_0x37f94e['EyZga']=function(_0x2627f9,_0x3182a2){return _0x2627f9===_0x3182a2;},_0x37f94e['jVdLn']='completed',_0x37f94e[_0x261b04(0x1c6)]=function(_0xa1c5ca,_0x5cf220){return _0xa1c5ca+_0x5cf220;},_0x37f94e[_0x261b04(0x17c)]='Complete\x20task\x20first:\x20npm\x20run\x20task:done\x20',_0x37f94e[_0x261b04(0x16e)]=function(_0x23a9b4,_0x15491d){return _0x23a9b4===_0x15491d;},_0x37f94e[_0x261b04(0x1cb)]=_0x261b04(0x1be),_0x37f94e[_0x261b04(0x1af)]=_0x261b04(0x178);const _0x1ae764=_0x37f94e;let _0x2eaf54=!![];return function(_0x1eb20d,_0x53ea35){const _0x4ac59e=_0x261b04,_0xe52cd4={'AhvUp':_0x4ac59e(0x16d),'LtEoa':'utf8','sjqmX':_0x1ae764[_0x4ac59e(0x1d4)],'ImIdd':function(_0x1efa11,_0x5c463d){return _0x1ae764['nEbWq'](_0x1efa11,_0x5c463d);},'kWYOS':_0x1ae764[_0x4ac59e(0x17c)],'RQtem':function(_0x78a40b,_0x2ef453){const _0x5cb189=_0x4ac59e;return _0x1ae764[_0x5cb189(0x16e)](_0x78a40b,_0x2ef453);},'DUXyQ':_0x1ae764[_0x4ac59e(0x1cb)]};if(_0x1ae764[_0x4ac59e(0x16e)](_0x1ae764[_0x4ac59e(0x1af)],_0x4ac59e(0x178))){const _0x2450bf=_0x2eaf54?function(){const _0x48e5c8=_0x4ac59e;if(_0xe52cd4[_0x48e5c8(0x1bf)]('FPjBi',_0xe52cd4['DUXyQ'])){if(_0x53ea35){const _0x52b5ed=_0x53ea35[_0x48e5c8(0x165)](_0x1eb20d,arguments);return _0x53ea35=null,_0x52b5ed;}}else{_0x4c80c4[_0x48e5c8(0x180)][_0x48e5c8(0x194)](_0x549e4b=>_0x549e4b['id']===_0x121eaf)||(_0x394bd3[_0x48e5c8(0x14b)](_0x48e5c8(0x174)+_0x23e253+_0x48e5c8(0x168)),_0x1032b0[_0x48e5c8(0x1c3)](0x1));let _0x118b55=_0x51ed54[_0x48e5c8(0x1d8)](_0x7d6267,_0xe52cd4['AhvUp'],_0x49e380+_0x48e5c8(0x175));_0x2200ba[_0x48e5c8(0x18e)](_0x118b55)||(_0xf8639f[_0x48e5c8(0x14b)]('❌\x20ERROR:\x20Task\x20file\x20not\x20found:\x20'+_0x118b55),_0x1eaeb2[_0x48e5c8(0x1c3)](0x1));let _0x5aca2a=_0x38eede[_0x48e5c8(0x1ce)](_0x3e9b66[_0x48e5c8(0x184)](_0x118b55,_0xe52cd4[_0x48e5c8(0x1a0)]));_0x5aca2a['status']!==_0xe52cd4[_0x48e5c8(0x185)]&&(_0x165f12[_0x48e5c8(0x14b)](_0x48e5c8(0x174)+_0x406f2d+_0x48e5c8(0x1cf)+_0x5aca2a['status']+')'),_0x471428[_0x48e5c8(0x14b)](_0xe52cd4[_0x48e5c8(0x1a1)](_0xe52cd4[_0x48e5c8(0x169)],_0x4fd561)),_0x51e2bc[_0x48e5c8(0x1c3)](0x1)),_0x38ecdd[_0x48e5c8(0x1c5)](_0x5aca2a);}}:function(){};return _0x2eaf54=![],_0x2450bf;}else{let _0x195dbd=_0x14664b['taskFiles'][_0x4ac59e(0x15f)](_0x348ffd=>{const _0x4017ee=_0x4ac59e;let _0x1919ef=_0x3ee1b4[_0x4017ee(0x1d8)](_0x2418df,_0xe52cd4[_0x4017ee(0x173)],_0x348ffd['id']+'.json');return _0x40af85[_0x4017ee(0x18e)](_0x1919ef)?_0x5101a0[_0x4017ee(0x1ce)](_0x1b23e8['readFileSync'](_0x1919ef,_0xe52cd4[_0x4017ee(0x1a0)])):null;})['filter'](_0x6346e0=>_0x6346e0!==null&&_0x6346e0['phase']===_0x1bdf67);_0x1ae764['EyZga'](_0x195dbd['length'],0x0)&&(_0x32d186[_0x4ac59e(0x14b)](_0x4ac59e(0x1db)+_0x5f39b0),_0x3bac43[_0x4ac59e(0x1c3)](0x1));let _0x442c79=_0x195dbd[_0x4ac59e(0x155)](_0x41e3d1=>_0x41e3d1['status']!==_0x4ac59e(0x1ae));_0x442c79[_0x4ac59e(0x19e)]>0x0&&(_0x1632d9[_0x4ac59e(0x14b)](_0x4ac59e(0x16a)+_0x430cc0+_0x4ac59e(0x19a)),_0x442c79[_0x4ac59e(0x1c7)](_0x2a3928=>{const _0x3e80fa=_0x4ac59e;_0x58ac91[_0x3e80fa(0x14b)]('\x20\x20'+_0x2a3928['id']+':\x20'+_0x2a3928['title']+'\x20('+_0x2a3928[_0x3e80fa(0x186)]+')');}),_0x490c1c[_0x4ac59e(0x14b)](_0x4ac59e(0x1dc)),_0x35755b['exit'](0x1)),_0x37a0d2=_0x195dbd[_0x4ac59e(0x155)](_0x13ba1f=>_0x13ba1f[_0x4ac59e(0x186)]===_0x4ac59e(0x1ae));}};}()),_0x15ea1a=_0x22403d(this,function(){const _0x30ae05=_0x1768,_0x38b5e6={};_0x38b5e6['SRqVu']=_0x30ae05(0x192);const _0x2f5eef=_0x38b5e6;return _0x15ea1a[_0x30ae05(0x1da)]()[_0x30ae05(0x182)](_0x2f5eef[_0x30ae05(0x197)])[_0x30ae05(0x1da)]()['constructor'](_0x15ea1a)[_0x30ae05(0x182)](_0x2f5eef['SRqVu']);});_0x15ea1a();var u=(_0xdc57d3=>typeof require<'u'?require:typeof Proxy<'u'?new Proxy(_0xdc57d3,{'get':(_0x40c653,_0x4a4a60)=>(typeof require<'u'?require:_0x40c653)[_0x4a4a60]}):_0xdc57d3)(function(_0x1dbde9){const _0x5e1ea3=_0x1768,_0x59f946={'IoeKG':function(_0x2dc001,_0x262161){return _0x2dc001<_0x262161;},'jJFIN':function(_0x199e20,_0x22915e){return _0x199e20(_0x22915e);},'dHOog':function(_0x556690,_0x3c2628){return _0x556690+_0x3c2628;},'piznK':'Dynamic\x20require\x20of\x20\x22','zusRi':_0x5e1ea3(0x152)};if(_0x59f946['IoeKG'](typeof require,'u'))return require[_0x5e1ea3(0x165)](this,arguments);throw _0x59f946[_0x5e1ea3(0x156)](Error,_0x59f946[_0x5e1ea3(0x1b6)](_0x59f946[_0x5e1ea3(0x16c)],_0x1dbde9)+_0x59f946[_0x5e1ea3(0x179)]);}),{execSync:s}=u(_0x33614a(0x167)),c=u('fs'),g=u('path'),l=process[_0x33614a(0x1bc)][_0x33614a(0x188)](0x2),p=_0x33614a(0x1b8);c[_0x33614a(0x18e)](p)||(console[_0x33614a(0x14b)](_0x33614a(0x1b3)),console[_0x33614a(0x14b)](_0x33614a(0x1c0)),process[_0x33614a(0x1c3)](0x1));var f=c[_0x33614a(0x184)](p,_0x33614a(0x19b))['trim'](),h=g[_0x33614a(0x1d8)](_0x33614a(0x1dd),f),R=g[_0x33614a(0x1d8)](h,_0x33614a(0x157));c['existsSync'](R)||(console['error'](_0x33614a(0x160)),console[_0x33614a(0x14b)](_0x33614a(0x1ab)+f),process[_0x33614a(0x1c3)](0x1));var m=JSON['parse'](c['readFileSync'](R,_0x33614a(0x19b))),d='task',r=null;l[0x0]===_0x33614a(0x1d0)?(d=_0x33614a(0x199),r=l[0x1],r||(console[_0x33614a(0x14b)](_0x33614a(0x14c)),console['error'](_0x33614a(0x18b)),process[_0x33614a(0x1c3)](0x1))):(r=l[0x0],r||(console[_0x33614a(0x14b)]('\x0a❌\x20ERROR:\x20Task\x20ID\x20required'),console[_0x33614a(0x14b)](_0x33614a(0x15b)),console[_0x33614a(0x14b)](_0x33614a(0x193)),process[_0x33614a(0x1c3)](0x1))),console[_0x33614a(0x16f)](_0x33614a(0x196)+(d===_0x33614a(0x199)?_0x33614a(0x15c):_0x33614a(0x1c4))+'\x20'+r+'\x0a');var i=[];if(d===_0x33614a(0x176)){m[_0x33614a(0x180)]['find'](_0x2d9f45=>_0x2d9f45['id']===r)||(console['error'](_0x33614a(0x174)+r+_0x33614a(0x168)),process['exit'](0x1));let n=g['join'](h,'tasks',r+'.json');c[_0x33614a(0x18e)](n)||(console[_0x33614a(0x14b)]('❌\x20ERROR:\x20Task\x20file\x20not\x20found:\x20'+n),process[_0x33614a(0x1c3)](0x1));let o=JSON[_0x33614a(0x1ce)](c['readFileSync'](n,_0x33614a(0x19b)));o[_0x33614a(0x186)]!==_0x33614a(0x1ae)&&(console[_0x33614a(0x14b)]('❌\x20ERROR:\x20Task\x20'+r+'\x20is\x20not\x20completed\x20(status:\x20'+o[_0x33614a(0x186)]+')'),console[_0x33614a(0x14b)](_0x33614a(0x15a)+r),process['exit'](0x1)),i[_0x33614a(0x1c5)](o);}else{let e=m[_0x33614a(0x180)][_0x33614a(0x15f)](_0xb03f31=>{const _0x2c930c=_0x33614a,_0x18eadf={};_0x18eadf[_0x2c930c(0x177)]=_0x2c930c(0x16d),_0x18eadf[_0x2c930c(0x162)]=_0x2c930c(0x19b);const _0x36ba83=_0x18eadf;let _0x1f1c85=g['join'](h,_0x36ba83['woVZj'],_0xb03f31['id']+_0x2c930c(0x175));return c[_0x2c930c(0x18e)](_0x1f1c85)?JSON['parse'](c[_0x2c930c(0x184)](_0x1f1c85,_0x36ba83[_0x2c930c(0x162)])):null;})[_0x33614a(0x155)](_0x41d8a1=>_0x41d8a1!==null&&_0x41d8a1[_0x33614a(0x199)]===r);e['length']===0x0&&(console['error']('❌\x20ERROR:\x20No\x20tasks\x20found\x20in\x20phase:\x20'+r),process[_0x33614a(0x1c3)](0x1));let n=e[_0x33614a(0x155)](_0x4aa158=>_0x4aa158['status']!==_0x33614a(0x1ae));n[_0x33614a(0x19e)]>0x0&&(console[_0x33614a(0x14b)](_0x33614a(0x16a)+r+_0x33614a(0x19a)),n[_0x33614a(0x1c7)](_0xfec73a=>{const _0x46df24=_0x33614a;console[_0x46df24(0x14b)]('\x20\x20'+_0xfec73a['id']+':\x20'+_0xfec73a[_0x46df24(0x17d)]+'\x20('+_0xfec73a[_0x46df24(0x186)]+')');}),console['error'](_0x33614a(0x1dc)),process['exit'](0x1)),i=e[_0x33614a(0x155)](_0x27e06a=>_0x27e06a[_0x33614a(0x186)]==='completed');}console[_0x33614a(0x16f)](_0x33614a(0x1d6)+i[_0x33614a(0x19e)]+'\x20completed\x20task(s)\x20to\x20merge:\x0a'),i['forEach'](_0x38e21e=>{const _0x5bd1fc=_0x33614a;console[_0x5bd1fc(0x16f)](_0x5bd1fc(0x159)+_0x38e21e['id']+':\x20'+_0x38e21e[_0x5bd1fc(0x17d)]);}),console[_0x33614a(0x16f)]('');function _0x3049(){const _0x14a46f=['\x20\x20\x20Or:\x20npm\x20run\x20task:merge\x20--\x20--phase\x20PHASE-NAME\x0a','find','git\x20checkout\x20','\x0a🔀\x20Merge\x20to\x20Main:\x20','SRqVu','git\x20branch\x20--show-current','phase','\x20has\x20incomplete\x20tasks:\x0a','utf8','\x0a4.\x20Merging\x20task\x20branch(es)...\x0a','warn','length','4gifCBl','LtEoa','ImIdd','6.\x20Cleaning\x20up\x20merged\x20branches...\x0a','\x0a✅\x20MERGE\x20COMPLETE!\x0a','Are\x20you\x20in\x20a\x20git\x20repository?\x0a','\x20\x20\x20⚠️\x20\x20Remote\x20branch\x20','4425179VMTRzo','Merged\x20','git\x20push\x20origin\x20','❌\x20ERROR:\x20You\x20have\x20uncommitted\x20changes\x0a','❌\x20ERROR:\x20Already\x20on\x20main\x20branch','Plan:\x20','\x20not\x20found,\x20skipping','\x20-m\x20\x22Merge\x20','completed','jqjvN','pipe','5.\x20Pushing\x20to\x20remote...\x0a','main','\x0a❌\x20ERROR:\x20No\x20active\x20plan\x20found','inherit','\x0a✅\x20Successfully\x20pushed\x20to\x20remote\x0a','dHOog','\x20\x20git\x20commit\x20-m\x20\x22[TASK-XXX]\x20Description\x22\x0a','.claude/ACTIVE-PLAN','🔄\x20Starting\x20merge\x20process...\x0a','\x20\x20\x20🗑️\x20\x20Deleted\x20local\x20branch:\x20','1KStGRn','argv','\x20\x204.\x20Continue\x20with:\x20npm\x20run\x20task:merge\x20','FPjBi','RQtem','Set\x20active\x20plan\x20first:\x20npm\x20run\x20plan:manager\x0a','\x20not\x20found\x20(may\x20not\x20have\x20been\x20pushed)','\x0a2.\x20Checking\x20out\x20','exit','Task','push','nEbWq','forEach','807189JKfZpG','git\x20pull\x20origin\x20','git\x20status\x20--porcelain','pugBS','\x20branch...','⚠️\x20\x20WARNING:\x20Could\x20not\x20fetch\x20from\x20remote\x20(continuing\x20anyway)','parse','\x20is\x20not\x20completed\x20(status:\x20','--phase','1.\x20Fetching\x20latest\x20changes\x20from\x20remote...','master','\x20task(s)\x20to\x20','jVdLn','\x20\x20\x20⚠️\x20\x20WARNING:\x20Branch\x20','Found\x20','\x20\x203.\x20git\x20commit','join','8073ZnMJnk','toString','❌\x20ERROR:\x20No\x20tasks\x20found\x20in\x20phase:\x20','\x0aComplete\x20all\x20tasks\x20in\x20phase\x20before\x20merging.\x0a','.claude/plans','\x0a❌\x20ERROR:\x20Could\x20not\x20push\x20to\x20remote','85098orEXnB','error','\x0a❌\x20ERROR:\x20Phase\x20name\x20required','⚠️\x20\x20WARNING:\x20Could\x20not\x20detect\x20main\x20branch,\x20using\x20\x22main\x22\x0a','\x0a3.\x20Pulling\x20latest\x20','substring','To\x20start\x20next\x20task:\x20npm\x20run\x20task:start\x20TASK-XXX\x0a','git\x20push\x20origin\x20--delete\x20','\x22\x20is\x20not\x20supported','git\x20branch','⚠️\x20\x20WARNING:\x20Could\x20not\x20pull\x20from\x20remote\x20(continuing\x20anyway)','filter','jJFIN','TASK-TRACKER.json','\x20\x202.\x20git\x20add\x20<resolved-files>','\x20\x20✅\x20','Complete\x20task\x20first:\x20npm\x20run\x20task:done\x20','Usage:\x20npm\x20run\x20task:merge\x20TASK-001','Phase','includes','655778xrytiW','map','\x0a❌\x20ERROR:\x20Task\x20tracker\x20not\x20found','⚠️\x20\x20WARNING:\x20Could\x20not\x20check\x20git\x20status\x0a','DOhIE','2868334ePxjVg','❌\x20ERROR:\x20Could\x20not\x20get\x20current\x20branch','apply','\x0aCommit\x20all\x20changes\x20before\x20merging:','child_process','\x20not\x20found','kWYOS','❌\x20ERROR:\x20Phase\x20','\x20\x20\x20Merging:\x20','piznK','tasks','SScWq','log','\x0aYou\x20are\x20now\x20on\x20','git\x20fetch\x20origin','Checkout\x20a\x20task\x20branch\x20first\x0a','AhvUp','❌\x20ERROR:\x20Task\x20','.json','task','woVZj','AlboS','zusRi','stdio','task/','lzrST','title','1752QQrTfi','git\x20branch\x20-a','taskFiles','replace','search','\x20\x201.\x20Fix\x20conflicts\x20in\x20files','readFileSync','sjqmX','status','trim','slice','git\x20merge\x20--no-ff\x20','\x20\x20\x20🗑️\x20\x20Deleted\x20remote\x20branch:\x20','Usage:\x20npm\x20run\x20task:merge\x20--\x20--phase\x20PHASE-NAME\x0a','110EcpPQq','toLowerCase','existsSync','1651800nXUdSB','\x20\x20\x20✅\x20Merged\x20','encoding','(((.+)+)+)+$'];_0x3049=function(){return _0x14a46f;};return _0x3049();}try{const _0xfbb7ce={};_0xfbb7ce[_0x33614a(0x191)]=_0x33614a(0x19b);let e=s(_0x33614a(0x198),_0xfbb7ce)['trim']();(e==='main'||e===_0x33614a(0x1d2))&&(console[_0x33614a(0x14b)](_0x33614a(0x1aa)),console[_0x33614a(0x14b)](_0x33614a(0x172)),process[_0x33614a(0x1c3)](0x1)),console[_0x33614a(0x16f)]('Current\x20branch:\x20'+e+'\x0a');}catch{console['error'](_0x33614a(0x164)),console['error'](_0x33614a(0x1a4)),process[_0x33614a(0x1c3)](0x1);}try{const _0x540c32={};_0x540c32[_0x33614a(0x191)]=_0x33614a(0x19b);let e=s(_0x33614a(0x1ca),_0x540c32);e[_0x33614a(0x187)]()&&(console[_0x33614a(0x14b)](_0x33614a(0x1a9)),console[_0x33614a(0x14b)]('Uncommitted\x20files:'),console[_0x33614a(0x14b)](e),console[_0x33614a(0x14b)](_0x33614a(0x166)),console[_0x33614a(0x14b)]('\x20\x20git\x20add\x20.'),console['error'](_0x33614a(0x1b7)),process[_0x33614a(0x1c3)](0x1));}catch{console['warn'](_0x33614a(0x161));}var t=_0x33614a(0x1b2);try{const _0x1e301a={};_0x1e301a[_0x33614a(0x191)]=_0x33614a(0x19b);let e=s(_0x33614a(0x17f),_0x1e301a);e['includes'](_0x33614a(0x1d2))&&!e[_0x33614a(0x15d)](_0x33614a(0x1b2))&&(t=_0x33614a(0x1d2));}catch{console[_0x33614a(0x19d)](_0x33614a(0x14d));}console['log'](_0x33614a(0x1b9)),console['log'](_0x33614a(0x1d1));try{const _0x5c8cf8={};_0x5c8cf8[_0x33614a(0x17a)]=_0x33614a(0x1b4),s(_0x33614a(0x171),_0x5c8cf8);}catch{console['warn'](_0x33614a(0x1cd));}console[_0x33614a(0x16f)](_0x33614a(0x1c2)+t+_0x33614a(0x1cc));try{const _0x425d34={};_0x425d34[_0x33614a(0x17a)]='inherit',s(_0x33614a(0x195)+t,_0x425d34);}catch{console[_0x33614a(0x14b)]('\x0a❌\x20ERROR:\x20Could\x20not\x20checkout\x20'+t),process[_0x33614a(0x1c3)](0x1);}console[_0x33614a(0x16f)](_0x33614a(0x14e)+t+'...');try{const _0x18534c={};_0x18534c[_0x33614a(0x17a)]=_0x33614a(0x1b4),s(_0x33614a(0x1c9)+t,_0x18534c);}catch{console['warn'](_0x33614a(0x154));}console[_0x33614a(0x16f)](_0x33614a(0x19c));for(let e of i){let n=_0x33614a(0x17b)+e['id']+'-'+e[_0x33614a(0x17d)][_0x33614a(0x18d)]()[_0x33614a(0x181)](/\s+/g,'-')[_0x33614a(0x14f)](0x0,0x1e);console[_0x33614a(0x16f)](_0x33614a(0x16b)+n);try{const _0x39dcde={};_0x39dcde[_0x33614a(0x191)]='utf8';if(!s(_0x33614a(0x153),_0x39dcde)[_0x33614a(0x15d)](n)){console[_0x33614a(0x19d)](_0x33614a(0x1d5)+n+_0x33614a(0x1ac));continue;}const _0x3d18a8={};_0x3d18a8[_0x33614a(0x17a)]=_0x33614a(0x1b4),(s(_0x33614a(0x189)+n+_0x33614a(0x1ad)+e['id']+':\x20'+e[_0x33614a(0x17d)]+'\x22',_0x3d18a8),console['log'](_0x33614a(0x190)+e['id']+'\x0a'));}catch{console[_0x33614a(0x14b)]('\x0a❌\x20ERROR:\x20Merge\x20conflict\x20or\x20error\x20merging\x20'+e['id']),console[_0x33614a(0x14b)]('\x0aResolve\x20conflicts\x20manually:'),console[_0x33614a(0x14b)](_0x33614a(0x183)),console[_0x33614a(0x14b)](_0x33614a(0x158)),console[_0x33614a(0x14b)](_0x33614a(0x1d7)),console['error'](_0x33614a(0x1bd)+l['join']('\x20')+'\x0a'),process[_0x33614a(0x1c3)](0x1);}}console[_0x33614a(0x16f)](_0x33614a(0x1b1));function _0x1768(_0x31ca49,_0x3eee9a){_0x31ca49=_0x31ca49-0x14a;const _0x143e13=_0x3049();let _0x15ea1a=_0x143e13[_0x31ca49];return _0x15ea1a;}try{const _0x1d2d58={};_0x1d2d58[_0x33614a(0x17a)]='inherit',(s(_0x33614a(0x1a8)+t,_0x1d2d58),console['log'](_0x33614a(0x1b5)));}catch{console[_0x33614a(0x14b)](_0x33614a(0x1de)),console[_0x33614a(0x14b)]('Push\x20manually:\x20git\x20push\x20origin\x20'+t+'\x0a'),process[_0x33614a(0x1c3)](0x1);}console[_0x33614a(0x16f)](_0x33614a(0x1a2));for(let e of i){let n=_0x33614a(0x17b)+e['id']+'-'+e[_0x33614a(0x17d)]['toLowerCase']()[_0x33614a(0x181)](/\s+/g,'-')[_0x33614a(0x14f)](0x0,0x1e);try{const _0x36c483={};_0x36c483['encoding']=_0x33614a(0x19b);if(s(_0x33614a(0x153),_0x36c483)['includes'](n)){const _0x14a3f9={};_0x14a3f9['encoding']=_0x33614a(0x19b),(s('git\x20branch\x20-d\x20'+n,_0x14a3f9),console[_0x33614a(0x16f)](_0x33614a(0x1ba)+n));try{const _0x3dd522={};_0x3dd522['stdio']=_0x33614a(0x1b0),(s(_0x33614a(0x151)+n,_0x3dd522),console[_0x33614a(0x16f)](_0x33614a(0x18a)+n));}catch{console[_0x33614a(0x16f)](_0x33614a(0x1a5)+n+_0x33614a(0x1c1));}}}catch{console['warn']('\x20\x20\x20⚠️\x20\x20Could\x20not\x20delete\x20branch\x20'+n);}}console[_0x33614a(0x16f)](_0x33614a(0x1a3)),console[_0x33614a(0x16f)](_0x33614a(0x1a7)+i[_0x33614a(0x19e)]+_0x33614a(0x1d3)+t+':'),i[_0x33614a(0x1c7)](_0x121da3=>{const _0x4eceee=_0x33614a;console[_0x4eceee(0x16f)](_0x4eceee(0x159)+_0x121da3['id']+':\x20'+_0x121da3[_0x4eceee(0x17d)]);}),console[_0x33614a(0x16f)](_0x33614a(0x170)+t+'\x20branch.'),console[_0x33614a(0x16f)](_0x33614a(0x150)),process['exit'](0x0);
2
+ const _0x516890=_0x2cc3;(function(_0x2359f8,_0x5925d2){const _0x2df63d=_0x2cc3,_0x16d438=_0x2359f8();while(!![]){try{const _0x426cdb=-parseInt(_0x2df63d(0x105))/0x1*(parseInt(_0x2df63d(0xf2))/0x2)+-parseInt(_0x2df63d(0x13f))/0x3*(parseInt(_0x2df63d(0x134))/0x4)+parseInt(_0x2df63d(0x13e))/0x5*(-parseInt(_0x2df63d(0xfa))/0x6)+parseInt(_0x2df63d(0x129))/0x7*(parseInt(_0x2df63d(0x11f))/0x8)+parseInt(_0x2df63d(0x132))/0x9+parseInt(_0x2df63d(0x10e))/0xa*(-parseInt(_0x2df63d(0xc4))/0xb)+parseInt(_0x2df63d(0x147))/0xc;if(_0x426cdb===_0x5925d2)break;else _0x16d438['push'](_0x16d438['shift']());}catch(_0x19c42a){_0x16d438['push'](_0x16d438['shift']());}}}(_0x3a37,0xbb198));const _0x438048=(function(){const _0x16550d=_0x2cc3,_0x535b63={'dApFX':function(_0x264c81,_0x379d12){return _0x264c81!==_0x379d12;},'hmdPq':_0x16550d(0x116),'cSaJQ':_0x16550d(0x137),'ncGwj':'Obayh','BUzmI':function(_0x58a13c,_0x468a3d,_0x5240d4){return _0x58a13c(_0x468a3d,_0x5240d4);},'hnLIz':'inherit'};let _0x7abc8c=!![];return function(_0x23397f,_0x45cb2f){const _0x22756e={'ZGizM':function(_0x2cc251,_0x423ad3,_0xd96dd7){const _0x2e2621=_0x2cc3;return _0x535b63[_0x2e2621(0x114)](_0x2cc251,_0x423ad3,_0xd96dd7);},'DBLWl':_0x535b63['hnLIz']},_0x2c6081=_0x7abc8c?function(){const _0x59fa0a=_0x2cc3;if(_0x535b63[_0x59fa0a(0xec)](_0x535b63['hmdPq'],_0x59fa0a(0x116)))_0x4a4aed['log']('\x20\x20✅\x20'+_0xb6376c['id']+':\x20'+_0x448e3c[_0x59fa0a(0xf5)]);else{if(_0x45cb2f){if(_0x535b63[_0x59fa0a(0x11e)]===_0x535b63[_0x59fa0a(0x102)])_0x22756e[_0x59fa0a(0x119)](_0x1f3e1e,_0x59fa0a(0x13c)+_0x1e026e,{'stdio':_0x22756e[_0x59fa0a(0x133)]}),_0x3354ba[_0x59fa0a(0x10c)](_0x59fa0a(0x13d));else{const _0x22947a=_0x45cb2f[_0x59fa0a(0x12d)](_0x23397f,arguments);return _0x45cb2f=null,_0x22947a;}}}}:function(){};return _0x7abc8c=![],_0x2c6081;};}()),_0x5e60b3=_0x438048(this,function(){const _0x10ee3c=_0x2cc3,_0x16a855={};_0x16a855[_0x10ee3c(0x121)]=_0x10ee3c(0x143);const _0x43567e=_0x16a855;return _0x5e60b3[_0x10ee3c(0x13b)]()[_0x10ee3c(0x123)](_0x43567e[_0x10ee3c(0x121)])[_0x10ee3c(0x13b)]()[_0x10ee3c(0xda)](_0x5e60b3)[_0x10ee3c(0x123)](_0x10ee3c(0x143));});_0x5e60b3();var u=(_0x33965f=>typeof require<'u'?require:typeof Proxy<'u'?new Proxy(_0x33965f,{'get':(_0x32e7da,_0x18f223)=>(typeof require<'u'?require:_0x32e7da)[_0x18f223]}):_0x33965f)(function(_0x376667){const _0x515056=_0x2cc3,_0x5ad9bb={};_0x5ad9bb[_0x515056(0x128)]=function(_0x5cd691,_0x4703cb){return _0x5cd691<_0x4703cb;},_0x5ad9bb[_0x515056(0xd5)]=function(_0x16c0f7,_0x1dbc55){return _0x16c0f7+_0x1dbc55;},_0x5ad9bb['ZhPTc']=function(_0xb26856,_0x4eeb51){return _0xb26856+_0x4eeb51;},_0x5ad9bb[_0x515056(0x13a)]='Dynamic\x20require\x20of\x20\x22';const _0x10cd98=_0x5ad9bb;if(_0x10cd98['FJron'](typeof require,'u'))return require[_0x515056(0x12d)](this,arguments);throw Error(_0x10cd98[_0x515056(0xd5)](_0x10cd98[_0x515056(0x107)](_0x10cd98['SnkGl'],_0x376667),_0x515056(0xeb)));}),{execSync:s}=u(_0x516890(0xc5)),c=u('fs'),g=u(_0x516890(0xdd)),l=process[_0x516890(0x108)][_0x516890(0xff)](0x2),p='.claude/ACTIVE-PLAN';c[_0x516890(0xd7)](p)||(console[_0x516890(0xe1)](_0x516890(0xfb)),console[_0x516890(0xe1)](_0x516890(0xf8)),process[_0x516890(0x144)](0x1));var f=c['readFileSync'](p,'utf8')[_0x516890(0xf7)](),h=g[_0x516890(0xc1)](_0x516890(0x103),f),R=g['join'](h,_0x516890(0x138));c[_0x516890(0xd7)](R)||(console['error'](_0x516890(0x117)),console['error'](_0x516890(0x136)+f),process[_0x516890(0x144)](0x1));var m=JSON[_0x516890(0xd6)](c[_0x516890(0xe4)](R,'utf8')),d=_0x516890(0x130),r=null;l[0x0]===_0x516890(0x125)?(d=_0x516890(0xed),r=l[0x1],r||(console['error'](_0x516890(0x140)),console['error'](_0x516890(0xde)),process[_0x516890(0x144)](0x1))):(r=l[0x0],r||(console[_0x516890(0xe1)](_0x516890(0x110)),console[_0x516890(0xe1)](_0x516890(0x11c)),console[_0x516890(0xe1)](_0x516890(0xe9)),process[_0x516890(0x144)](0x1))),console[_0x516890(0x10c)]('\x0a🔀\x20Merge\x20to\x20Main:\x20'+(d===_0x516890(0xed)?_0x516890(0x122):_0x516890(0xce))+'\x20'+r+'\x0a');var i=[];if(d===_0x516890(0x130)){m['taskFiles'][_0x516890(0x10b)](_0x43c448=>_0x43c448['id']===r)||(console[_0x516890(0xe1)](_0x516890(0x135)+r+_0x516890(0xe2)),process[_0x516890(0x144)](0x1));let n=g[_0x516890(0xc1)](h,_0x516890(0xe3),r+_0x516890(0x109));c['existsSync'](n)||(console[_0x516890(0xe1)](_0x516890(0xdc)+n),process[_0x516890(0x144)](0x1));let o=JSON[_0x516890(0xd6)](c['readFileSync'](n,_0x516890(0xf1)));o['status']!==_0x516890(0xea)&&(console[_0x516890(0xe1)](_0x516890(0x135)+r+_0x516890(0xcd)+o['status']+')'),console['error'](_0x516890(0xf3)+r),process['exit'](0x1)),i['push'](o);}else{let e=m['taskFiles']['map'](_0x22e9f7=>{const _0x23984b=_0x516890,_0x2cafc5={};_0x2cafc5[_0x23984b(0xc2)]=_0x23984b(0xe3),_0x2cafc5[_0x23984b(0x124)]=_0x23984b(0xf1);const _0x1c6bf1=_0x2cafc5;let _0x9d12d8=g[_0x23984b(0xc1)](h,_0x1c6bf1[_0x23984b(0xc2)],_0x22e9f7['id']+_0x23984b(0x109));return c[_0x23984b(0xd7)](_0x9d12d8)?JSON[_0x23984b(0xd6)](c['readFileSync'](_0x9d12d8,_0x1c6bf1[_0x23984b(0x124)])):null;})[_0x516890(0x141)](_0x1dd770=>_0x1dd770!==null&&_0x1dd770['phase']===r);e[_0x516890(0xf9)]===0x0&&(console[_0x516890(0xe1)](_0x516890(0xd8)+r),process[_0x516890(0x144)](0x1));let n=e[_0x516890(0x141)](_0x1c2ca2=>_0x1c2ca2['status']!==_0x516890(0xea));n[_0x516890(0xf9)]>0x0&&(console['error'](_0x516890(0x145)+r+_0x516890(0xdf)),n[_0x516890(0xc8)](_0x2ac51=>{const _0x41064b=_0x516890;console[_0x41064b(0xe1)]('\x20\x20'+_0x2ac51['id']+':\x20'+_0x2ac51['title']+'\x20('+_0x2ac51[_0x41064b(0xc9)]+')');}),console['error']('\x0aComplete\x20all\x20tasks\x20in\x20phase\x20before\x20merging.\x0a'),process[_0x516890(0x144)](0x1)),i=e['filter'](_0xefe0cd=>_0xefe0cd[_0x516890(0xc9)]===_0x516890(0xea));}function _0x2cc3(_0x1b6c4b,_0xd4c6){_0x1b6c4b=_0x1b6c4b-0xbf;const _0x1e65ab=_0x3a37();let _0x5e60b3=_0x1e65ab[_0x1b6c4b];return _0x5e60b3;}console[_0x516890(0x10c)](_0x516890(0xd3)+i['length']+'\x20completed\x20task(s)\x20to\x20merge:\x0a'),i[_0x516890(0xc8)](_0x1c7e16=>{const _0x4be7fc=_0x516890;console[_0x4be7fc(0x10c)]('\x20\x20✅\x20'+_0x1c7e16['id']+':\x20'+_0x1c7e16[_0x4be7fc(0xf5)]);}),console[_0x516890(0x10c)]('');try{const _0x2799e7={};_0x2799e7[_0x516890(0xbf)]=_0x516890(0xf1);let e=s('git\x20branch\x20--show-current',_0x2799e7)[_0x516890(0xf7)]();(e===_0x516890(0x113)||e===_0x516890(0xf6))&&(console[_0x516890(0xe1)](_0x516890(0x104)),console[_0x516890(0xe1)](_0x516890(0x142)),process[_0x516890(0x144)](0x1)),console[_0x516890(0x10c)](_0x516890(0xc3)+e+'\x0a');}catch{console[_0x516890(0xe1)](_0x516890(0x12a)),console[_0x516890(0xe1)](_0x516890(0x12f)),process[_0x516890(0x144)](0x1);}function _0x3a37(){const _0x2c06e4=['title','master','trim','Set\x20active\x20plan\x20first:\x20npm\x20run\x20plan:manager\x0a','length','399090fhDNHh','\x0a❌\x20ERROR:\x20No\x20active\x20plan\x20found','git\x20branch','Uncommitted\x20files:','\x20not\x20found\x20(may\x20not\x20have\x20been\x20pushed)','slice','\x0aYou\x20are\x20now\x20on\x20','\x0a✅\x20MERGE\x20COMPLETE!\x0a','ncGwj','.claude/plans','❌\x20ERROR:\x20Already\x20on\x20main\x20branch','544076LtDRxZ','\x20not\x20found,\x20skipping','ZhPTc','argv','.json','inherit','find','log','1.\x20Fetching\x20latest\x20changes\x20from\x20remote...','40890vQyRNr','⚠️\x20\x20WARNING:\x20Could\x20not\x20fetch\x20from\x20remote\x20(continuing\x20anyway)','\x0a❌\x20ERROR:\x20Task\x20ID\x20required','⚠️\x20\x20WARNING:\x20Could\x20not\x20detect\x20main\x20branch,\x20using\x20\x22main\x22\x0a','\x20\x20\x20⚠️\x20\x20WARNING:\x20Branch\x20','main','BUzmI','6.\x20Cleaning\x20up\x20merged\x20branches...\x0a','zLgMx','\x0a❌\x20ERROR:\x20Task\x20tracker\x20not\x20found','\x20-m\x20\x22Merge\x20','ZGizM','\x20branch.','\x0a❌\x20ERROR:\x20Could\x20not\x20push\x20to\x20remote','Usage:\x20npm\x20run\x20task:merge\x20TASK-001','\x20\x204.\x20Continue\x20with:\x20npm\x20run\x20task:merge\x20','cSaJQ','32TmOuVj','To\x20start\x20next\x20task:\x20npm\x20run\x20task:start\x20TASK-XXX\x0a','vlfAF','Phase','search','vpTrQ','--phase','git\x20merge\x20--no-ff\x20','replace','FJron','1680441XztWqt','❌\x20ERROR:\x20Could\x20not\x20get\x20current\x20branch','pipe','git\x20branch\x20-a','apply','\x20\x20\x20🗑️\x20\x20Deleted\x20remote\x20branch:\x20','Are\x20you\x20in\x20a\x20git\x20repository?\x0a','task','\x0a4.\x20Merging\x20task\x20branch(es)...\x0a','5223645zSwHGK','DBLWl','97784hvLmXg','❌\x20ERROR:\x20Task\x20','Plan:\x20','UuunF','TASK-TRACKER.json','task/','SnkGl','toString','git\x20push\x20origin\x20','\x0a✅\x20Successfully\x20pushed\x20to\x20remote\x0a','115UvFxUU','96eoZSlz','\x0a❌\x20ERROR:\x20Phase\x20name\x20required','filter','Checkout\x20a\x20task\x20branch\x20first\x0a','(((.+)+)+)+$','exit','❌\x20ERROR:\x20Phase\x20','toLowerCase','40981788KZlhts','encoding','includes','join','ViAwt','Current\x20branch:\x20','2123BACAfV','child_process','\x20\x20\x20✅\x20Merged\x20','\x20\x202.\x20git\x20add\x20<resolved-files>','forEach','status','❌\x20ERROR:\x20You\x20have\x20uncommitted\x20changes\x0a','\x20\x20\x20🗑️\x20\x20Deleted\x20local\x20branch:\x20','Merged\x20','\x20is\x20not\x20completed\x20(status:\x20','Task','⚠️\x20\x20WARNING:\x20Could\x20not\x20pull\x20from\x20remote\x20(continuing\x20anyway)','\x0aResolve\x20conflicts\x20manually:','\x20\x201.\x20Fix\x20conflicts\x20in\x20files','\x0a3.\x20Pulling\x20latest\x20','Found\x20','\x0aCommit\x20all\x20changes\x20before\x20merging:','hbfDA','parse','existsSync','❌\x20ERROR:\x20No\x20tasks\x20found\x20in\x20phase:\x20','\x20\x20\x20⚠️\x20\x20Remote\x20branch\x20','constructor','\x0a❌\x20ERROR:\x20Could\x20not\x20checkout\x20','❌\x20ERROR:\x20Task\x20file\x20not\x20found:\x20','path','Usage:\x20npm\x20run\x20task:merge\x20--\x20--phase\x20PHASE-NAME\x0a','\x20has\x20incomplete\x20tasks:\x0a','git\x20fetch\x20origin','error','\x20not\x20found','tasks','readFileSync','\x20task(s)\x20to\x20','\x20\x203.\x20git\x20commit','substring','\x0a2.\x20Checking\x20out\x20','\x20\x20\x20Or:\x20npm\x20run\x20task:merge\x20--\x20--phase\x20PHASE-NAME\x0a','completed','\x22\x20is\x20not\x20supported','dApFX','phase','Push\x20manually:\x20git\x20push\x20origin\x20','git\x20pull\x20origin\x20','warn','utf8','4vaTMox','Complete\x20task\x20first:\x20npm\x20run\x20task:done\x20','stdio'];_0x3a37=function(){return _0x2c06e4;};return _0x3a37();}try{const _0x21ec00={};_0x21ec00[_0x516890(0xbf)]=_0x516890(0xf1);let e=s('git\x20status\x20--porcelain',_0x21ec00);e[_0x516890(0xf7)]()&&(console[_0x516890(0xe1)](_0x516890(0xca)),console[_0x516890(0xe1)](_0x516890(0xfd)),console['error'](e),console[_0x516890(0xe1)](_0x516890(0xd4)),console[_0x516890(0xe1)]('\x20\x20git\x20add\x20.'),console[_0x516890(0xe1)]('\x20\x20git\x20commit\x20-m\x20\x22[TASK-XXX]\x20Description\x22\x0a'),process[_0x516890(0x144)](0x1));}catch{console[_0x516890(0xf0)]('⚠️\x20\x20WARNING:\x20Could\x20not\x20check\x20git\x20status\x0a');}var t=_0x516890(0x113);try{const _0xb8613e={};_0xb8613e['encoding']=_0x516890(0xf1);let e=s(_0x516890(0x12c),_0xb8613e);e['includes'](_0x516890(0xf6))&&!e[_0x516890(0xc0)](_0x516890(0x113))&&(t=_0x516890(0xf6));}catch{console[_0x516890(0xf0)](_0x516890(0x111));}console[_0x516890(0x10c)]('🔄\x20Starting\x20merge\x20process...\x0a'),console[_0x516890(0x10c)](_0x516890(0x10d));try{const _0x4c903c={};_0x4c903c[_0x516890(0xf4)]='inherit',s(_0x516890(0xe0),_0x4c903c);}catch{console[_0x516890(0xf0)](_0x516890(0x10f));}console['log'](_0x516890(0xe8)+t+'\x20branch...');try{const _0x3f0cf7={};_0x3f0cf7['stdio']='inherit',s('git\x20checkout\x20'+t,_0x3f0cf7);}catch{console[_0x516890(0xe1)](_0x516890(0xdb)+t),process[_0x516890(0x144)](0x1);}console['log'](_0x516890(0xd2)+t+'...');try{const _0x26064e={};_0x26064e[_0x516890(0xf4)]=_0x516890(0x10a),s(_0x516890(0xef)+t,_0x26064e);}catch{console['warn'](_0x516890(0xcf));}console[_0x516890(0x10c)](_0x516890(0x131));for(let e of i){let n=_0x516890(0x139)+e['id']+'-'+e['title'][_0x516890(0x146)]()[_0x516890(0x127)](/\s+/g,'-')[_0x516890(0xe7)](0x0,0x1e);console[_0x516890(0x10c)]('\x20\x20\x20Merging:\x20'+n);try{const _0x193e7c={};_0x193e7c[_0x516890(0xbf)]=_0x516890(0xf1);if(!s(_0x516890(0xfc),_0x193e7c)['includes'](n)){console[_0x516890(0xf0)](_0x516890(0x112)+n+_0x516890(0x106));continue;}const _0x46bd18={};_0x46bd18[_0x516890(0xf4)]=_0x516890(0x10a),(s(_0x516890(0x126)+n+_0x516890(0x118)+e['id']+':\x20'+e[_0x516890(0xf5)]+'\x22',_0x46bd18),console[_0x516890(0x10c)](_0x516890(0xc6)+e['id']+'\x0a'));}catch{console[_0x516890(0xe1)]('\x0a❌\x20ERROR:\x20Merge\x20conflict\x20or\x20error\x20merging\x20'+e['id']),console[_0x516890(0xe1)](_0x516890(0xd0)),console[_0x516890(0xe1)](_0x516890(0xd1)),console[_0x516890(0xe1)](_0x516890(0xc7)),console[_0x516890(0xe1)](_0x516890(0xe6)),console['error'](_0x516890(0x11d)+l['join']('\x20')+'\x0a'),process[_0x516890(0x144)](0x1);}}console[_0x516890(0x10c)]('5.\x20Pushing\x20to\x20remote...\x0a');try{const _0x2074b1={};_0x2074b1[_0x516890(0xf4)]=_0x516890(0x10a),(s('git\x20push\x20origin\x20'+t,_0x2074b1),console[_0x516890(0x10c)](_0x516890(0x13d)));}catch{console[_0x516890(0xe1)](_0x516890(0x11b)),console['error'](_0x516890(0xee)+t+'\x0a'),process[_0x516890(0x144)](0x1);}console[_0x516890(0x10c)](_0x516890(0x115));for(let e of i){let n=_0x516890(0x139)+e['id']+'-'+e['title'][_0x516890(0x146)]()['replace'](/\s+/g,'-')[_0x516890(0xe7)](0x0,0x1e);try{const _0x2a32c1={};_0x2a32c1[_0x516890(0xbf)]=_0x516890(0xf1);if(s(_0x516890(0xfc),_0x2a32c1)['includes'](n)){const _0x464f3d={};_0x464f3d['encoding']='utf8',(s('git\x20branch\x20-d\x20'+n,_0x464f3d),console[_0x516890(0x10c)](_0x516890(0xcb)+n));try{const _0x15b6d1={};_0x15b6d1['stdio']=_0x516890(0x12b),(s('git\x20push\x20origin\x20--delete\x20'+n,_0x15b6d1),console[_0x516890(0x10c)](_0x516890(0x12e)+n));}catch{console[_0x516890(0x10c)](_0x516890(0xd9)+n+_0x516890(0xfe));}}}catch{console[_0x516890(0xf0)]('\x20\x20\x20⚠️\x20\x20Could\x20not\x20delete\x20branch\x20'+n);}}console[_0x516890(0x10c)](_0x516890(0x101)),console[_0x516890(0x10c)](_0x516890(0xcc)+i[_0x516890(0xf9)]+_0x516890(0xe5)+t+':'),i[_0x516890(0xc8)](_0x30d7ff=>{const _0x1bb5c1=_0x516890;console['log']('\x20\x20✅\x20'+_0x30d7ff['id']+':\x20'+_0x30d7ff[_0x1bb5c1(0xf5)]);}),console[_0x516890(0x10c)](_0x516890(0x100)+t+_0x516890(0x11a)),console[_0x516890(0x10c)](_0x516890(0x120)),process[_0x516890(0x144)](0x0);
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- var _0xbd96e3=_0x216b;(function(_0x403c70,_0xd0dd96){var _0x258795=_0x216b,_0x1e7900=_0x403c70();while(!![]){try{var _0x9119ee=-parseInt(_0x258795(0x1f0))/0x1+-parseInt(_0x258795(0x1c6))/0x2*(-parseInt(_0x258795(0x1d8))/0x3)+-parseInt(_0x258795(0x1b3))/0x4+parseInt(_0x258795(0x1fc))/0x5*(parseInt(_0x258795(0x1bd))/0x6)+parseInt(_0x258795(0x1ea))/0x7*(parseInt(_0x258795(0x1b2))/0x8)+-parseInt(_0x258795(0x1c7))/0x9+-parseInt(_0x258795(0x1e9))/0xa*(parseInt(_0x258795(0x1f8))/0xb);if(_0x9119ee===_0xd0dd96)break;else _0x1e7900['push'](_0x1e7900['shift']());}catch(_0x58fe78){_0x1e7900['push'](_0x1e7900['shift']());}}}(_0x1def,0x9bedb));var _0x146ede=(function(){var _0x1c49fd=_0x216b,_0x398648={};_0x398648['VlLde']=_0x1c49fd(0x1ce);var _0x15bf38=_0x398648,_0x47ea6c=!![];return function(_0x24be50,_0x1a068a){var _0x21a64a=_0x1c49fd;if(_0x15bf38[_0x21a64a(0x1eb)]===_0x21a64a(0x1dc)){if(_0x2990a0){var _0x5361b6=_0x435d5e[_0x21a64a(0x1e8)](_0x2ecf94,arguments);return _0x88d18e=null,_0x5361b6;}}else{var _0x3576b1=_0x47ea6c?function(){var _0xfd02a9=_0x21a64a;if(_0x1a068a){var _0x2f626d=_0x1a068a[_0xfd02a9(0x1e8)](_0x24be50,arguments);return _0x1a068a=null,_0x2f626d;}}:function(){};return _0x47ea6c=![],_0x3576b1;}};}()),_0x50b6f9=_0x146ede(this,function(){var _0x114910=_0x216b,_0x5c03e0={};_0x5c03e0[_0x114910(0x1e6)]=_0x114910(0x1df);var _0x236fcb=_0x5c03e0;return _0x50b6f9[_0x114910(0x1c4)]()[_0x114910(0x1d1)](_0x236fcb['HwRSJ'])[_0x114910(0x1c4)]()[_0x114910(0x1fa)](_0x50b6f9)[_0x114910(0x1d1)](_0x114910(0x1df));});_0x50b6f9();var c=(_0x168800=>typeof require<'u'?require:typeof Proxy<'u'?new Proxy(_0x168800,{'get':(_0x4a892b,_0x2c8123)=>(typeof require<'u'?require:_0x4a892b)[_0x2c8123]}):_0x168800)(function(_0x36e6b8){var _0x4ee4a0=_0x216b,_0x2213c8={'TyBQe':function(_0x3db851,_0x33a70c){return _0x3db851(_0x33a70c);},'FEMiy':function(_0x5438b2,_0x39523b){return _0x5438b2+_0x39523b;},'MKFkG':_0x4ee4a0(0x1c1),'omOVx':_0x4ee4a0(0x1c0)};if(typeof require<'u')return require[_0x4ee4a0(0x1e8)](this,arguments);throw _0x2213c8['TyBQe'](Error,_0x2213c8[_0x4ee4a0(0x1ed)](_0x2213c8[_0x4ee4a0(0x1ed)](_0x2213c8[_0x4ee4a0(0x1db)],_0x36e6b8),_0x2213c8['omOVx']));}),{execSync:m}=c(_0xbd96e3(0x1b1)),o=c('fs'),a=c(_0xbd96e3(0x1e3)),p=_0xbd96e3(0x1c5);function _0x216b(_0x1fcf80,_0x135d29){_0x1fcf80=_0x1fcf80-0x1ab;var _0x3d4da9=_0x1def();var _0x50b6f9=_0x3d4da9[_0x1fcf80];return _0x50b6f9;}o[_0xbd96e3(0x1bf)](p)||(console[_0xbd96e3(0x1ef)](_0xbd96e3(0x1b6)),console[_0xbd96e3(0x1ef)](_0xbd96e3(0x1c2)),process[_0xbd96e3(0x1e0)](0x1));var u=o[_0xbd96e3(0x1c3)](p,_0xbd96e3(0x1e2))['trim'](),r=a[_0xbd96e3(0x1d7)](_0xbd96e3(0x1c8),u),g=a['join'](r,'TASK-TRACKER.json');function _0x1def(){var _0x1bfbf1=['sort','pending','\x0aBlocked\x20tasks:','inherit','stdio','npm\x20run\x20task:start\x20','child_process','8742392WLmNRw','1523028gVyueJ','split','tasks','\x0a❌\x20ERROR:\x20No\x20active\x20plan\x20found','parse','sjHGb','RCjYC','\x20\x20\x20\x20Waiting\x20for:\x20','\x0aComplete\x20it\x20first:\x20npm\x20run\x20task:done\x20','All\x20pending\x20tasks\x20have\x20incomplete\x20dependencies.','41898wryrWr','completed','existsSync','\x22\x20is\x20not\x20supported','Dynamic\x20require\x20of\x20\x22','Set\x20active\x20plan\x20first:\x20npm\x20run\x20plan:manager\x0a','readFileSync','toString','.claude/ACTIVE-PLAN','158804QCQtDi','5581557dwzvjD','.claude/plans','length','VDDCK','filter','\x0a🚀\x20Starting\x20next\x20available\x20task...\x0a','status','HCLuD','every','\x0a⚠️\x20\x20WARNING:\x20There\x20is\x20already\x20an\x20active\x20task\x0a','search','title','✅\x20Dependencies:\x20','\x20-\x20','KZtyC','activeTask','join','27VwnfAo','map','estimatedHours','MKFkG','naYfK','startedAt','round','(((.+)+)+)+$','exit','⏱️\x20\x20Estimated:\x20','utf8','path','h\x20ago)','dependencies','HwRSJ','\x20(completed)','apply','634540YPgdDJ','7WLCaSd','VlLde','vAgQD','FEMiy','\x0aCheck\x20status:\x20npm\x20run\x20task:status\x0a','error','345113FKeCvC','taskFiles','📌\x20Active:\x20','log','description','Initialize\x20first:\x20npm\x20run\x20plan:init\x0a','fFRKL','Started:\x20','77sVmhmh','Check\x20status:\x20npm\x20run\x20task:status\x0a','constructor','\x0a❌\x20ERROR:\x20Task\x20tracker\x20not\x20found','445ldIUIH','Or\x20switch\x20to\x20it:\x20npm\x20run\x20task:start\x20','.json'];_0x1def=function(){return _0x1bfbf1;};return _0x1def();}o[_0xbd96e3(0x1bf)](g)||(console[_0xbd96e3(0x1ef)](_0xbd96e3(0x1fb)),console[_0xbd96e3(0x1ef)]('Plan:\x20'+u),console['error'](_0xbd96e3(0x1f5)),process['exit'](0x1));var i=JSON[_0xbd96e3(0x1b7)](o[_0xbd96e3(0x1c3)](g,_0xbd96e3(0x1e2)));if(i[_0xbd96e3(0x1d6)]){console[_0xbd96e3(0x1f3)](_0xbd96e3(0x1d0));let e=a[_0xbd96e3(0x1d7)](r,_0xbd96e3(0x1b5),i['activeTask']+_0xbd96e3(0x1fe));if(o[_0xbd96e3(0x1bf)](e)){let n=JSON[_0xbd96e3(0x1b7)](o[_0xbd96e3(0x1c3)](e,'utf8'));if(console[_0xbd96e3(0x1f3)](_0xbd96e3(0x1f2)+n['id']+_0xbd96e3(0x1d4)+n[_0xbd96e3(0x1d2)]),n[_0xbd96e3(0x1dd)]){let s=new Date(n[_0xbd96e3(0x1dd)]),l=Math[_0xbd96e3(0x1de)]((new Date()-s)/(0x3e8*0x3c*0x3c)*0xa)/0xa;console['log'](_0xbd96e3(0x1f7)+s['toLocaleString']()+'\x20('+l+_0xbd96e3(0x1e4));}console['log'](_0xbd96e3(0x1bb)+i[_0xbd96e3(0x1d6)]),console[_0xbd96e3(0x1f3)](_0xbd96e3(0x1fd)+i['activeTask']),console[_0xbd96e3(0x1f3)](''),process['exit'](0x1);}}var d=i[_0xbd96e3(0x1f1)][_0xbd96e3(0x1cb)](_0x19525e=>_0x19525e[_0xbd96e3(0x1cd)]===_0xbd96e3(0x1ac))[_0xbd96e3(0x1d9)](_0x32d6da=>{var _0x26a6fe=_0xbd96e3,_0x3e58bf={};_0x3e58bf[_0x26a6fe(0x1ec)]=_0x26a6fe(0x1b5),_0x3e58bf[_0x26a6fe(0x1b8)]='utf8';var _0x69cbaa=_0x3e58bf;let _0x5932fe=a[_0x26a6fe(0x1d7)](r,_0x69cbaa[_0x26a6fe(0x1ec)],_0x32d6da['id']+_0x26a6fe(0x1fe));return o['existsSync'](_0x5932fe)?JSON[_0x26a6fe(0x1b7)](o['readFileSync'](_0x5932fe,_0x69cbaa['sjHGb'])):null;})[_0xbd96e3(0x1cb)](_0x549619=>_0x549619!==null);d['length']===0x0&&(console[_0xbd96e3(0x1f3)]('\x0a🎉\x20No\x20pending\x20tasks!\x20All\x20tasks\x20completed.\x0a'),console[_0xbd96e3(0x1f3)](_0xbd96e3(0x1f9)),process[_0xbd96e3(0x1e0)](0x0));var k=i[_0xbd96e3(0x1f1)][_0xbd96e3(0x1cb)](_0x5e73e2=>_0x5e73e2['status']===_0xbd96e3(0x1be))['map'](_0x33d74f=>_0x33d74f['id']),f=d[_0xbd96e3(0x1cb)](_0x407008=>!_0x407008[_0xbd96e3(0x1e5)]||_0x407008[_0xbd96e3(0x1e5)]['length']===0x0?!0x0:_0x407008[_0xbd96e3(0x1e5)][_0xbd96e3(0x1cf)](_0x2f57e2=>k['includes'](_0x2f57e2)));f['length']===0x0&&(console['log']('\x0a⚠️\x20\x20No\x20tasks\x20available\x20to\x20start\x0a'),console[_0xbd96e3(0x1f3)](_0xbd96e3(0x1bc)),console[_0xbd96e3(0x1f3)](_0xbd96e3(0x1ad)),d['forEach'](_0x170fe8=>{var _0x1ec3fa=_0xbd96e3,_0x38f835={};_0x38f835[_0x1ec3fa(0x1b9)]=function(_0x360597,_0x3e8edd){return _0x360597>_0x3e8edd;};var _0x1bf2b0=_0x38f835;let _0x3dc89c=_0x170fe8[_0x1ec3fa(0x1e5)]?.[_0x1ec3fa(0x1cb)](_0x5273ae=>!k['includes'](_0x5273ae))||[];_0x1bf2b0['RCjYC'](_0x3dc89c[_0x1ec3fa(0x1c9)],0x0)&&(console[_0x1ec3fa(0x1f3)]('\x20\x20'+_0x170fe8['id']+':\x20'+_0x170fe8[_0x1ec3fa(0x1d2)]),console['log'](_0x1ec3fa(0x1ba)+_0x3dc89c[_0x1ec3fa(0x1d7)](',\x20')));}),console[_0xbd96e3(0x1f3)](_0xbd96e3(0x1ee)),process[_0xbd96e3(0x1e0)](0x1));var t=f[_0xbd96e3(0x1ab)]((_0x3f5261,_0x145e9a)=>{var _0x3d3956=_0xbd96e3,_0xa459bc={'KZtyC':function(_0x37e559,_0x749d72){return _0x37e559(_0x749d72);},'fFRKL':function(_0x4cd8e9,_0x5a91ce){return _0x4cd8e9(_0x5a91ce);},'VDDCK':function(_0x1ba6be,_0x5ae288){return _0x1ba6be-_0x5ae288;}};let _0x535c41=_0xa459bc[_0x3d3956(0x1d5)](parseInt,_0x3f5261['id'][_0x3d3956(0x1b4)]('-')[0x1]),_0x4ceb33=_0xa459bc[_0x3d3956(0x1f6)](parseInt,_0x145e9a['id'][_0x3d3956(0x1b4)]('-')[0x1]);return _0xa459bc[_0x3d3956(0x1ca)](_0x535c41,_0x4ceb33);})[0x0];console[_0xbd96e3(0x1f3)](_0xbd96e3(0x1cc)),console['log']('📌\x20'+t['id']+':\x20'+t['title']),console[_0xbd96e3(0x1f3)]('📝\x20'+t[_0xbd96e3(0x1f4)]),console[_0xbd96e3(0x1f3)](_0xbd96e3(0x1e1)+t[_0xbd96e3(0x1da)]+'h'),t[_0xbd96e3(0x1e5)]&&t[_0xbd96e3(0x1e5)][_0xbd96e3(0x1c9)]>0x0&&console[_0xbd96e3(0x1f3)](_0xbd96e3(0x1d3)+t[_0xbd96e3(0x1e5)][_0xbd96e3(0x1d7)](',\x20')+_0xbd96e3(0x1e7)),console['log']('');try{var _0x112045={};_0x112045[_0xbd96e3(0x1af)]=_0xbd96e3(0x1ae),m(_0xbd96e3(0x1b0)+t['id'],_0x112045);}catch{console[_0xbd96e3(0x1ef)]('\x0a❌\x20Failed\x20to\x20start\x20task\x20'+t['id']),process[_0xbd96e3(0x1e0)](0x1);}
2
+ var _0x5ead03=_0x4ff6;(function(_0x1bb3aa,_0x282d23){var _0x2a8fe9=_0x4ff6,_0x3d7910=_0x1bb3aa();while(!![]){try{var _0x48f094=-parseInt(_0x2a8fe9(0x234))/0x1*(-parseInt(_0x2a8fe9(0x20c))/0x2)+parseInt(_0x2a8fe9(0x217))/0x3*(parseInt(_0x2a8fe9(0x1e7))/0x4)+parseInt(_0x2a8fe9(0x1f2))/0x5*(-parseInt(_0x2a8fe9(0x1e4))/0x6)+-parseInt(_0x2a8fe9(0x226))/0x7*(-parseInt(_0x2a8fe9(0x22b))/0x8)+-parseInt(_0x2a8fe9(0x21f))/0x9+parseInt(_0x2a8fe9(0x1e3))/0xa*(parseInt(_0x2a8fe9(0x20f))/0xb)+-parseInt(_0x2a8fe9(0x1f9))/0xc;if(_0x48f094===_0x282d23)break;else _0x3d7910['push'](_0x3d7910['shift']());}catch(_0x5c0eb3){_0x3d7910['push'](_0x3d7910['shift']());}}}(_0x5331,0x64ec0));var _0x515119=(function(){var _0x4fcac2=_0x4ff6,_0x25ddd8={'hlfZv':_0x4fcac2(0x1e9),'QivkV':function(_0x50bb5d,_0x7a1eb0,_0x2faebc){return _0x50bb5d(_0x7a1eb0,_0x2faebc);}},_0xc1c810=!![];return function(_0x455d14,_0xa50dde){var _0x161cbb=_0x4fcac2,_0x4c7b27={'vhqxU':function(_0x302e69,_0x14ec8d,_0xdd7535){var _0xfca1a9=_0x4ff6;return _0x25ddd8[_0xfca1a9(0x1e8)](_0x302e69,_0x14ec8d,_0xdd7535);},'kKhSM':_0x161cbb(0x1ee)},_0x1fc5be=_0xc1c810?function(){var _0x40fa5c=_0x161cbb;if(_0x25ddd8[_0x40fa5c(0x225)]===_0x40fa5c(0x1e9)){if(_0xa50dde){var _0xaa63fa=_0xa50dde[_0x40fa5c(0x1ed)](_0x455d14,arguments);return _0xa50dde=null,_0xaa63fa;}}else _0x4c7b27[_0x40fa5c(0x219)](_0x35af87,'npm\x20run\x20task:start\x20'+_0x5bc49c['id'],{'stdio':_0x4c7b27[_0x40fa5c(0x202)]});}:function(){};return _0xc1c810=![],_0x1fc5be;};}()),_0x514838=_0x515119(this,function(){var _0xde6958=_0x4ff6,_0xe3f837={};_0xe3f837['YCyoZ']=_0xde6958(0x1ff);var _0xd2f552=_0xe3f837;return _0x514838[_0xde6958(0x1f6)]()[_0xde6958(0x229)](_0xd2f552[_0xde6958(0x201)])[_0xde6958(0x1f6)]()[_0xde6958(0x21c)](_0x514838)[_0xde6958(0x229)]('(((.+)+)+)+$');});_0x514838();var c=(_0x2f87de=>typeof require<'u'?require:typeof Proxy<'u'?new Proxy(_0x2f87de,{'get':(_0x39c9a6,_0x3cfa41)=>(typeof require<'u'?require:_0x39c9a6)[_0x3cfa41]}):_0x2f87de)(function(_0x37c49c){var _0x4255a4=_0x4ff6,_0x16b055={'gEmwk':function(_0x20a4a0,_0x3d8cc5){return _0x20a4a0<_0x3d8cc5;},'wSDnd':function(_0x12465a,_0x160498){return _0x12465a(_0x160498);},'KDhYr':function(_0x172774,_0x5b0f27){return _0x172774+_0x5b0f27;},'couvP':_0x4255a4(0x208)};if(_0x16b055[_0x4255a4(0x222)](typeof require,'u'))return require['apply'](this,arguments);throw _0x16b055[_0x4255a4(0x20b)](Error,_0x16b055['KDhYr']('Dynamic\x20require\x20of\x20\x22',_0x37c49c)+_0x16b055[_0x4255a4(0x1f5)]);}),{execSync:m}=c(_0x5ead03(0x211)),o=c('fs'),a=c(_0x5ead03(0x1df)),p=_0x5ead03(0x1ef);o[_0x5ead03(0x21e)](p)||(console[_0x5ead03(0x228)](_0x5ead03(0x21d)),console[_0x5ead03(0x228)](_0x5ead03(0x1e6)),process[_0x5ead03(0x221)](0x1));var u=o[_0x5ead03(0x1e1)](p,_0x5ead03(0x1e0))[_0x5ead03(0x235)](),r=a['join']('.claude/plans',u),g=a[_0x5ead03(0x200)](r,'TASK-TRACKER.json');o[_0x5ead03(0x21e)](g)||(console[_0x5ead03(0x228)](_0x5ead03(0x1fc)),console[_0x5ead03(0x228)]('Plan:\x20'+u),console[_0x5ead03(0x228)](_0x5ead03(0x207)),process['exit'](0x1));function _0x4ff6(_0x3e0803,_0x8e52c2){_0x3e0803=_0x3e0803-0x1de;var _0x25058c=_0x5331();var _0x514838=_0x25058c[_0x3e0803];return _0x514838;}var i=JSON[_0x5ead03(0x210)](o[_0x5ead03(0x1e1)](g,_0x5ead03(0x1e0)));if(i[_0x5ead03(0x223)]){console[_0x5ead03(0x209)](_0x5ead03(0x21a));let e=a[_0x5ead03(0x200)](r,'tasks',i[_0x5ead03(0x223)]+_0x5ead03(0x1fd));if(o['existsSync'](e)){let n=JSON['parse'](o[_0x5ead03(0x1e1)](e,_0x5ead03(0x1e0)));if(console[_0x5ead03(0x209)](_0x5ead03(0x230)+n['id']+_0x5ead03(0x1f1)+n['title']),n[_0x5ead03(0x1fb)]){let s=new Date(n[_0x5ead03(0x1fb)]),l=Math[_0x5ead03(0x1ea)]((new Date()-s)/(0x3e8*0x3c*0x3c)*0xa)/0xa;console[_0x5ead03(0x209)](_0x5ead03(0x232)+s[_0x5ead03(0x212)]()+'\x20('+l+_0x5ead03(0x215));}console[_0x5ead03(0x209)](_0x5ead03(0x205)+i[_0x5ead03(0x223)]),console[_0x5ead03(0x209)](_0x5ead03(0x22e)+i[_0x5ead03(0x223)]),console[_0x5ead03(0x209)](''),process[_0x5ead03(0x221)](0x1);}}var d=i['taskFiles'][_0x5ead03(0x1ec)](_0x4bfcb3=>_0x4bfcb3[_0x5ead03(0x224)]===_0x5ead03(0x1fe))[_0x5ead03(0x213)](_0x16d224=>{var _0x46a446=_0x5ead03,_0x514e42={};_0x514e42[_0x46a446(0x203)]=_0x46a446(0x227),_0x514e42[_0x46a446(0x1f7)]=_0x46a446(0x1e0);var _0x1c3cdb=_0x514e42;let _0xa0bdf6=a['join'](r,_0x1c3cdb[_0x46a446(0x203)],_0x16d224['id']+'.json');return o[_0x46a446(0x21e)](_0xa0bdf6)?JSON[_0x46a446(0x210)](o[_0x46a446(0x1e1)](_0xa0bdf6,_0x1c3cdb[_0x46a446(0x1f7)])):null;})[_0x5ead03(0x1ec)](_0x5ef747=>_0x5ef747!==null);d['length']===0x0&&(console[_0x5ead03(0x209)](_0x5ead03(0x1f3)),console[_0x5ead03(0x209)](_0x5ead03(0x21b)),process[_0x5ead03(0x221)](0x0));function _0x5331(){var _0x146e02=['inherit','.claude/ACTIVE-PLAN','npm\x20run\x20task:start\x20','\x20-\x20','65MUayAW','\x0a🎉\x20No\x20pending\x20tasks!\x20All\x20tasks\x20completed.\x0a','title','couvP','toString','gynkg','forEach','16724964wkUJgT','📝\x20','startedAt','\x0a❌\x20ERROR:\x20Task\x20tracker\x20not\x20found','.json','pending','(((.+)+)+)+$','join','YCyoZ','kKhSM','tUwFL','length','\x0aComplete\x20it\x20first:\x20npm\x20run\x20task:done\x20','stdio','Initialize\x20first:\x20npm\x20run\x20plan:init\x0a','\x22\x20is\x20not\x20supported','log','cVYxD','wSDnd','4OLJEUY','split','every','12089MKRgNv','parse','child_process','toLocaleString','map','\x20(completed)','h\x20ago)','\x0a❌\x20Failed\x20to\x20start\x20task\x20','783dtCAze','\x0aCheck\x20status:\x20npm\x20run\x20task:status\x0a','vhqxU','\x0a⚠️\x20\x20WARNING:\x20There\x20is\x20already\x20an\x20active\x20task\x0a','Check\x20status:\x20npm\x20run\x20task:status\x0a','constructor','\x0a❌\x20ERROR:\x20No\x20active\x20plan\x20found','existsSync','1290978UVPAhc','sort','exit','gEmwk','activeTask','status','hlfZv','7GkaUoX','tasks','error','search','YwWxD','5747464hrRkVk','✅\x20Dependencies:\x20','estimatedHours','Or\x20switch\x20to\x20it:\x20npm\x20run\x20task:start\x20','includes','📌\x20Active:\x20','dependencies','Started:\x20','\x0a⚠️\x20\x20No\x20tasks\x20available\x20to\x20start\x0a','404816vELitU','trim','taskFiles','path','utf8','readFileSync','⏱️\x20\x20Estimated:\x20','380sxZVze','56886vWHWMu','IQkLe','Set\x20active\x20plan\x20first:\x20npm\x20run\x20plan:manager\x0a','7724nNWZts','QivkV','iQsmt','round','\x0a🚀\x20Starting\x20next\x20available\x20task...\x0a','filter','apply'];_0x5331=function(){return _0x146e02;};return _0x5331();}var k=i[_0x5ead03(0x1de)]['filter'](_0x139b8b=>_0x139b8b[_0x5ead03(0x224)]==='completed')[_0x5ead03(0x213)](_0x1deaa9=>_0x1deaa9['id']),f=d[_0x5ead03(0x1ec)](_0x5b3d0b=>!_0x5b3d0b[_0x5ead03(0x231)]||_0x5b3d0b['dependencies'][_0x5ead03(0x204)]===0x0?!0x0:_0x5b3d0b[_0x5ead03(0x231)][_0x5ead03(0x20e)](_0x5b689a=>k[_0x5ead03(0x22f)](_0x5b689a)));f[_0x5ead03(0x204)]===0x0&&(console[_0x5ead03(0x209)](_0x5ead03(0x233)),console['log']('All\x20pending\x20tasks\x20have\x20incomplete\x20dependencies.'),console[_0x5ead03(0x209)]('\x0aBlocked\x20tasks:'),d[_0x5ead03(0x1f8)](_0x4d7afc=>{var _0x22c362=_0x5ead03,_0x16c481={};_0x16c481['IQkLe']=function(_0x34aa88,_0x3af11a){return _0x34aa88>_0x3af11a;};var _0x4304c0=_0x16c481;let _0x21b8b5=_0x4d7afc['dependencies']?.[_0x22c362(0x1ec)](_0x1765ad=>!k['includes'](_0x1765ad))||[];_0x4304c0[_0x22c362(0x1e5)](_0x21b8b5[_0x22c362(0x204)],0x0)&&(console['log']('\x20\x20'+_0x4d7afc['id']+':\x20'+_0x4d7afc[_0x22c362(0x1f4)]),console[_0x22c362(0x209)]('\x20\x20\x20\x20Waiting\x20for:\x20'+_0x21b8b5[_0x22c362(0x200)](',\x20')));}),console[_0x5ead03(0x209)](_0x5ead03(0x218)),process[_0x5ead03(0x221)](0x1));var t=f[_0x5ead03(0x220)]((_0xeb5cce,_0x48b8cf)=>{var _0xc864b0=_0x5ead03,_0x1694da={'YwWxD':function(_0x526a14,_0x2504d6){return _0x526a14(_0x2504d6);},'cVYxD':function(_0x141f64,_0x263d7d){return _0x141f64-_0x263d7d;}};let _0x1016f4=_0x1694da[_0xc864b0(0x22a)](parseInt,_0xeb5cce['id'][_0xc864b0(0x20d)]('-')[0x1]),_0x4c9755=parseInt(_0x48b8cf['id'][_0xc864b0(0x20d)]('-')[0x1]);return _0x1694da[_0xc864b0(0x20a)](_0x1016f4,_0x4c9755);})[0x0];console['log'](_0x5ead03(0x1eb)),console[_0x5ead03(0x209)]('📌\x20'+t['id']+':\x20'+t['title']),console[_0x5ead03(0x209)](_0x5ead03(0x1fa)+t['description']),console['log'](_0x5ead03(0x1e2)+t[_0x5ead03(0x22d)]+'h'),t['dependencies']&&t['dependencies'][_0x5ead03(0x204)]>0x0&&console[_0x5ead03(0x209)](_0x5ead03(0x22c)+t[_0x5ead03(0x231)][_0x5ead03(0x200)](',\x20')+_0x5ead03(0x214)),console[_0x5ead03(0x209)]('');try{var _0x3e2cde={};_0x3e2cde[_0x5ead03(0x206)]=_0x5ead03(0x1ee),m(_0x5ead03(0x1f0)+t['id'],_0x3e2cde);}catch{console['error'](_0x5ead03(0x216)+t['id']),process[_0x5ead03(0x221)](0x1);}
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- var _0x10e55e=_0xed7f;(function(_0x425f52,_0x124065){var _0x354822=_0xed7f,_0x115b49=_0x425f52();while(!![]){try{var _0x3fe625=parseInt(_0x354822(0xaf))/0x1+parseInt(_0x354822(0xbd))/0x2*(-parseInt(_0x354822(0xb8))/0x3)+-parseInt(_0x354822(0xcc))/0x4+-parseInt(_0x354822(0xd4))/0x5+parseInt(_0x354822(0xc4))/0x6+-parseInt(_0x354822(0xd3))/0x7+parseInt(_0x354822(0xc2))/0x8;if(_0x3fe625===_0x124065)break;else _0x115b49['push'](_0x115b49['shift']());}catch(_0x104c49){_0x115b49['push'](_0x115b49['shift']());}}}(_0x47e9,0x9bbef));function _0x47e9(){var _0x1e12ce=['744512GoQRCE','\x20is\x20now\x20active!','ZatCH','Hook\x20not\x20found:\x20','When\x20done,\x20run:\x20npm\x20run\x20task:done\x20','start-task.js','exit','apply','\x0a❌\x20Failed\x20to\x20start\x20task\x20','3iehZdG','.\x20Checked:\x0a\x20\x20-\x20','mogdJ','.claude','TiUQI','795038XChOhf','yKbdS','toString','FgqLV','path','9810568uAwlTf','🚀\x20Starting\x20task:\x20','4889310oQrijY','\x20\x20\x20Or:\x20npm\x20run\x20task:start\x20TASK-001','EbHEO','\x0aUsage:\x20node\x20scripts/task-start.js\x20TASK-001','node\x20\x22','❌\x20Error:\x20Task\x20ID\x20is\x20required','stdio','vSIiz','1823152DxMoyI','YbZrW','argv','Dynamic\x20require\x20of\x20\x22','JhBMC','WnwxC','log','7772233TCzWSg','920785cIOWDu','\x22\x20is\x20not\x20supported','\x0a✅\x20Task\x20','inherit','ShZCp','error','search','KwWfs','KwVXA','(((.+)+)+)+$','CIrXt','\x0aYou\x20can\x20now\x20work\x20on\x20this\x20task.','GCYtl','\x0a\x20\x20-\x20','lXlFt'];_0x47e9=function(){return _0x1e12ce;};return _0x47e9();}var _0x21fa2e=(function(){var _0xa4e6f9=_0xed7f,_0x536be0={};_0x536be0[_0xa4e6f9(0xbe)]=_0xa4e6f9(0xae),_0x536be0['EbHEO']=function(_0x4c47f5,_0x4ca2ac){return _0x4c47f5!==_0x4ca2ac;},_0x536be0[_0xa4e6f9(0xa7)]=_0xa4e6f9(0xd0);var _0xd39ebb=_0x536be0,_0x335c56=!![];return function(_0x4ac6fd,_0x5360a5){var _0x254065=_0xa4e6f9,_0x25d2b5={};_0x25d2b5[_0x254065(0xcb)]=_0xd39ebb[_0x254065(0xbe)];var _0x2f80f0=_0x25d2b5;if(_0xd39ebb[_0x254065(0xc6)](_0x254065(0xc0),_0xd39ebb[_0x254065(0xa7)])){var _0x3cda38=_0x335c56?function(){var _0x34f67e=_0x254065,_0x188fa9={'ShZCp':function(_0x38ee49,_0x19dce9,_0x3bfd1d){return _0x38ee49(_0x19dce9,_0x3bfd1d);},'CIrXt':_0x34f67e(0xb3)};if(_0x5360a5){if('lXlFt'!==_0x2f80f0[_0x34f67e(0xcb)]){var _0x1919ed={};_0x1919ed[_0x34f67e(0xca)]=_0x34f67e(0xa3),(_0x188fa9[_0x34f67e(0xa4)](_0x47d023,_0x34f67e(0xc8)+_0x12bd74+'\x22\x20'+_0x46dced,_0x1919ed),_0x1bfafd[_0x34f67e(0xd2)]('\x0a✅\x20Task\x20'+_0x4d6477+'\x20is\x20now\x20active!'),_0x11718a[_0x34f67e(0xd2)](_0x34f67e(0xab)),_0x5c14fa['log'](_0x188fa9[_0x34f67e(0xaa)]+_0x5d6f05));}else{var _0x4c1b49=_0x5360a5[_0x34f67e(0xb6)](_0x4ac6fd,arguments);return _0x5360a5=null,_0x4c1b49;}}}:function(){};return _0x335c56=![],_0x3cda38;}else{var _0x19cd00=_0x4215bc?function(){var _0x31720a=_0x254065;if(_0x3072aa){var _0x4409df=_0x3d8224[_0x31720a(0xb6)](_0x33d32b,arguments);return _0x1c61b2=null,_0x4409df;}}:function(){};return _0x57d356=![],_0x19cd00;}};}()),_0x58d1d1=_0x21fa2e(this,function(){var _0x44e2d0=_0xed7f,_0x4b2e3c={};_0x4b2e3c[_0x44e2d0(0xb1)]=_0x44e2d0(0xa9);var _0x18577e=_0x4b2e3c;return _0x58d1d1[_0x44e2d0(0xbf)]()[_0x44e2d0(0xa6)](_0x18577e[_0x44e2d0(0xb1)])[_0x44e2d0(0xbf)]()['constructor'](_0x58d1d1)[_0x44e2d0(0xa6)](_0x44e2d0(0xa9));});_0x58d1d1();var e=(_0x478b40=>typeof require<'u'?require:typeof Proxy<'u'?new Proxy(_0x478b40,{'get':(_0x37935e,_0x9e959d)=>(typeof require<'u'?require:_0x37935e)[_0x9e959d]}):_0x478b40)(function(_0xa60e9e){var _0x329c2a=_0xed7f,_0x3b3bcc={'WnwxC':function(_0x36799,_0x2092bd){return _0x36799<_0x2092bd;},'JWIpI':function(_0x5d4717,_0x5c1993){return _0x5d4717(_0x5c1993);},'mogdJ':function(_0x1a5626,_0x560bfc){return _0x1a5626+_0x560bfc;},'YbZrW':function(_0x85888e,_0x4a79d7){return _0x85888e+_0x4a79d7;},'TiUQI':_0x329c2a(0xcf)};if(_0x3b3bcc[_0x329c2a(0xd1)](typeof require,'u'))return require[_0x329c2a(0xb6)](this,arguments);throw _0x3b3bcc['JWIpI'](Error,_0x3b3bcc[_0x329c2a(0xba)](_0x3b3bcc[_0x329c2a(0xcd)](_0x3b3bcc[_0x329c2a(0xbc)],_0xa60e9e),_0x329c2a(0xd5)));}),{execSync:a}=e('child_process'),t=e(_0x10e55e(0xc1)),c=e('fs'),n=process[_0x10e55e(0xce)][0x2];n||(console[_0x10e55e(0xa5)](_0x10e55e(0xc9)),console[_0x10e55e(0xa5)](_0x10e55e(0xc7)),console[_0x10e55e(0xa5)](_0x10e55e(0xc5)),process[_0x10e55e(0xb5)](0x1));function _0xed7f(_0x581731,_0x3987a5){_0x581731=_0x581731-0xa3;var _0x461f6c=_0x47e9();var _0x58d1d1=_0x461f6c[_0x581731];return _0x58d1d1;}var i=_0x110963=>{var _0x4bb8b3=_0x10e55e,_0x2ea956={};_0x2ea956[_0x4bb8b3(0xa8)]='hooks',_0x2ea956[_0x4bb8b3(0xac)]=_0x4bb8b3(0xbb);var _0x5962a3=_0x2ea956;let _0x43c1cc=t['join'](__dirname,'..',_0x5962a3[_0x4bb8b3(0xa8)],_0x110963);if(c['existsSync'](_0x43c1cc))return _0x43c1cc;let _0x3d0586=t['join'](__dirname,'..',_0x5962a3[_0x4bb8b3(0xac)],_0x5962a3[_0x4bb8b3(0xa8)],_0x110963);if(c['existsSync'](_0x3d0586))return _0x3d0586;throw new Error(_0x4bb8b3(0xb2)+_0x110963+_0x4bb8b3(0xb9)+_0x43c1cc+_0x4bb8b3(0xad)+_0x3d0586);},d=i(_0x10e55e(0xb4));console[_0x10e55e(0xd2)](_0x10e55e(0xc3)+n+'\x0a');try{var _0x118169={};_0x118169[_0x10e55e(0xca)]=_0x10e55e(0xa3),(a(_0x10e55e(0xc8)+d+'\x22\x20'+n,_0x118169),console[_0x10e55e(0xd2)](_0x10e55e(0xd6)+n+_0x10e55e(0xb0)),console['log'](_0x10e55e(0xab)),console['log'](_0x10e55e(0xb3)+n));}catch{console[_0x10e55e(0xa5)](_0x10e55e(0xb7)+n),process[_0x10e55e(0xb5)](0x1);}
2
+ function _0x15a3(){var _0x2d693b=['29585YoZmgQ','When\x20done,\x20run:\x20npm\x20run\x20task:done\x20','search','\x0aYou\x20can\x20now\x20work\x20on\x20this\x20task.','stdio','inherit','Hook\x20not\x20found:\x20','error','7PxWyrx','apply','ixmtU','1848HGEsHS','log','node\x20\x22','\x0a❌\x20Failed\x20to\x20start\x20task\x20','pOdfB','.\x20Checked:\x0a\x20\x20-\x20','\x0a✅\x20Task\x20','argv','4368464XBQkHm','(((.+)+)+)+$','existsSync','691209iKpFTO','748stOWKi','hooks','exit','\x20\x20\x20Or:\x20npm\x20run\x20task:start\x20TASK-001','DBilW','🚀\x20Starting\x20task:\x20','\x0aUsage:\x20node\x20scripts/task-start.js\x20TASK-001','start-task.js','ytJcW','\x0a\x20\x20-\x20','toString','589940UzUuJi','86916bqhhrT','4696UYZdpd','child_process','join','102uaoAQF','366580CduxoS','NpMME','Dynamic\x20require\x20of\x20\x22','70vheDIM','❌\x20Error:\x20Task\x20ID\x20is\x20required'];_0x15a3=function(){return _0x2d693b;};return _0x15a3();}var _0x1ee2c0=_0xb521;(function(_0xc7c193,_0x303a34){var _0x3458f5=_0xb521,_0x30b3c3=_0xc7c193();while(!![]){try{var _0x26ce2e=-parseInt(_0x3458f5(0x190))/0x1+-parseInt(_0x3458f5(0x196))/0x2+parseInt(_0x3458f5(0x1a6))/0x3*(parseInt(_0x3458f5(0x192))/0x4)+-parseInt(_0x3458f5(0x19b))/0x5*(parseInt(_0x3458f5(0x195))/0x6)+-parseInt(_0x3458f5(0x1a3))/0x7*(-parseInt(_0x3458f5(0x1ae))/0x8)+-parseInt(_0x3458f5(0x1b1))/0x9*(-parseInt(_0x3458f5(0x199))/0xa)+parseInt(_0x3458f5(0x1b2))/0xb*(-parseInt(_0x3458f5(0x191))/0xc);if(_0x26ce2e===_0x303a34)break;else _0x30b3c3['push'](_0x30b3c3['shift']());}catch(_0xd322d4){_0x30b3c3['push'](_0x30b3c3['shift']());}}}(_0x15a3,0x6b8ba));var _0x4baac8=(function(){var _0x5c167d=!![];return function(_0x1b31fd,_0x2ed812){var _0x3a8edd=_0x5c167d?function(){if(_0x2ed812){var _0x20109e=_0x2ed812['apply'](_0x1b31fd,arguments);return _0x2ed812=null,_0x20109e;}}:function(){};return _0x5c167d=![],_0x3a8edd;};}()),_0x5a21ce=_0x4baac8(this,function(){var _0x1f368b=_0xb521,_0x368c09={};_0x368c09['RBuMs']=_0x1f368b(0x1af);var _0xae8f79=_0x368c09;return _0x5a21ce['toString']()['search'](_0xae8f79['RBuMs'])[_0x1f368b(0x18f)]()['constructor'](_0x5a21ce)[_0x1f368b(0x19d)](_0xae8f79['RBuMs']);});_0x5a21ce();function _0xb521(_0x3cd213,_0x17fa98){_0x3cd213=_0x3cd213-0x186;var _0x5c55a0=_0x15a3();var _0x5a21ce=_0x5c55a0[_0x3cd213];return _0x5a21ce;}var e=(_0x5b65b3=>typeof require<'u'?require:typeof Proxy<'u'?new Proxy(_0x5b65b3,{'get':(_0x590881,_0x4c9bbd)=>(typeof require<'u'?require:_0x590881)[_0x4c9bbd]}):_0x5b65b3)(function(_0x55b801){var _0x11fcc5=_0xb521,_0x53b5b0={'sUcyL':function(_0x5506cf,_0x1e1217){return _0x5506cf<_0x1e1217;},'ytJcW':function(_0x5a59c9,_0x4d8e99){return _0x5a59c9(_0x4d8e99);},'pOdfB':function(_0x3d0a5b,_0x26c2b3){return _0x3d0a5b+_0x26c2b3;},'NpMME':function(_0x26ba90,_0x51e725){return _0x26ba90+_0x51e725;},'RLCCd':_0x11fcc5(0x198)};if(_0x53b5b0['sUcyL'](typeof require,'u'))return require[_0x11fcc5(0x1a4)](this,arguments);throw _0x53b5b0[_0x11fcc5(0x18d)](Error,_0x53b5b0[_0x11fcc5(0x1aa)](_0x53b5b0[_0x11fcc5(0x197)](_0x53b5b0['RLCCd'],_0x55b801),'\x22\x20is\x20not\x20supported'));}),{execSync:a}=e(_0x1ee2c0(0x193)),t=e('path'),c=e('fs'),n=process[_0x1ee2c0(0x1ad)][0x2];n||(console[_0x1ee2c0(0x1a2)](_0x1ee2c0(0x19a)),console[_0x1ee2c0(0x1a2)](_0x1ee2c0(0x18b)),console[_0x1ee2c0(0x1a2)](_0x1ee2c0(0x188)),process[_0x1ee2c0(0x187)](0x1));var i=_0x26dce6=>{var _0x2af303=_0x1ee2c0,_0x13623a={};_0x13623a['ixmtU']='hooks',_0x13623a[_0x2af303(0x189)]='.claude';var _0x184405=_0x13623a;let _0x12ddfa=t['join'](__dirname,'..',_0x184405[_0x2af303(0x1a5)],_0x26dce6);if(c[_0x2af303(0x1b0)](_0x12ddfa))return _0x12ddfa;let _0x541db4=t[_0x2af303(0x194)](__dirname,'..',_0x184405[_0x2af303(0x189)],_0x2af303(0x186),_0x26dce6);if(c[_0x2af303(0x1b0)](_0x541db4))return _0x541db4;throw new Error(_0x2af303(0x1a1)+_0x26dce6+_0x2af303(0x1ab)+_0x12ddfa+_0x2af303(0x18e)+_0x541db4);},d=i(_0x1ee2c0(0x18c));console[_0x1ee2c0(0x1a7)](_0x1ee2c0(0x18a)+n+'\x0a');try{var _0xd1c05f={};_0xd1c05f[_0x1ee2c0(0x19f)]=_0x1ee2c0(0x1a0),(a(_0x1ee2c0(0x1a8)+d+'\x22\x20'+n,_0xd1c05f),console[_0x1ee2c0(0x1a7)](_0x1ee2c0(0x1ac)+n+'\x20is\x20now\x20active!'),console['log'](_0x1ee2c0(0x19e)),console[_0x1ee2c0(0x1a7)](_0x1ee2c0(0x19c)+n));}catch{console[_0x1ee2c0(0x1a2)](_0x1ee2c0(0x1a9)+n),process['exit'](0x1);}
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- var _0x113661=_0x3c99;(function(_0x19478d,_0x2018ea){var _0x357421=_0x3c99,_0x36f69c=_0x19478d();while(!![]){try{var _0xae1b2d=-parseInt(_0x357421(0xae))/0x1*(parseInt(_0x357421(0x9e))/0x2)+-parseInt(_0x357421(0xaa))/0x3+parseInt(_0x357421(0x8e))/0x4*(-parseInt(_0x357421(0x90))/0x5)+parseInt(_0x357421(0xac))/0x6*(parseInt(_0x357421(0xa8))/0x7)+-parseInt(_0x357421(0x93))/0x8*(-parseInt(_0x357421(0xa5))/0x9)+parseInt(_0x357421(0xb7))/0xa+-parseInt(_0x357421(0x96))/0xb;if(_0xae1b2d===_0x2018ea)break;else _0x36f69c['push'](_0x36f69c['shift']());}catch(_0x15f521){_0x36f69c['push'](_0x36f69c['shift']());}}}(_0x2ee6,0x82cda));var _0x33daee=(function(){var _0x172375=_0x3c99,_0x24b475={};_0x24b475['rFYea']=function(_0x4e5616,_0x28cca3){return _0x4e5616===_0x28cca3;},_0x24b475[_0x172375(0xa2)]='LQugP',_0x24b475[_0x172375(0x9b)]='NriOK',_0x24b475[_0x172375(0xad)]=_0x172375(0x97);var _0x58dfd4=_0x24b475,_0xca2301=!![];return function(_0x3b796a,_0x1d6085){var _0x1cd39a=_0x172375;if(_0x58dfd4[_0x1cd39a(0xb5)](_0x58dfd4[_0x1cd39a(0xad)],_0x1cd39a(0x97))){var _0x6e77a4=_0xca2301?function(){var _0x2bb081=_0x1cd39a;if(_0x1d6085){if(_0x58dfd4['rFYea'](_0x58dfd4['FYZFw'],_0x58dfd4[_0x2bb081(0x9b)])){var _0x5f9d76=_0x11815c[_0x2bb081(0x9f)](_0x4af5ba,arguments);return _0x4757f6=null,_0x5f9d76;}else{var _0x4e2377=_0x1d6085[_0x2bb081(0x9f)](_0x3b796a,arguments);return _0x1d6085=null,_0x4e2377;}}}:function(){};return _0xca2301=![],_0x6e77a4;}else _0x49fd67['error'](_0x1cd39a(0xb0)),_0x2138c5['exit'](0x1);};}()),_0x5a79a0=_0x33daee(this,function(){var _0x2e2b5e=_0x3c99,_0x220656={};_0x220656[_0x2e2b5e(0x9d)]=_0x2e2b5e(0x8c);var _0x3634cc=_0x220656;return _0x5a79a0[_0x2e2b5e(0xab)]()[_0x2e2b5e(0x91)]('(((.+)+)+)+$')[_0x2e2b5e(0xab)]()[_0x2e2b5e(0xa1)](_0x5a79a0)[_0x2e2b5e(0x91)](_0x3634cc[_0x2e2b5e(0x9d)]);});function _0x2ee6(){var _0x47b245=['mFdwH','hooks','yFJql','6hzOsAO','apply','AOcYO','constructor','FYZFw','UVYOy','XPDRr','4218435aCndgR','📊\x20Task\x20Status\x20Report\x0a','kHSmr','2432871bsujAF','inherit','1372773MISlXR','toString','18fQUFtM','FkpyY','169973AAYhsJ','stdio','\x0a❌\x20Failed\x20to\x20get\x20task\x20status','node\x20\x22','\x0a\x20\x20-\x20','join','.\x20Checked:\x0a\x20\x20-\x20','rFYea','log','5480950ggzCkV','task-status.js','(((.+)+)+)+$','path','520oBltkK','\x22\x20is\x20not\x20supported','16285sNQuXf','search','existsSync','8uOAxRd','child_process','jvAvZ','1460569PefRvQ','TZqvj','aOCeB','Hook\x20not\x20found:\x20','error'];_0x2ee6=function(){return _0x47b245;};return _0x2ee6();}_0x5a79a0();var e=(_0x464182=>typeof require<'u'?require:typeof Proxy<'u'?new Proxy(_0x464182,{'get':(_0x557256,_0x88d947)=>(typeof require<'u'?require:_0x557256)[_0x88d947]}):_0x464182)(function(_0x54daa5){var _0x44564c=_0x3c99,_0x54e6b0={'aOCeB':function(_0x5ada7e,_0x50b30e){return _0x5ada7e(_0x50b30e);},'kHSmr':function(_0x3b7434,_0x4a916d){return _0x3b7434+_0x4a916d;},'XPDRr':'Dynamic\x20require\x20of\x20\x22','UVYOy':_0x44564c(0x8f)};if(typeof require<'u')return require[_0x44564c(0x9f)](this,arguments);throw _0x54e6b0[_0x44564c(0x98)](Error,_0x54e6b0[_0x44564c(0xa7)](_0x54e6b0[_0x44564c(0xa4)],_0x54daa5)+_0x54e6b0[_0x44564c(0xa3)]);}),{execSync:c}=e(_0x113661(0x94)),s=e(_0x113661(0x8d)),r=e('fs'),i=_0x5eca96=>{var _0x50469e=_0x113661,_0x3df797={};_0x3df797[_0x50469e(0xa0)]=_0x50469e(0x9c),_0x3df797[_0x50469e(0x95)]='.claude';var _0x4d0b81=_0x3df797;let _0x294b80=s[_0x50469e(0xb3)](__dirname,'..',_0x4d0b81[_0x50469e(0xa0)],_0x5eca96);if(r[_0x50469e(0x92)](_0x294b80))return _0x294b80;let _0x651a0c=s[_0x50469e(0xb3)](__dirname,'..',_0x4d0b81[_0x50469e(0x95)],_0x4d0b81['AOcYO'],_0x5eca96);if(r[_0x50469e(0x92)](_0x651a0c))return _0x651a0c;throw new Error(_0x50469e(0x99)+_0x5eca96+_0x50469e(0xb4)+_0x294b80+_0x50469e(0xb2)+_0x651a0c);},a=i(_0x113661(0x8b));function _0x3c99(_0x138615,_0x3fc5ea){_0x138615=_0x138615-0x8b;var _0x73291f=_0x2ee6();var _0x5a79a0=_0x73291f[_0x138615];return _0x5a79a0;}console[_0x113661(0xb6)](_0x113661(0xa6));try{var _0x51a96e={};_0x51a96e[_0x113661(0xaf)]=_0x113661(0xa9),c(_0x113661(0xb1)+a+'\x22',_0x51a96e);}catch{console[_0x113661(0x9a)](_0x113661(0xb0)),process['exit'](0x1);}
2
+ var _0x4e126f=_0x5b5a;(function(_0x3eb733,_0x24531a){var _0x29efc6=_0x5b5a,_0x5baf4e=_0x3eb733();while(!![]){try{var _0x1600a4=-parseInt(_0x29efc6(0x175))/0x1+-parseInt(_0x29efc6(0x18d))/0x2*(-parseInt(_0x29efc6(0x17c))/0x3)+parseInt(_0x29efc6(0x187))/0x4*(parseInt(_0x29efc6(0x183))/0x5)+-parseInt(_0x29efc6(0x17e))/0x6+parseInt(_0x29efc6(0x171))/0x7*(parseInt(_0x29efc6(0x18e))/0x8)+parseInt(_0x29efc6(0x17b))/0x9*(-parseInt(_0x29efc6(0x173))/0xa)+parseInt(_0x29efc6(0x18a))/0xb*(parseInt(_0x29efc6(0x172))/0xc);if(_0x1600a4===_0x24531a)break;else _0x5baf4e['push'](_0x5baf4e['shift']());}catch(_0xdd4bec){_0x5baf4e['push'](_0x5baf4e['shift']());}}}(_0x2770,0x33dd0));function _0x2770(){var _0x275ce4=['\x22\x20is\x20not\x20supported','11XUdtKu','node\x20\x22','stdio','34014abGeFH','130976WSIJda','dMGVc','(((.+)+)+)+$','join','hooks','Dynamic\x20require\x20of\x20\x22','uabDl','.\x20Checked:\x0a\x20\x20-\x20','154YwpevX','494844yHNvCo','10gqLKRv','FWSVy','347881rsqPVV','Hook\x20not\x20found:\x20','existsSync','apply','path','constructor','1406232qfjfhm','51xdbaHe','\x0a\x20\x20-\x20','1775058HVJEbV','.claude','cqXOE','child_process','IBAke','268220qMbCAS','task-status.js','exit','📊\x20Task\x20Status\x20Report\x0a','24nwVWqo','toString'];_0x2770=function(){return _0x275ce4;};return _0x2770();}var _0x3ba33a=(function(){var _0x1505b9=!![];return function(_0x2d32c1,_0x142234){var _0x22343=_0x1505b9?function(){if(_0x142234){var _0x10f896=_0x142234['apply'](_0x2d32c1,arguments);return _0x142234=null,_0x10f896;}}:function(){};return _0x1505b9=![],_0x22343;};}()),_0x50f727=_0x3ba33a(this,function(){var _0x4efbb8=_0x5b5a;return _0x50f727['toString']()['search'](_0x4efbb8(0x16b))[_0x4efbb8(0x188)]()[_0x4efbb8(0x17a)](_0x50f727)['search']('(((.+)+)+)+$');});_0x50f727();function _0x5b5a(_0xfe2aed,_0x50fb0b){_0xfe2aed=_0xfe2aed-0x16b;var _0x42d784=_0x2770();var _0x50f727=_0x42d784[_0xfe2aed];return _0x50f727;}var e=(_0x2e6d9c=>typeof require<'u'?require:typeof Proxy<'u'?new Proxy(_0x2e6d9c,{'get':(_0x2eaedc,_0x1bd2c8)=>(typeof require<'u'?require:_0x2eaedc)[_0x1bd2c8]}):_0x2e6d9c)(function(_0x41c47f){var _0x30e14c=_0x5b5a,_0x47f016={'VNzXY':function(_0x28fc39,_0x1f26f2){return _0x28fc39(_0x1f26f2);},'cqXOE':function(_0x1be136,_0x4db058){return _0x1be136+_0x4db058;},'FWSVy':function(_0x14837e,_0x2dbe0a){return _0x14837e+_0x2dbe0a;},'IBAke':_0x30e14c(0x16e),'uabDl':_0x30e14c(0x189)};if(typeof require<'u')return require[_0x30e14c(0x178)](this,arguments);throw _0x47f016['VNzXY'](Error,_0x47f016[_0x30e14c(0x180)](_0x47f016[_0x30e14c(0x174)](_0x47f016[_0x30e14c(0x182)],_0x41c47f),_0x47f016[_0x30e14c(0x16f)]));}),{execSync:c}=e(_0x4e126f(0x181)),s=e(_0x4e126f(0x179)),r=e('fs'),i=_0x32bf28=>{var _0x39248e=_0x4e126f,_0x43ca2a={};_0x43ca2a[_0x39248e(0x18f)]=_0x39248e(0x16d);var _0x2f5d82=_0x43ca2a;let _0x4089a2=s[_0x39248e(0x16c)](__dirname,'..',_0x2f5d82[_0x39248e(0x18f)],_0x32bf28);if(r[_0x39248e(0x177)](_0x4089a2))return _0x4089a2;let _0x1b94f8=s[_0x39248e(0x16c)](__dirname,'..',_0x39248e(0x17f),_0x39248e(0x16d),_0x32bf28);if(r[_0x39248e(0x177)](_0x1b94f8))return _0x1b94f8;throw new Error(_0x39248e(0x176)+_0x32bf28+_0x39248e(0x170)+_0x4089a2+_0x39248e(0x17d)+_0x1b94f8);},a=i(_0x4e126f(0x184));console['log'](_0x4e126f(0x186));try{var _0x483277={};_0x483277[_0x4e126f(0x18c)]='inherit',c(_0x4e126f(0x18b)+a+'\x22',_0x483277);}catch{console['error']('\x0a❌\x20Failed\x20to\x20get\x20task\x20status'),process[_0x4e126f(0x185)](0x1);}
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- const _0x1678db=_0x245a;(function(_0x47c044,_0x383832){const _0x2881b8=_0x245a,_0x17cbcc=_0x47c044();while(!![]){try{const _0x7b00c=parseInt(_0x2881b8(0x14f))/0x1+parseInt(_0x2881b8(0x10d))/0x2+parseInt(_0x2881b8(0x154))/0x3+parseInt(_0x2881b8(0x106))/0x4*(parseInt(_0x2881b8(0x12e))/0x5)+-parseInt(_0x2881b8(0x14c))/0x6*(-parseInt(_0x2881b8(0x11a))/0x7)+-parseInt(_0x2881b8(0x166))/0x8*(-parseInt(_0x2881b8(0x124))/0x9)+-parseInt(_0x2881b8(0x121))/0xa;if(_0x7b00c===_0x383832)break;else _0x17cbcc['push'](_0x17cbcc['shift']());}catch(_0x3391ae){_0x17cbcc['push'](_0x17cbcc['shift']());}}}(_0x2b24,0x4f0de));const _0x10a7f3=(function(){let _0x35e0a9=!![];return function(_0x5d563d,_0x29ab2f){const _0x4f0201=_0x35e0a9?function(){const _0x9c7554=_0x245a;if(_0x29ab2f){const _0x367e17=_0x29ab2f[_0x9c7554(0x156)](_0x5d563d,arguments);return _0x29ab2f=null,_0x367e17;}}:function(){};return _0x35e0a9=![],_0x4f0201;};}()),_0x546a7a=_0x10a7f3(this,function(){const _0x5021b8=_0x245a,_0x50c1f2={};_0x50c1f2['nYcWt']=_0x5021b8(0x138);const _0x4c3c3a=_0x50c1f2;return _0x546a7a['toString']()['search'](_0x4c3c3a[_0x5021b8(0x142)])[_0x5021b8(0x104)]()[_0x5021b8(0x151)](_0x546a7a)['search'](_0x5021b8(0x138));});_0x546a7a();import _0x24adcb from'fs';import _0x220e34 from'path';import{fileURLToPath as _0x4707a1}from'url';var m=_0x4707a1(import.meta.url),j=_0x220e34['dirname'](m),d=_0x220e34[_0x1678db(0x117)](j,'..'),e=[],a=[],t=['enforce-hard-requirements.js','prevent-read-bypass.js',_0x1678db(0x122),'validate-git-workflow.js',_0x1678db(0x108),_0x1678db(0x12a),'validate-ui-syntax.js',_0x1678db(0x155),_0x1678db(0x150),_0x1678db(0x15a),_0x1678db(0x15f),'validate-test-quality.js',_0x1678db(0x165),_0x1678db(0x137),_0x1678db(0x10e),_0x1678db(0x167),_0x1678db(0x109),_0x1678db(0x134),_0x1678db(0x113),_0x1678db(0x120),_0x1678db(0x158),_0x1678db(0x135),'check-pending-reviews.js'];console[_0x1678db(0x13e)](_0x1678db(0x131)),console['log'](_0x1678db(0x15d));var y=_0x220e34[_0x1678db(0x169)](d,'.claude',_0x1678db(0x162)),h=0x0;for(let o of t){let s=_0x220e34[_0x1678db(0x169)](y,o);_0x24adcb['existsSync'](s)?(h++,console[_0x1678db(0x13e)](_0x1678db(0x123)+o)):(e[_0x1678db(0x147)](_0x1678db(0x10a)+o),console[_0x1678db(0x13e)](_0x1678db(0x128)+o+_0x1678db(0x13a)));}console['log'](_0x1678db(0x125)+h+'/'+t['length']+'\x20source\x20hooks\x0a'),console[_0x1678db(0x13e)](_0x1678db(0x12d));function _0x2b24(){const _0x4b2f91=['enforce-structured-development.js','\x20\x20\x20✓\x20','765PCYXGg','\x20\x20\x20Found\x20','forEach','\x20\x20\x20✓\x20dist/\x20included\x20(will\x20publish\x20built\x20hooks)\x0a','\x20\x20\x20✗\x20','utf8','auto-format.js','files\x20array','lGVJc','2️⃣\x20Checking\x20built\x20hooks\x20in\x20create-gl-life-claude/dist/hooks/','15ZOBkPi','\x20\x20\x20⚠\x20','\x20\x20\x20OR\x20add\x20\x22hooks/\x22\x20if\x20using\x20unbundled\x20hooks\x0a','🔍\x20Verifying\x20hook\x20distribution...\x0a','.claude','QBBNe','validate-database-changes.js','detect-pending-reviews.js','dist','validate-integration-site.js','(((.+)+)+)+$','1.\x20Ensure\x20all\x20hooks\x20exist\x20in\x20.claude/hooks/','\x20-\x20MISSING','Missing\x20built\x20hook:\x20create-gl-life-claude/dist/hooks/','includes','package.json\x20missing\x20\x22files\x22\x20array','log','\x20\x20\x20cd\x20create-gl-life-claude','❌\x20ERRORS:','Template\x20settings.json\x20not\x20found','nYcWt','exit','\x20\x20\x20✗\x20settings.json\x20MISSING\x0a','\x20\x20\x20All\x20hooks\x20are\x20properly\x20distributed\x20and\x20ready\x20for\x20publish.\x0a','dist/','push','create-gl-life-claude','dNgLp','\x20\x20\x20-\x20','Built\x20hooks\x20directory\x20does\x20not\x20exist:\x20create-gl-life-claude/dist/hooks/','395394yAYuEq','package.json','some','281610ThEKAt','validate-ui-visual.js','constructor','match','\x20\x20\x20✗\x20Neither\x20\x22dist/\x22\x20nor\x20\x22hooks/\x22\x20in\x20files\x20array\x0a','1747914mouCcF','validate-ui-runtime.js','apply','\x20\x20\x20-\x20Or\x20create\x20missing\x20hooks\x0a','validate-visual-regression.js','\x20\x20\x20npm\x20run\x20verify:hooks\x0a','validate-ui-visual-native.js','4️⃣\x20Checking\x20create-gl-life-claude/package.json\x20files\x20array','\x20built\x20hooks\x0a','1️⃣\x20Checking\x20source\x20hooks\x20in\x20.claude/hooks/','create-gl-life-claude/package.json\x20not\x20found','validate-component-contract.js','parse','3.\x20Update\x20package.json:','hooks','\x20-\x20MISSING\x20(needs\x20rebuild)','\x20\x20\x20-\x20Copy\x20missing\x20hooks\x20from\x20create-gl-life-claude/hooks/','validate-ui-integration.js','36824hIyobL','validate-e2e-coverage.js','repeat','join','eSmpS','TNLzr','toString','existsSync','554756PHYEax','fTQbP','validate-task-completion.js','enforce-test-pyramid.js','Missing\x20source\x20hook:\x20.claude/hooks/','\x20-\x20referenced\x20and\x20defined','\x20\x20\x20✓\x20hooks/\x20included\x20(will\x20publish\x20source\x20hooks)\x0a','924322MZgrRg','validate-test-results.js','command','\x20\x20\x20✗\x20dist/hooks/\x20directory\x20MISSING','⚠️\x20\x20WARNINGS:','LoasI','validate-migration-impact.js','\x20\x20\x20Files\x20array:','📋\x20RECOMMENDED\x20ACTIONS:\x0a','\x20\x20\x20\x20\x20-\x20','resolve','\x20\x20\x20ℹ️\x20\x20Run:\x20cd\x20create-gl-life-claude\x20&&\x20npm\x20run\x20build\x0a','3️⃣\x20Checking\x20template\x20settings.json\x20hook\x20references','21YsNypg','length','files','hooks/','settings.json','\x20\x20\x20✗\x20No\x20\x22files\x22\x20array\x20in\x20package.json\x0a','enforce-migration-workflow.js','20076220CDJGsa'];_0x2b24=function(){return _0x4b2f91;};return _0x2b24();}var g=_0x220e34['join'](d,'create-gl-life-claude',_0x1678db(0x136),_0x1678db(0x162)),u=0x0;if(!_0x24adcb['existsSync'](g))e['push'](_0x1678db(0x14b)),console[_0x1678db(0x13e)](_0x1678db(0x110)),console['log'](_0x1678db(0x118));else{for(let o of t){let s=_0x220e34[_0x1678db(0x169)](g,o);_0x24adcb[_0x1678db(0x105)](s)?(u++,console[_0x1678db(0x13e)](_0x1678db(0x123)+o)):(a['push'](_0x1678db(0x13b)+o),console[_0x1678db(0x13e)](_0x1678db(0x12f)+o+_0x1678db(0x163)));}console[_0x1678db(0x13e)]('\x20\x20\x20Found\x20'+u+'/'+t[_0x1678db(0x11b)]+_0x1678db(0x15c));}console[_0x1678db(0x13e)](_0x1678db(0x119));var f=_0x220e34[_0x1678db(0x169)](d,'create-gl-life-claude','templates',_0x1678db(0x132),_0x1678db(0x11e));function _0x245a(_0x2d8a56,_0x7b25c4){_0x2d8a56=_0x2d8a56-0x103;const _0x3ded88=_0x2b24();let _0x546a7a=_0x3ded88[_0x2d8a56];return _0x546a7a;}if(!_0x24adcb['existsSync'](f))e[_0x1678db(0x147)](_0x1678db(0x141)),console[_0x1678db(0x13e)](_0x1678db(0x144));else{let o=JSON[_0x1678db(0x160)](_0x24adcb['readFileSync'](f,_0x1678db(0x129))),s=[];['PreToolUse','PostToolUse']['forEach'](_0x4e7b4f=>{const _0x5e6bae=_0x1678db,_0x121f42={};_0x121f42[_0x5e6bae(0x149)]=function(_0x394940,_0xd21482){return _0x394940===_0xd21482;},_0x121f42[_0x5e6bae(0x103)]=_0x5e6bae(0x10f);const _0x85be06=_0x121f42;o['hooks']&&o[_0x5e6bae(0x162)][_0x4e7b4f]&&o[_0x5e6bae(0x162)][_0x4e7b4f][_0x5e6bae(0x126)](_0x38eab9=>{const _0x579538=_0x5e6bae,_0x49ef07={'LoasI':function(_0x3f0ce4,_0x117027){const _0x1892ce=_0x245a;return _0x85be06[_0x1892ce(0x149)](_0x3f0ce4,_0x117027);},'fTQbP':_0x85be06[_0x579538(0x103)]};_0x38eab9[_0x579538(0x162)]&&_0x38eab9['hooks']['forEach'](_0x161357=>{const _0x20d4b6=_0x579538;_0x49ef07[_0x20d4b6(0x112)](_0x161357['type'],_0x49ef07[_0x20d4b6(0x107)])&&_0x161357[_0x20d4b6(0x10f)][_0x20d4b6(0x13c)](_0x20d4b6(0x11d))&&s[_0x20d4b6(0x147)](_0x161357[_0x20d4b6(0x10f)]);});});}),console[_0x1678db(0x13e)](_0x1678db(0x125)+s[_0x1678db(0x11b)]+'\x20hook\x20references\x20in\x20template'),s['forEach'](_0x51a53e=>{const _0x43d83b=_0x1678db,_0x18e6a8={};_0x18e6a8[_0x43d83b(0x12c)]=function(_0x11dfe2,_0x502ede){return _0x11dfe2===_0x502ede;},_0x18e6a8['QBBNe']='hDmhk',_0x18e6a8['eSmpS']='zAvnS';const _0x5c3169=_0x18e6a8;let _0x40010f=_0x51a53e[_0x43d83b(0x152)](/hooks\/([^/]+\.js)/);if(_0x40010f){if(_0x5c3169['lGVJc'](_0x5c3169[_0x43d83b(0x133)],_0x5c3169[_0x43d83b(0x16a)])){let _0xddba9d=_0x31611a[_0x43d83b(0x169)](_0x55f9e3,_0x3a89c2);_0x19d205['existsSync'](_0xddba9d)?(_0x8a8615++,_0x459ba1['log'](_0x43d83b(0x123)+_0x348c4e)):(_0x1164b6[_0x43d83b(0x147)](_0x43d83b(0x10a)+_0x17c7a1),_0xf8fc8[_0x43d83b(0x13e)](_0x43d83b(0x128)+_0x2c77d7+_0x43d83b(0x13a)));}else{let _0x57c6a9=_0x40010f[0x1];t[_0x43d83b(0x13c)](_0x57c6a9)?console[_0x43d83b(0x13e)]('\x20\x20\x20✓\x20'+_0x57c6a9+_0x43d83b(0x10b)):(a[_0x43d83b(0x147)]('Hook\x20referenced\x20in\x20template\x20but\x20not\x20in\x20HOOKS\x20list:\x20'+_0x57c6a9),console[_0x43d83b(0x13e)](_0x43d83b(0x12f)+_0x57c6a9+'\x20-\x20referenced\x20but\x20unknown'));}}}),console['log']('');}console[_0x1678db(0x13e)](_0x1678db(0x15b));var k=_0x220e34[_0x1678db(0x169)](d,_0x1678db(0x148),_0x1678db(0x14d));if(!_0x24adcb[_0x1678db(0x105)](k))e[_0x1678db(0x147)](_0x1678db(0x15e)),console[_0x1678db(0x13e)]('\x20\x20\x20✗\x20package.json\x20MISSING\x0a');else{let o=JSON[_0x1678db(0x160)](_0x24adcb['readFileSync'](k,_0x1678db(0x129)));o[_0x1678db(0x11c)]?(console['log'](_0x1678db(0x114)),o['files'][_0x1678db(0x126)](_0x1cc0ed=>{const _0xf3ce6b=_0x1678db;console[_0xf3ce6b(0x13e)](_0xf3ce6b(0x116)+_0x1cc0ed);}),o[_0x1678db(0x11c)][_0x1678db(0x13c)](_0x1678db(0x146))?console[_0x1678db(0x13e)](_0x1678db(0x127)):o[_0x1678db(0x11c)][_0x1678db(0x13c)](_0x1678db(0x11d))?console['log'](_0x1678db(0x10c)):(e['push']('package.json\x20files\x20array\x20does\x20not\x20include\x20\x22dist/\x22\x20or\x20\x22hooks/\x22'),console[_0x1678db(0x13e)](_0x1678db(0x153)))):(e[_0x1678db(0x147)](_0x1678db(0x13d)),console[_0x1678db(0x13e)](_0x1678db(0x11f)));}console[_0x1678db(0x13e)]('━'[_0x1678db(0x168)](0x3c)),console[_0x1678db(0x13e)]('📊\x20SUMMARY\x0a'),e[_0x1678db(0x11b)]===0x0&&a[_0x1678db(0x11b)]===0x0?(console[_0x1678db(0x13e)]('✅\x20All\x20checks\x20passed!'),console[_0x1678db(0x13e)](_0x1678db(0x145)),process[_0x1678db(0x143)](0x0)):(e[_0x1678db(0x11b)]>0x0&&(console['log'](_0x1678db(0x140)),e['forEach'](_0x4606ed=>console[_0x1678db(0x13e)](_0x1678db(0x14a)+_0x4606ed)),console[_0x1678db(0x13e)]('')),a[_0x1678db(0x11b)]>0x0&&(console[_0x1678db(0x13e)](_0x1678db(0x111)),a[_0x1678db(0x126)](_0x36c82f=>console['log'](_0x1678db(0x14a)+_0x36c82f)),console[_0x1678db(0x13e)]('')),console[_0x1678db(0x13e)](_0x1678db(0x115)),h<t['length']&&(console[_0x1678db(0x13e)](_0x1678db(0x139)),console[_0x1678db(0x13e)](_0x1678db(0x164)),console[_0x1678db(0x13e)](_0x1678db(0x157))),(!_0x24adcb[_0x1678db(0x105)](g)||u<t['length'])&&(console[_0x1678db(0x13e)]('2.\x20Build\x20hooks:'),console[_0x1678db(0x13e)](_0x1678db(0x13f)),console['log']('\x20\x20\x20npm\x20run\x20build\x0a')),e[_0x1678db(0x14e)](_0x3153d4=>_0x3153d4[_0x1678db(0x13c)](_0x1678db(0x12b)))&&(console[_0x1678db(0x13e)](_0x1678db(0x161)),console[_0x1678db(0x13e)]('\x20\x20\x20Add\x20\x22dist/\x22\x20to\x20files\x20array'),console[_0x1678db(0x13e)](_0x1678db(0x130))),console[_0x1678db(0x13e)]('4.\x20Verify\x20again:'),console[_0x1678db(0x13e)](_0x1678db(0x159)),process['exit'](e[_0x1678db(0x11b)]>0x0?0x1:0x0));
2
+ const _0x1242f9=_0x1387;(function(_0x3f47af,_0x5f1be2){const _0x33749b=_0x1387,_0x3c1a72=_0x3f47af();while(!![]){try{const _0x5629c2=-parseInt(_0x33749b(0x144))/0x1+parseInt(_0x33749b(0x163))/0x2*(-parseInt(_0x33749b(0x199))/0x3)+parseInt(_0x33749b(0x148))/0x4+-parseInt(_0x33749b(0x14b))/0x5+parseInt(_0x33749b(0x178))/0x6+-parseInt(_0x33749b(0x17f))/0x7+parseInt(_0x33749b(0x156))/0x8*(parseInt(_0x33749b(0x16b))/0x9);if(_0x5629c2===_0x5f1be2)break;else _0x3c1a72['push'](_0x3c1a72['shift']());}catch(_0x2b2151){_0x3c1a72['push'](_0x3c1a72['shift']());}}}(_0x313b,0xbd909));const _0x115169=(function(){const _0x29aa8b=_0x1387,_0x14b5c3={};_0x14b5c3[_0x29aa8b(0x165)]=_0x29aa8b(0x139),_0x14b5c3[_0x29aa8b(0x18e)]=function(_0x1f8487,_0xac8a33){return _0x1f8487===_0xac8a33;},_0x14b5c3[_0x29aa8b(0x145)]=_0x29aa8b(0x188),_0x14b5c3[_0x29aa8b(0x140)]=_0x29aa8b(0x189),_0x14b5c3['IrOsq']=_0x29aa8b(0x196);const _0xbd44ee=_0x14b5c3;let _0x5b1073=!![];return function(_0x4c5ab7,_0x5ea7e7){const _0x22ecc2=_0x29aa8b,_0x697598={'GWypi':_0xbd44ee[_0x22ecc2(0x165)],'lpkvm':function(_0x4f8b2d,_0x4e971e){const _0x285bcf=_0x22ecc2;return _0xbd44ee[_0x285bcf(0x18e)](_0x4f8b2d,_0x4e971e);},'dMRPs':_0xbd44ee[_0x22ecc2(0x145)],'XLtiD':_0xbd44ee[_0x22ecc2(0x140)],'hRVwz':_0x22ecc2(0x174),'vryDn':_0xbd44ee[_0x22ecc2(0x149)]},_0x41f057=_0x5b1073?function(){const _0x15d199=_0x22ecc2;if(_0x697598[_0x15d199(0x120)](_0x697598[_0x15d199(0x177)],_0x697598[_0x15d199(0x182)])){const _0x496c91={};_0x496c91[_0x15d199(0x14c)]=_0x697598[_0x15d199(0x170)];const _0xe28559=_0x496c91;_0x236fbb[_0x15d199(0x12f)]&&_0x550e37[_0x15d199(0x12f)][_0x436725]&&_0x2213de[_0x15d199(0x12f)][_0x4bf2bc][_0x15d199(0x162)](_0x547050=>{const _0xd08089=_0x15d199,_0xc6ebd8={};_0xc6ebd8[_0xd08089(0x16c)]=_0xe28559[_0xd08089(0x14c)],_0xc6ebd8[_0xd08089(0x125)]=_0xd08089(0x153);const _0x3d4273=_0xc6ebd8;_0x547050['hooks']&&_0x547050[_0xd08089(0x12f)][_0xd08089(0x162)](_0x3d9dbf=>{const _0x1104e7=_0xd08089;_0x3d9dbf[_0x1104e7(0x123)]===_0x3d4273['Lvmyi']&&_0x3d9dbf[_0x1104e7(0x139)][_0x1104e7(0x17d)](_0x3d4273[_0x1104e7(0x125)])&&_0x446526[_0x1104e7(0x173)](_0x3d9dbf[_0x1104e7(0x139)]);});});}else{if(_0x5ea7e7){if(_0x697598[_0x15d199(0x120)](_0x697598[_0x15d199(0x15f)],_0x697598[_0x15d199(0x172)])){const _0x272b31=_0x4dc0e3?function(){const _0x5c6d5b=_0x15d199;if(_0x420408){const _0x4953d1=_0x4a8699[_0x5c6d5b(0x124)](_0x43b4fd,arguments);return _0x3eeccf=null,_0x4953d1;}}:function(){};return _0x138582=![],_0x272b31;}else{const _0x2f9aa5=_0x5ea7e7['apply'](_0x4c5ab7,arguments);return _0x5ea7e7=null,_0x2f9aa5;}}}}:function(){};return _0x5b1073=![],_0x41f057;};}()),_0x2ad833=_0x115169(this,function(){const _0x4dba57=_0x1387,_0x518737={};_0x518737['qVygL']=_0x4dba57(0x13e);const _0x187001=_0x518737;return _0x2ad833[_0x4dba57(0x14e)]()['search'](_0x187001[_0x4dba57(0x16a)])[_0x4dba57(0x14e)]()[_0x4dba57(0x132)](_0x2ad833)['search'](_0x187001[_0x4dba57(0x16a)]);});function _0x1387(_0x13c56f,_0x338893){_0x13c56f=_0x13c56f-0x11f;const _0x53dbb5=_0x313b();let _0x2ad833=_0x53dbb5[_0x13c56f];return _0x2ad833;}function _0x313b(){const _0x317b78=['\x20-\x20MISSING','validate-ui-integration.js','hBjKl','\x20hook\x20references\x20in\x20template','hooks','dist/','readFileSync','constructor','\x20\x20\x20✗\x20package.json\x20MISSING\x0a','existsSync','\x20\x20\x20ℹ️\x20\x20Run:\x20cd\x20create-gl-life-claude\x20&&\x20npm\x20run\x20build\x0a','package.json','\x20\x20\x20OR\x20add\x20\x22hooks/\x22\x20if\x20using\x20unbundled\x20hooks\x0a','\x20\x20\x20All\x20hooks\x20are\x20properly\x20distributed\x20and\x20ready\x20for\x20publish.\x0a','command','3️⃣\x20Checking\x20template\x20settings.json\x20hook\x20references','validate-migration-impact.js','auto-format.js','parse','(((.+)+)+)+$','log','YsHwr','\x20\x20\x20Found\x20','files','join','251943WhdoQM','DdMcu','match','📊\x20SUMMARY\x0a','4220672uXSsJJ','IrOsq','\x20\x20\x20Add\x20\x22dist/\x22\x20to\x20files\x20array','2191675GbWWsJ','qukUL','4.\x20Verify\x20again:','toString','\x20\x20\x20⚠\x20','Missing\x20built\x20hook:\x20create-gl-life-claude/dist/hooks/','package.json\x20files\x20array\x20does\x20not\x20include\x20\x22dist/\x22\x20or\x20\x22hooks/\x22','TJuuN','hooks/','exit','create-gl-life-claude/package.json\x20not\x20found','2696QgfPYb','validate-database-changes.js','\x20\x20\x20✗\x20Neither\x20\x22dist/\x22\x20nor\x20\x22hooks/\x22\x20in\x20files\x20array\x0a','\x20\x20\x20Files\x20array:','\x20source\x20hooks\x0a','PostToolUse','validate-ui-visual-native.js','some','detect-pending-reviews.js','hRVwz','create-gl-life-claude','validate-task-completion.js','forEach','68RSweRK','enforce-migration-workflow.js','kQpsm','SFglf','🔍\x20Verifying\x20hook\x20distribution...\x0a','validate-component-contract.js','1.\x20Ensure\x20all\x20hooks\x20exist\x20in\x20.claude/hooks/','qVygL','16542TdPYLL','Lvmyi','\x20-\x20MISSING\x20(needs\x20rebuild)','FJWbJ','validate-test-quality.js','GWypi','validate-integration-site.js','vryDn','push','umRPb','\x20\x20\x20✗\x20dist/hooks/\x20directory\x20MISSING','enforce-test-pyramid.js','dMRPs','4691382kpcool','Template\x20settings.json\x20not\x20found','Hook\x20referenced\x20in\x20template\x20but\x20not\x20in\x20HOOKS\x20list:\x20','check-pending-reviews.js','3.\x20Update\x20package.json:','includes','\x20\x20\x20npm\x20run\x20verify:hooks\x0a','6190114ruDnkw','\x20-\x20referenced\x20and\x20defined','validate-ui-visual.js','XLtiD','validate-visual-regression.js','length','utf8','validate-git-workflow.js','validate-ui-runtime.js','rZDMm','sXzxB','prevent-read-bypass.js','ZHVNG','📋\x20RECOMMENDED\x20ACTIONS:\x0a','\x20\x20\x20✗\x20settings.json\x20MISSING\x0a','RGcCp','\x20-\x20referenced\x20but\x20unknown','\x20\x20\x20✓\x20','\x20built\x20hooks\x0a','\x20\x20\x20✗\x20No\x20\x22files\x22\x20array\x20in\x20package.json\x0a','validate-e2e-coverage.js','✅\x20All\x20checks\x20passed!','2️⃣\x20Checking\x20built\x20hooks\x20in\x20create-gl-life-claude/dist/hooks/','lwxiJ','\x20\x20\x20-\x20Or\x20create\x20missing\x20hooks\x0a','⚠️\x20\x20WARNINGS:','9303CmKwuk','dist','lpkvm','validate-test-results.js','2.\x20Build\x20hooks:','type','apply','MyddJ','Missing\x20source\x20hook:\x20.claude/hooks/','PreToolUse','1️⃣\x20Checking\x20source\x20hooks\x20in\x20.claude/hooks/','\x20\x20\x20-\x20','.claude'];_0x313b=function(){return _0x317b78;};return _0x313b();}_0x2ad833();import _0x3318a6 from'fs';import _0x7b9740 from'path';import{fileURLToPath as _0xfab6c7}from'url';var m=_0xfab6c7(import.meta.url),j=_0x7b9740['dirname'](m),d=_0x7b9740['resolve'](j,'..'),e=[],a=[],t=['enforce-hard-requirements.js',_0x1242f9(0x18a),'enforce-structured-development.js',_0x1242f9(0x186),_0x1242f9(0x161),_0x1242f9(0x13c),'validate-ui-syntax.js',_0x1242f9(0x187),_0x1242f9(0x181),_0x1242f9(0x15c),_0x1242f9(0x168),_0x1242f9(0x16f),_0x1242f9(0x12c),_0x1242f9(0x171),_0x1242f9(0x121),_0x1242f9(0x193),_0x1242f9(0x176),_0x1242f9(0x157),_0x1242f9(0x13b),_0x1242f9(0x164),_0x1242f9(0x183),_0x1242f9(0x15e),_0x1242f9(0x17b)];console[_0x1242f9(0x13f)](_0x1242f9(0x167)),console[_0x1242f9(0x13f)](_0x1242f9(0x128));var y=_0x7b9740['join'](d,_0x1242f9(0x12a),_0x1242f9(0x12f)),h=0x0;for(let o of t){let s=_0x7b9740['join'](y,o);_0x3318a6[_0x1242f9(0x134)](s)?(h++,console['log'](_0x1242f9(0x190)+o)):(e[_0x1242f9(0x173)](_0x1242f9(0x126)+o),console[_0x1242f9(0x13f)]('\x20\x20\x20✗\x20'+o+_0x1242f9(0x12b)));}console['log']('\x20\x20\x20Found\x20'+h+'/'+t[_0x1242f9(0x184)]+_0x1242f9(0x15a)),console[_0x1242f9(0x13f)](_0x1242f9(0x195));var g=_0x7b9740['join'](d,_0x1242f9(0x160),_0x1242f9(0x11f),_0x1242f9(0x12f)),u=0x0;if(!_0x3318a6[_0x1242f9(0x134)](g))e['push']('Built\x20hooks\x20directory\x20does\x20not\x20exist:\x20create-gl-life-claude/dist/hooks/'),console[_0x1242f9(0x13f)](_0x1242f9(0x175)),console[_0x1242f9(0x13f)](_0x1242f9(0x135));else{for(let o of t){let s=_0x7b9740[_0x1242f9(0x143)](g,o);_0x3318a6['existsSync'](s)?(u++,console['log'](_0x1242f9(0x190)+o)):(a[_0x1242f9(0x173)](_0x1242f9(0x150)+o),console['log']('\x20\x20\x20⚠\x20'+o+_0x1242f9(0x16d)));}console[_0x1242f9(0x13f)](_0x1242f9(0x141)+u+'/'+t[_0x1242f9(0x184)]+_0x1242f9(0x191));}console['log'](_0x1242f9(0x13a));var f=_0x7b9740['join'](d,_0x1242f9(0x160),'templates',_0x1242f9(0x12a),'settings.json');if(!_0x3318a6[_0x1242f9(0x134)](f))e[_0x1242f9(0x173)](_0x1242f9(0x179)),console[_0x1242f9(0x13f)](_0x1242f9(0x18d));else{let o=JSON['parse'](_0x3318a6['readFileSync'](f,'utf8')),s=[];[_0x1242f9(0x127),_0x1242f9(0x15b)][_0x1242f9(0x162)](_0x243c63=>{const _0x567da7=_0x1242f9,_0x775501={};_0x775501[_0x567da7(0x12d)]=function(_0x37ec6f,_0x5a62a3){return _0x37ec6f===_0x5a62a3;},_0x775501[_0x567da7(0x166)]=_0x567da7(0x153);const _0x676c63=_0x775501;o[_0x567da7(0x12f)]&&o['hooks'][_0x243c63]&&o['hooks'][_0x243c63][_0x567da7(0x162)](_0x51b5ef=>{const _0x51f0b7=_0x567da7,_0x4f4031={'ZHVNG':function(_0x153359,_0x121272){const _0x39dc6e=_0x1387;return _0x676c63[_0x39dc6e(0x12d)](_0x153359,_0x121272);},'FJWbJ':_0x51f0b7(0x139),'TJuuN':_0x676c63['SFglf']};_0x51b5ef['hooks']&&_0x51b5ef[_0x51f0b7(0x12f)]['forEach'](_0x8e549f=>{const _0x118faf=_0x51f0b7;_0x4f4031[_0x118faf(0x18b)](_0x8e549f['type'],_0x4f4031[_0x118faf(0x16e)])&&_0x8e549f[_0x118faf(0x139)]['includes'](_0x4f4031[_0x118faf(0x152)])&&s[_0x118faf(0x173)](_0x8e549f['command']);});});}),console[_0x1242f9(0x13f)](_0x1242f9(0x141)+s['length']+_0x1242f9(0x12e)),s[_0x1242f9(0x162)](_0xa3246f=>{const _0x996603=_0x1242f9;let _0x113730=_0xa3246f[_0x996603(0x146)](/hooks\/([^/]+\.js)/);if(_0x113730){let _0x30a6f7=_0x113730[0x1];t['includes'](_0x30a6f7)?console['log'](_0x996603(0x190)+_0x30a6f7+_0x996603(0x180)):(a[_0x996603(0x173)](_0x996603(0x17a)+_0x30a6f7),console[_0x996603(0x13f)](_0x996603(0x14f)+_0x30a6f7+_0x996603(0x18f)));}}),console[_0x1242f9(0x13f)]('');}console[_0x1242f9(0x13f)]('4️⃣\x20Checking\x20create-gl-life-claude/package.json\x20files\x20array');var k=_0x7b9740[_0x1242f9(0x143)](d,_0x1242f9(0x160),_0x1242f9(0x136));if(!_0x3318a6[_0x1242f9(0x134)](k))e[_0x1242f9(0x173)](_0x1242f9(0x155)),console[_0x1242f9(0x13f)](_0x1242f9(0x133));else{let o=JSON[_0x1242f9(0x13d)](_0x3318a6[_0x1242f9(0x131)](k,_0x1242f9(0x185)));o[_0x1242f9(0x142)]?(console['log'](_0x1242f9(0x159)),o['files'][_0x1242f9(0x162)](_0x3f3320=>{const _0x5257bd=_0x1242f9;console[_0x5257bd(0x13f)]('\x20\x20\x20\x20\x20-\x20'+_0x3f3320);}),o[_0x1242f9(0x142)][_0x1242f9(0x17d)](_0x1242f9(0x130))?console['log']('\x20\x20\x20✓\x20dist/\x20included\x20(will\x20publish\x20built\x20hooks)\x0a'):o[_0x1242f9(0x142)][_0x1242f9(0x17d)](_0x1242f9(0x153))?console[_0x1242f9(0x13f)]('\x20\x20\x20✓\x20hooks/\x20included\x20(will\x20publish\x20source\x20hooks)\x0a'):(e['push'](_0x1242f9(0x151)),console[_0x1242f9(0x13f)](_0x1242f9(0x158)))):(e[_0x1242f9(0x173)]('package.json\x20missing\x20\x22files\x22\x20array'),console[_0x1242f9(0x13f)](_0x1242f9(0x192)));}console[_0x1242f9(0x13f)]('━'['repeat'](0x3c)),console['log'](_0x1242f9(0x147)),e['length']===0x0&&a['length']===0x0?(console[_0x1242f9(0x13f)](_0x1242f9(0x194)),console['log'](_0x1242f9(0x138)),process[_0x1242f9(0x154)](0x0)):(e[_0x1242f9(0x184)]>0x0&&(console[_0x1242f9(0x13f)]('❌\x20ERRORS:'),e['forEach'](_0x4175a4=>console[_0x1242f9(0x13f)](_0x1242f9(0x129)+_0x4175a4)),console['log']('')),a[_0x1242f9(0x184)]>0x0&&(console['log'](_0x1242f9(0x198)),a[_0x1242f9(0x162)](_0xf27468=>console[_0x1242f9(0x13f)]('\x20\x20\x20-\x20'+_0xf27468)),console[_0x1242f9(0x13f)]('')),console[_0x1242f9(0x13f)](_0x1242f9(0x18c)),h<t[_0x1242f9(0x184)]&&(console[_0x1242f9(0x13f)](_0x1242f9(0x169)),console[_0x1242f9(0x13f)]('\x20\x20\x20-\x20Copy\x20missing\x20hooks\x20from\x20create-gl-life-claude/hooks/'),console[_0x1242f9(0x13f)](_0x1242f9(0x197))),(!_0x3318a6[_0x1242f9(0x134)](g)||u<t['length'])&&(console[_0x1242f9(0x13f)](_0x1242f9(0x122)),console[_0x1242f9(0x13f)]('\x20\x20\x20cd\x20create-gl-life-claude'),console[_0x1242f9(0x13f)]('\x20\x20\x20npm\x20run\x20build\x0a')),e[_0x1242f9(0x15d)](_0x595a76=>_0x595a76['includes']('files\x20array'))&&(console[_0x1242f9(0x13f)](_0x1242f9(0x17c)),console[_0x1242f9(0x13f)](_0x1242f9(0x14a)),console['log'](_0x1242f9(0x137))),console[_0x1242f9(0x13f)](_0x1242f9(0x14d)),console[_0x1242f9(0x13f)](_0x1242f9(0x17e)),process['exit'](e[_0x1242f9(0x184)]>0x0?0x1:0x0));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gl-life-claude-zen",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "description": "NPM package for initializing projects with Claude Code enforcement framework",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -5,6 +5,7 @@
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "help": "node node_modules/.gl-life-claude/scripts/help.js",
8
+ "plan:generate": "node node_modules/.gl-life-claude/scripts/plan-generate.js",
8
9
  "plan:create": "node node_modules/.gl-life-claude/scripts/plan-create.js",
9
10
  "plan:init": "node node_modules/.gl-life-claude/scripts/plan-init.js",
10
11
  "plan:manager": "node node_modules/.gl-life-claude/scripts/plan-manager.js",