@chiendt/ack-cli 1.0.1 → 1.1.0-dev.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli-manifest.json +88 -2
- package/dist/index.js +3254 -2250
- package/package.json +1 -1
package/cli-manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.
|
|
3
|
-
"generatedAt": "2026-05-
|
|
2
|
+
"version": "1.1.0-dev.2",
|
|
3
|
+
"generatedAt": "2026-05-27T02:03:36.724Z",
|
|
4
4
|
"commands": {
|
|
5
5
|
"agents": {
|
|
6
6
|
"name": "agents",
|
|
@@ -1810,6 +1810,92 @@
|
|
|
1810
1810
|
}
|
|
1811
1811
|
]
|
|
1812
1812
|
}
|
|
1813
|
+
],
|
|
1814
|
+
"subcommands": [
|
|
1815
|
+
{
|
|
1816
|
+
"name": "install",
|
|
1817
|
+
"description": "Run skills dependency install script (install.sh / install.ps1)",
|
|
1818
|
+
"usage": "ack setup install [options]",
|
|
1819
|
+
"examples": [
|
|
1820
|
+
{
|
|
1821
|
+
"command": "ack setup install",
|
|
1822
|
+
"description": "Run install script in ./.claude/skills"
|
|
1823
|
+
},
|
|
1824
|
+
{
|
|
1825
|
+
"command": "ack setup install --global",
|
|
1826
|
+
"description": "Run install script in ~/.claude/skills"
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
"command": "ack setup install --dir /custom/path --with-sudo",
|
|
1830
|
+
"description": "Custom dir with sudo for system packages"
|
|
1831
|
+
}
|
|
1832
|
+
],
|
|
1833
|
+
"optionGroups": [
|
|
1834
|
+
{
|
|
1835
|
+
"title": "Options",
|
|
1836
|
+
"options": [
|
|
1837
|
+
{
|
|
1838
|
+
"flags": "--global",
|
|
1839
|
+
"description": "Use ~/.claude/skills"
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
"flags": "--dir <dir>",
|
|
1843
|
+
"description": "Custom skills directory"
|
|
1844
|
+
},
|
|
1845
|
+
{
|
|
1846
|
+
"flags": "--with-sudo",
|
|
1847
|
+
"description": "Allow sudo for system packages (Linux)"
|
|
1848
|
+
},
|
|
1849
|
+
{
|
|
1850
|
+
"flags": "-y, --yes",
|
|
1851
|
+
"description": "Skip confirmation prompts"
|
|
1852
|
+
}
|
|
1853
|
+
]
|
|
1854
|
+
}
|
|
1855
|
+
]
|
|
1856
|
+
}
|
|
1857
|
+
]
|
|
1858
|
+
},
|
|
1859
|
+
"setup install": {
|
|
1860
|
+
"name": "setup install",
|
|
1861
|
+
"description": "Run skills dependency install script (install.sh / install.ps1)",
|
|
1862
|
+
"usage": "ack setup install [options]",
|
|
1863
|
+
"examples": [
|
|
1864
|
+
{
|
|
1865
|
+
"command": "ack setup install",
|
|
1866
|
+
"description": "Run install script in ./.claude/skills"
|
|
1867
|
+
},
|
|
1868
|
+
{
|
|
1869
|
+
"command": "ack setup install --global",
|
|
1870
|
+
"description": "Run install script in ~/.claude/skills"
|
|
1871
|
+
},
|
|
1872
|
+
{
|
|
1873
|
+
"command": "ack setup install --dir /custom/path --with-sudo",
|
|
1874
|
+
"description": "Custom dir with sudo for system packages"
|
|
1875
|
+
}
|
|
1876
|
+
],
|
|
1877
|
+
"optionGroups": [
|
|
1878
|
+
{
|
|
1879
|
+
"title": "Options",
|
|
1880
|
+
"options": [
|
|
1881
|
+
{
|
|
1882
|
+
"flags": "--global",
|
|
1883
|
+
"description": "Use ~/.claude/skills"
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
"flags": "--dir <dir>",
|
|
1887
|
+
"description": "Custom skills directory"
|
|
1888
|
+
},
|
|
1889
|
+
{
|
|
1890
|
+
"flags": "--with-sudo",
|
|
1891
|
+
"description": "Allow sudo for system packages (Linux)"
|
|
1892
|
+
},
|
|
1893
|
+
{
|
|
1894
|
+
"flags": "-y, --yes",
|
|
1895
|
+
"description": "Skip confirmation prompts"
|
|
1896
|
+
}
|
|
1897
|
+
]
|
|
1898
|
+
}
|
|
1813
1899
|
]
|
|
1814
1900
|
},
|
|
1815
1901
|
"skills": {
|