@respan/cli 0.5.3 → 0.6.1
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/dist/commands/auth/login.js +2 -2
- package/dist/commands/integrate/claude-code.js +9 -28
- package/dist/commands/integrate/codex-cli.js +7 -27
- package/dist/commands/integrate/gemini-cli.js +99 -53
- package/dist/hooks/claude-code.cjs +951 -0
- package/dist/hooks/claude-code.d.ts +1 -0
- package/dist/hooks/claude-code.js +641 -0
- package/dist/hooks/codex-cli.cjs +793 -0
- package/dist/hooks/codex-cli.d.ts +1 -0
- package/dist/hooks/codex-cli.js +469 -0
- package/dist/hooks/gemini-cli.cjs +826 -0
- package/dist/hooks/gemini-cli.d.ts +1 -0
- package/dist/hooks/gemini-cli.js +563 -0
- package/dist/hooks/shared.d.ts +82 -0
- package/dist/hooks/shared.js +461 -0
- package/dist/lib/integrate.d.ts +3 -3
- package/dist/lib/integrate.js +4 -8
- package/oclif.manifest.json +466 -466
- package/package.json +6 -3
- package/dist/assets/codex_hook.py +0 -897
- package/dist/assets/hook.py +0 -1052
package/oclif.manifest.json
CHANGED
|
@@ -1583,10 +1583,17 @@
|
|
|
1583
1583
|
"list.js"
|
|
1584
1584
|
]
|
|
1585
1585
|
},
|
|
1586
|
-
"
|
|
1586
|
+
"integrate:claude-code": {
|
|
1587
1587
|
"aliases": [],
|
|
1588
1588
|
"args": {},
|
|
1589
|
-
"description": "
|
|
1589
|
+
"description": "Integrate Respan with Claude Code.\n\nInstalls a Stop hook that reads conversation transcripts and sends\nthem to Respan as structured spans (chat, tool, thinking).\n\nScope:\n --global Install hook script + register in ~/.claude/settings.json\n --local Write credentials + enable flag to .claude/settings.local.json\n (default) Both: install hook globally + enable for current project",
|
|
1590
|
+
"examples": [
|
|
1591
|
+
"respan integrate claude-code",
|
|
1592
|
+
"respan integrate claude-code --global",
|
|
1593
|
+
"respan integrate claude-code --local --project-id my-project",
|
|
1594
|
+
"respan integrate claude-code --attrs '{\"env\":\"prod\"}'",
|
|
1595
|
+
"respan integrate claude-code --dry-run"
|
|
1596
|
+
],
|
|
1590
1597
|
"flags": {
|
|
1591
1598
|
"api-key": {
|
|
1592
1599
|
"description": "API key (env: RESPAN_API_KEY)",
|
|
@@ -1622,101 +1629,80 @@
|
|
|
1622
1629
|
"allowNo": false,
|
|
1623
1630
|
"type": "boolean"
|
|
1624
1631
|
},
|
|
1625
|
-
"
|
|
1626
|
-
"description": "
|
|
1627
|
-
"
|
|
1628
|
-
|
|
1632
|
+
"local": {
|
|
1633
|
+
"description": "Write per-project config (default)",
|
|
1634
|
+
"exclusive": [
|
|
1635
|
+
"global"
|
|
1636
|
+
],
|
|
1637
|
+
"name": "local",
|
|
1638
|
+
"allowNo": false,
|
|
1639
|
+
"type": "boolean"
|
|
1640
|
+
},
|
|
1641
|
+
"global": {
|
|
1642
|
+
"description": "Write user-level global config",
|
|
1643
|
+
"exclusive": [
|
|
1644
|
+
"local"
|
|
1645
|
+
],
|
|
1646
|
+
"name": "global",
|
|
1647
|
+
"allowNo": false,
|
|
1648
|
+
"type": "boolean"
|
|
1649
|
+
},
|
|
1650
|
+
"project-id": {
|
|
1651
|
+
"description": "Respan project ID (added to metadata / resource attributes)",
|
|
1652
|
+
"env": "RESPAN_PROJECT_ID",
|
|
1653
|
+
"name": "project-id",
|
|
1629
1654
|
"hasDynamicHelp": false,
|
|
1630
1655
|
"multiple": false,
|
|
1631
1656
|
"type": "option"
|
|
1632
1657
|
},
|
|
1633
|
-
"
|
|
1634
|
-
"description": "
|
|
1635
|
-
"name": "
|
|
1658
|
+
"base-url": {
|
|
1659
|
+
"description": "Respan API base URL (for enterprise deployments)",
|
|
1660
|
+
"name": "base-url",
|
|
1661
|
+
"default": "https://api.respan.ai/api",
|
|
1636
1662
|
"hasDynamicHelp": false,
|
|
1637
1663
|
"multiple": false,
|
|
1638
1664
|
"type": "option"
|
|
1639
1665
|
},
|
|
1640
|
-
"
|
|
1641
|
-
"description": "
|
|
1642
|
-
"name": "
|
|
1666
|
+
"attrs": {
|
|
1667
|
+
"description": "Custom attributes JSON (e.g. '{\"env\":\"prod\"}')",
|
|
1668
|
+
"name": "attrs",
|
|
1669
|
+
"default": "{}",
|
|
1643
1670
|
"hasDynamicHelp": false,
|
|
1644
1671
|
"multiple": false,
|
|
1645
1672
|
"type": "option"
|
|
1646
1673
|
},
|
|
1647
|
-
"
|
|
1648
|
-
"description": "
|
|
1649
|
-
"
|
|
1674
|
+
"customer-id": {
|
|
1675
|
+
"description": "Customer/user identifier for traces (e.g. your name or email)",
|
|
1676
|
+
"env": "RESPAN_CUSTOMER_ID",
|
|
1677
|
+
"name": "customer-id",
|
|
1650
1678
|
"hasDynamicHelp": false,
|
|
1651
1679
|
"multiple": false,
|
|
1652
1680
|
"type": "option"
|
|
1653
|
-
}
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
"id": "logs:create",
|
|
1658
|
-
"pluginAlias": "@respan/cli",
|
|
1659
|
-
"pluginName": "@respan/cli",
|
|
1660
|
-
"pluginType": "core",
|
|
1661
|
-
"strict": true,
|
|
1662
|
-
"enableJsonFlag": false,
|
|
1663
|
-
"isESM": true,
|
|
1664
|
-
"relativePath": [
|
|
1665
|
-
"dist",
|
|
1666
|
-
"commands",
|
|
1667
|
-
"logs",
|
|
1668
|
-
"create.js"
|
|
1669
|
-
]
|
|
1670
|
-
},
|
|
1671
|
-
"logs:get": {
|
|
1672
|
-
"aliases": [],
|
|
1673
|
-
"args": {
|
|
1674
|
-
"id": {
|
|
1675
|
-
"description": "Span ID",
|
|
1676
|
-
"name": "id",
|
|
1677
|
-
"required": true
|
|
1678
|
-
}
|
|
1679
|
-
},
|
|
1680
|
-
"description": "Get a specific log span",
|
|
1681
|
-
"flags": {
|
|
1682
|
-
"api-key": {
|
|
1683
|
-
"description": "API key (env: RESPAN_API_KEY)",
|
|
1684
|
-
"env": "RESPAN_API_KEY",
|
|
1685
|
-
"name": "api-key",
|
|
1681
|
+
},
|
|
1682
|
+
"span-name": {
|
|
1683
|
+
"description": "Root span name for traces (default: claude-code)",
|
|
1684
|
+
"name": "span-name",
|
|
1686
1685
|
"hasDynamicHelp": false,
|
|
1687
1686
|
"multiple": false,
|
|
1688
1687
|
"type": "option"
|
|
1689
1688
|
},
|
|
1690
|
-
"
|
|
1691
|
-
"description": "
|
|
1692
|
-
"name": "
|
|
1689
|
+
"workflow-name": {
|
|
1690
|
+
"description": "Workflow name for traces (default: claude-code)",
|
|
1691
|
+
"name": "workflow-name",
|
|
1693
1692
|
"hasDynamicHelp": false,
|
|
1694
1693
|
"multiple": false,
|
|
1695
1694
|
"type": "option"
|
|
1696
1695
|
},
|
|
1697
|
-
"
|
|
1698
|
-
"description": "
|
|
1699
|
-
"name": "
|
|
1700
|
-
"allowNo": false,
|
|
1701
|
-
"type": "boolean"
|
|
1702
|
-
},
|
|
1703
|
-
"csv": {
|
|
1704
|
-
"description": "Output as CSV",
|
|
1705
|
-
"name": "csv",
|
|
1706
|
-
"allowNo": false,
|
|
1707
|
-
"type": "boolean"
|
|
1708
|
-
},
|
|
1709
|
-
"verbose": {
|
|
1710
|
-
"char": "v",
|
|
1711
|
-
"description": "Show verbose output",
|
|
1712
|
-
"name": "verbose",
|
|
1696
|
+
"dry-run": {
|
|
1697
|
+
"description": "Preview changes without writing files",
|
|
1698
|
+
"name": "dry-run",
|
|
1713
1699
|
"allowNo": false,
|
|
1714
1700
|
"type": "boolean"
|
|
1715
1701
|
}
|
|
1716
1702
|
},
|
|
1717
1703
|
"hasDynamicHelp": false,
|
|
1718
1704
|
"hiddenAliases": [],
|
|
1719
|
-
"id": "
|
|
1705
|
+
"id": "integrate:claude-code",
|
|
1720
1706
|
"pluginAlias": "@respan/cli",
|
|
1721
1707
|
"pluginName": "@respan/cli",
|
|
1722
1708
|
"pluginType": "core",
|
|
@@ -1726,14 +1712,21 @@
|
|
|
1726
1712
|
"relativePath": [
|
|
1727
1713
|
"dist",
|
|
1728
1714
|
"commands",
|
|
1729
|
-
"
|
|
1730
|
-
"
|
|
1715
|
+
"integrate",
|
|
1716
|
+
"claude-code.js"
|
|
1731
1717
|
]
|
|
1732
1718
|
},
|
|
1733
|
-
"
|
|
1719
|
+
"integrate:codex-cli": {
|
|
1734
1720
|
"aliases": [],
|
|
1735
1721
|
"args": {},
|
|
1736
|
-
"description": "
|
|
1722
|
+
"description": "Integrate Respan with Codex CLI.\n\nInstalls a notify hook that reads session JSONL files and sends\nthem to Respan as structured spans (chat, tool, reasoning).\n\nScope:\n --global Install hook script + register notify in ~/.codex/config.toml\n --local Write .codex/respan.json with customer_id, span_name, etc.\n (default) Both: install hook globally + config for current project",
|
|
1723
|
+
"examples": [
|
|
1724
|
+
"respan integrate codex-cli",
|
|
1725
|
+
"respan integrate codex-cli --global",
|
|
1726
|
+
"respan integrate codex-cli --local --customer-id frank",
|
|
1727
|
+
"respan integrate codex-cli --attrs '{\"env\":\"prod\"}'",
|
|
1728
|
+
"respan integrate codex-cli --dry-run"
|
|
1729
|
+
],
|
|
1737
1730
|
"flags": {
|
|
1738
1731
|
"api-key": {
|
|
1739
1732
|
"description": "API key (env: RESPAN_API_KEY)",
|
|
@@ -1769,75 +1762,80 @@
|
|
|
1769
1762
|
"allowNo": false,
|
|
1770
1763
|
"type": "boolean"
|
|
1771
1764
|
},
|
|
1772
|
-
"
|
|
1773
|
-
"description": "
|
|
1774
|
-
"
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
"
|
|
1778
|
-
"
|
|
1765
|
+
"local": {
|
|
1766
|
+
"description": "Write per-project config (default)",
|
|
1767
|
+
"exclusive": [
|
|
1768
|
+
"global"
|
|
1769
|
+
],
|
|
1770
|
+
"name": "local",
|
|
1771
|
+
"allowNo": false,
|
|
1772
|
+
"type": "boolean"
|
|
1779
1773
|
},
|
|
1780
|
-
"
|
|
1781
|
-
"description": "
|
|
1782
|
-
"
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
"
|
|
1786
|
-
"
|
|
1774
|
+
"global": {
|
|
1775
|
+
"description": "Write user-level global config",
|
|
1776
|
+
"exclusive": [
|
|
1777
|
+
"local"
|
|
1778
|
+
],
|
|
1779
|
+
"name": "global",
|
|
1780
|
+
"allowNo": false,
|
|
1781
|
+
"type": "boolean"
|
|
1787
1782
|
},
|
|
1788
|
-
"
|
|
1789
|
-
"description": "
|
|
1790
|
-
"
|
|
1783
|
+
"project-id": {
|
|
1784
|
+
"description": "Respan project ID (added to metadata / resource attributes)",
|
|
1785
|
+
"env": "RESPAN_PROJECT_ID",
|
|
1786
|
+
"name": "project-id",
|
|
1791
1787
|
"hasDynamicHelp": false,
|
|
1792
1788
|
"multiple": false,
|
|
1793
1789
|
"type": "option"
|
|
1794
1790
|
},
|
|
1795
|
-
"
|
|
1796
|
-
"description": "
|
|
1797
|
-
"name": "
|
|
1791
|
+
"base-url": {
|
|
1792
|
+
"description": "Respan API base URL (for enterprise deployments)",
|
|
1793
|
+
"name": "base-url",
|
|
1794
|
+
"default": "https://api.respan.ai/api",
|
|
1798
1795
|
"hasDynamicHelp": false,
|
|
1799
1796
|
"multiple": false,
|
|
1800
1797
|
"type": "option"
|
|
1801
1798
|
},
|
|
1802
|
-
"
|
|
1803
|
-
"description": "
|
|
1804
|
-
"name": "
|
|
1799
|
+
"attrs": {
|
|
1800
|
+
"description": "Custom attributes JSON (e.g. '{\"env\":\"prod\"}')",
|
|
1801
|
+
"name": "attrs",
|
|
1802
|
+
"default": "{}",
|
|
1805
1803
|
"hasDynamicHelp": false,
|
|
1806
1804
|
"multiple": false,
|
|
1807
1805
|
"type": "option"
|
|
1808
1806
|
},
|
|
1809
|
-
"
|
|
1810
|
-
"description": "
|
|
1811
|
-
"
|
|
1812
|
-
"
|
|
1813
|
-
"multiple": true,
|
|
1814
|
-
"type": "option"
|
|
1815
|
-
},
|
|
1816
|
-
"all-envs": {
|
|
1817
|
-
"description": "Include all environments (true/false)",
|
|
1818
|
-
"name": "all-envs",
|
|
1807
|
+
"customer-id": {
|
|
1808
|
+
"description": "Customer/user identifier for traces (e.g. your name or email)",
|
|
1809
|
+
"env": "RESPAN_CUSTOMER_ID",
|
|
1810
|
+
"name": "customer-id",
|
|
1819
1811
|
"hasDynamicHelp": false,
|
|
1820
1812
|
"multiple": false,
|
|
1821
1813
|
"type": "option"
|
|
1822
1814
|
},
|
|
1823
|
-
"
|
|
1824
|
-
"description": "
|
|
1825
|
-
"name": "
|
|
1815
|
+
"span-name": {
|
|
1816
|
+
"description": "Root span name for traces (default: claude-code)",
|
|
1817
|
+
"name": "span-name",
|
|
1826
1818
|
"hasDynamicHelp": false,
|
|
1827
1819
|
"multiple": false,
|
|
1828
1820
|
"type": "option"
|
|
1829
1821
|
},
|
|
1830
|
-
"
|
|
1831
|
-
"description": "
|
|
1832
|
-
"name": "
|
|
1822
|
+
"workflow-name": {
|
|
1823
|
+
"description": "Workflow name for traces (default: claude-code)",
|
|
1824
|
+
"name": "workflow-name",
|
|
1833
1825
|
"hasDynamicHelp": false,
|
|
1834
1826
|
"multiple": false,
|
|
1835
1827
|
"type": "option"
|
|
1828
|
+
},
|
|
1829
|
+
"dry-run": {
|
|
1830
|
+
"description": "Preview changes without writing files",
|
|
1831
|
+
"name": "dry-run",
|
|
1832
|
+
"allowNo": false,
|
|
1833
|
+
"type": "boolean"
|
|
1836
1834
|
}
|
|
1837
1835
|
},
|
|
1838
1836
|
"hasDynamicHelp": false,
|
|
1839
1837
|
"hiddenAliases": [],
|
|
1840
|
-
"id": "
|
|
1838
|
+
"id": "integrate:codex-cli",
|
|
1841
1839
|
"pluginAlias": "@respan/cli",
|
|
1842
1840
|
"pluginName": "@respan/cli",
|
|
1843
1841
|
"pluginType": "core",
|
|
@@ -1847,14 +1845,20 @@
|
|
|
1847
1845
|
"relativePath": [
|
|
1848
1846
|
"dist",
|
|
1849
1847
|
"commands",
|
|
1850
|
-
"
|
|
1851
|
-
"
|
|
1848
|
+
"integrate",
|
|
1849
|
+
"codex-cli.js"
|
|
1852
1850
|
]
|
|
1853
1851
|
},
|
|
1854
|
-
"
|
|
1852
|
+
"integrate:gemini-cli": {
|
|
1855
1853
|
"aliases": [],
|
|
1856
1854
|
"args": {},
|
|
1857
|
-
"description": "
|
|
1855
|
+
"description": "Integrate Respan with Gemini CLI.\n\nInstalls an AfterModel hook that captures LLM request/response data\nand sends it to Respan as structured spans with model, token counts,\nand input/output.\n\nScope:\n --global Write to ~/.gemini/settings.json (default)\n --local Write to .gemini/settings.json in project root\n\nNote: Gemini CLI ignores workspace-level telemetry settings, so\n--global is the default.",
|
|
1856
|
+
"examples": [
|
|
1857
|
+
"respan integrate gemini-cli",
|
|
1858
|
+
"respan integrate gemini-cli --local",
|
|
1859
|
+
"respan integrate gemini-cli --project-id my-project --attrs '{\"env\":\"prod\"}'",
|
|
1860
|
+
"respan integrate gemini-cli --dry-run"
|
|
1861
|
+
],
|
|
1858
1862
|
"flags": {
|
|
1859
1863
|
"api-key": {
|
|
1860
1864
|
"description": "API key (env: RESPAN_API_KEY)",
|
|
@@ -1890,47 +1894,80 @@
|
|
|
1890
1894
|
"allowNo": false,
|
|
1891
1895
|
"type": "boolean"
|
|
1892
1896
|
},
|
|
1893
|
-
"
|
|
1894
|
-
"description": "
|
|
1895
|
-
"
|
|
1896
|
-
|
|
1897
|
+
"local": {
|
|
1898
|
+
"description": "Write per-project config (default)",
|
|
1899
|
+
"exclusive": [
|
|
1900
|
+
"global"
|
|
1901
|
+
],
|
|
1902
|
+
"name": "local",
|
|
1903
|
+
"allowNo": false,
|
|
1904
|
+
"type": "boolean"
|
|
1905
|
+
},
|
|
1906
|
+
"global": {
|
|
1907
|
+
"description": "Write user-level global config",
|
|
1908
|
+
"exclusive": [
|
|
1909
|
+
"local"
|
|
1910
|
+
],
|
|
1911
|
+
"name": "global",
|
|
1912
|
+
"allowNo": false,
|
|
1913
|
+
"type": "boolean"
|
|
1914
|
+
},
|
|
1915
|
+
"project-id": {
|
|
1916
|
+
"description": "Respan project ID (added to metadata / resource attributes)",
|
|
1917
|
+
"env": "RESPAN_PROJECT_ID",
|
|
1918
|
+
"name": "project-id",
|
|
1897
1919
|
"hasDynamicHelp": false,
|
|
1898
1920
|
"multiple": false,
|
|
1899
1921
|
"type": "option"
|
|
1900
1922
|
},
|
|
1901
|
-
"
|
|
1902
|
-
"description": "
|
|
1903
|
-
"name": "
|
|
1904
|
-
"
|
|
1923
|
+
"base-url": {
|
|
1924
|
+
"description": "Respan API base URL (for enterprise deployments)",
|
|
1925
|
+
"name": "base-url",
|
|
1926
|
+
"default": "https://api.respan.ai/api",
|
|
1905
1927
|
"hasDynamicHelp": false,
|
|
1906
1928
|
"multiple": false,
|
|
1907
1929
|
"type": "option"
|
|
1908
1930
|
},
|
|
1909
|
-
"
|
|
1910
|
-
"description": "
|
|
1911
|
-
"name": "
|
|
1931
|
+
"attrs": {
|
|
1932
|
+
"description": "Custom attributes JSON (e.g. '{\"env\":\"prod\"}')",
|
|
1933
|
+
"name": "attrs",
|
|
1934
|
+
"default": "{}",
|
|
1912
1935
|
"hasDynamicHelp": false,
|
|
1913
|
-
"multiple":
|
|
1936
|
+
"multiple": false,
|
|
1914
1937
|
"type": "option"
|
|
1915
1938
|
},
|
|
1916
|
-
"
|
|
1917
|
-
"description": "
|
|
1918
|
-
"
|
|
1939
|
+
"customer-id": {
|
|
1940
|
+
"description": "Customer/user identifier for traces (e.g. your name or email)",
|
|
1941
|
+
"env": "RESPAN_CUSTOMER_ID",
|
|
1942
|
+
"name": "customer-id",
|
|
1919
1943
|
"hasDynamicHelp": false,
|
|
1920
1944
|
"multiple": false,
|
|
1921
1945
|
"type": "option"
|
|
1922
1946
|
},
|
|
1923
|
-
"
|
|
1924
|
-
"description": "
|
|
1925
|
-
"name": "
|
|
1947
|
+
"span-name": {
|
|
1948
|
+
"description": "Root span name for traces (default: claude-code)",
|
|
1949
|
+
"name": "span-name",
|
|
1926
1950
|
"hasDynamicHelp": false,
|
|
1927
1951
|
"multiple": false,
|
|
1928
1952
|
"type": "option"
|
|
1953
|
+
},
|
|
1954
|
+
"workflow-name": {
|
|
1955
|
+
"description": "Workflow name for traces (default: claude-code)",
|
|
1956
|
+
"name": "workflow-name",
|
|
1957
|
+
"hasDynamicHelp": false,
|
|
1958
|
+
"multiple": false,
|
|
1959
|
+
"type": "option"
|
|
1960
|
+
},
|
|
1961
|
+
"dry-run": {
|
|
1962
|
+
"description": "Preview changes without writing files",
|
|
1963
|
+
"name": "dry-run",
|
|
1964
|
+
"allowNo": false,
|
|
1965
|
+
"type": "boolean"
|
|
1929
1966
|
}
|
|
1930
1967
|
},
|
|
1931
1968
|
"hasDynamicHelp": false,
|
|
1932
1969
|
"hiddenAliases": [],
|
|
1933
|
-
"id": "
|
|
1970
|
+
"id": "integrate:gemini-cli",
|
|
1934
1971
|
"pluginAlias": "@respan/cli",
|
|
1935
1972
|
"pluginName": "@respan/cli",
|
|
1936
1973
|
"pluginType": "core",
|
|
@@ -1940,20 +1977,19 @@
|
|
|
1940
1977
|
"relativePath": [
|
|
1941
1978
|
"dist",
|
|
1942
1979
|
"commands",
|
|
1943
|
-
"
|
|
1944
|
-
"
|
|
1980
|
+
"integrate",
|
|
1981
|
+
"gemini-cli.js"
|
|
1945
1982
|
]
|
|
1946
1983
|
},
|
|
1947
|
-
"integrate:
|
|
1984
|
+
"integrate:opencode": {
|
|
1948
1985
|
"aliases": [],
|
|
1949
1986
|
"args": {},
|
|
1950
|
-
"description": "Integrate Respan with
|
|
1987
|
+
"description": "Integrate Respan with OpenCode.\n\nOpenCode's built-in OTel does not work reliably, so this uses the\ncommunity opencode-otel plugin instead.\n\nScope:\n --local Write plugin config to project root (default)\n --global Write to ~/.config/opencode/plugins/otel.json\n The opencode-otel package is always installed globally.",
|
|
1951
1988
|
"examples": [
|
|
1952
|
-
"respan integrate
|
|
1953
|
-
"respan integrate
|
|
1954
|
-
"respan integrate
|
|
1955
|
-
"respan integrate
|
|
1956
|
-
"respan integrate claude-code --dry-run"
|
|
1989
|
+
"respan integrate opencode",
|
|
1990
|
+
"respan integrate opencode --global",
|
|
1991
|
+
"respan integrate opencode --project-id my-project --attrs '{\"env\":\"prod\"}'",
|
|
1992
|
+
"respan integrate opencode --dry-run"
|
|
1957
1993
|
],
|
|
1958
1994
|
"flags": {
|
|
1959
1995
|
"api-key": {
|
|
@@ -2063,7 +2099,7 @@
|
|
|
2063
2099
|
},
|
|
2064
2100
|
"hasDynamicHelp": false,
|
|
2065
2101
|
"hiddenAliases": [],
|
|
2066
|
-
"id": "integrate:
|
|
2102
|
+
"id": "integrate:opencode",
|
|
2067
2103
|
"pluginAlias": "@respan/cli",
|
|
2068
2104
|
"pluginName": "@respan/cli",
|
|
2069
2105
|
"pluginType": "core",
|
|
@@ -2074,20 +2110,19 @@
|
|
|
2074
2110
|
"dist",
|
|
2075
2111
|
"commands",
|
|
2076
2112
|
"integrate",
|
|
2077
|
-
"
|
|
2113
|
+
"opencode.js"
|
|
2078
2114
|
]
|
|
2079
2115
|
},
|
|
2080
|
-
"
|
|
2116
|
+
"prompts:create-version": {
|
|
2081
2117
|
"aliases": [],
|
|
2082
|
-
"args": {
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
],
|
|
2118
|
+
"args": {
|
|
2119
|
+
"prompt-id": {
|
|
2120
|
+
"description": "Prompt ID",
|
|
2121
|
+
"name": "prompt-id",
|
|
2122
|
+
"required": true
|
|
2123
|
+
}
|
|
2124
|
+
},
|
|
2125
|
+
"description": "Create a new version of a prompt",
|
|
2091
2126
|
"flags": {
|
|
2092
2127
|
"api-key": {
|
|
2093
2128
|
"description": "API key (env: RESPAN_API_KEY)",
|
|
@@ -2123,80 +2158,39 @@
|
|
|
2123
2158
|
"allowNo": false,
|
|
2124
2159
|
"type": "boolean"
|
|
2125
2160
|
},
|
|
2126
|
-
"
|
|
2127
|
-
"description": "
|
|
2128
|
-
"
|
|
2129
|
-
|
|
2130
|
-
],
|
|
2131
|
-
"name": "local",
|
|
2132
|
-
"allowNo": false,
|
|
2133
|
-
"type": "boolean"
|
|
2134
|
-
},
|
|
2135
|
-
"global": {
|
|
2136
|
-
"description": "Write user-level global config",
|
|
2137
|
-
"exclusive": [
|
|
2138
|
-
"local"
|
|
2139
|
-
],
|
|
2140
|
-
"name": "global",
|
|
2141
|
-
"allowNo": false,
|
|
2142
|
-
"type": "boolean"
|
|
2143
|
-
},
|
|
2144
|
-
"project-id": {
|
|
2145
|
-
"description": "Respan project ID (added to metadata / resource attributes)",
|
|
2146
|
-
"env": "RESPAN_PROJECT_ID",
|
|
2147
|
-
"name": "project-id",
|
|
2148
|
-
"hasDynamicHelp": false,
|
|
2149
|
-
"multiple": false,
|
|
2150
|
-
"type": "option"
|
|
2151
|
-
},
|
|
2152
|
-
"base-url": {
|
|
2153
|
-
"description": "Respan API base URL (for enterprise deployments)",
|
|
2154
|
-
"name": "base-url",
|
|
2155
|
-
"default": "https://api.respan.ai/api",
|
|
2156
|
-
"hasDynamicHelp": false,
|
|
2157
|
-
"multiple": false,
|
|
2158
|
-
"type": "option"
|
|
2159
|
-
},
|
|
2160
|
-
"attrs": {
|
|
2161
|
-
"description": "Custom attributes JSON (e.g. '{\"env\":\"prod\"}')",
|
|
2162
|
-
"name": "attrs",
|
|
2163
|
-
"default": "{}",
|
|
2164
|
-
"hasDynamicHelp": false,
|
|
2165
|
-
"multiple": false,
|
|
2166
|
-
"type": "option"
|
|
2167
|
-
},
|
|
2168
|
-
"customer-id": {
|
|
2169
|
-
"description": "Customer/user identifier for traces (e.g. your name or email)",
|
|
2170
|
-
"env": "RESPAN_CUSTOMER_ID",
|
|
2171
|
-
"name": "customer-id",
|
|
2161
|
+
"messages": {
|
|
2162
|
+
"description": "Messages as JSON array string",
|
|
2163
|
+
"name": "messages",
|
|
2164
|
+
"required": true,
|
|
2172
2165
|
"hasDynamicHelp": false,
|
|
2173
2166
|
"multiple": false,
|
|
2174
2167
|
"type": "option"
|
|
2175
2168
|
},
|
|
2176
|
-
"
|
|
2177
|
-
"description": "
|
|
2178
|
-
"name": "
|
|
2169
|
+
"model": {
|
|
2170
|
+
"description": "Model name",
|
|
2171
|
+
"name": "model",
|
|
2179
2172
|
"hasDynamicHelp": false,
|
|
2180
2173
|
"multiple": false,
|
|
2181
2174
|
"type": "option"
|
|
2182
2175
|
},
|
|
2183
|
-
"
|
|
2184
|
-
"description": "
|
|
2185
|
-
"name": "
|
|
2176
|
+
"temperature": {
|
|
2177
|
+
"description": "Temperature value",
|
|
2178
|
+
"name": "temperature",
|
|
2186
2179
|
"hasDynamicHelp": false,
|
|
2187
2180
|
"multiple": false,
|
|
2188
2181
|
"type": "option"
|
|
2189
2182
|
},
|
|
2190
|
-
"
|
|
2191
|
-
"description": "
|
|
2192
|
-
"name": "
|
|
2193
|
-
"
|
|
2194
|
-
"
|
|
2183
|
+
"max-tokens": {
|
|
2184
|
+
"description": "Max tokens",
|
|
2185
|
+
"name": "max-tokens",
|
|
2186
|
+
"hasDynamicHelp": false,
|
|
2187
|
+
"multiple": false,
|
|
2188
|
+
"type": "option"
|
|
2195
2189
|
}
|
|
2196
2190
|
},
|
|
2197
2191
|
"hasDynamicHelp": false,
|
|
2198
2192
|
"hiddenAliases": [],
|
|
2199
|
-
"id": "
|
|
2193
|
+
"id": "prompts:create-version",
|
|
2200
2194
|
"pluginAlias": "@respan/cli",
|
|
2201
2195
|
"pluginName": "@respan/cli",
|
|
2202
2196
|
"pluginType": "core",
|
|
@@ -2206,20 +2200,14 @@
|
|
|
2206
2200
|
"relativePath": [
|
|
2207
2201
|
"dist",
|
|
2208
2202
|
"commands",
|
|
2209
|
-
"
|
|
2210
|
-
"
|
|
2203
|
+
"prompts",
|
|
2204
|
+
"create-version.js"
|
|
2211
2205
|
]
|
|
2212
2206
|
},
|
|
2213
|
-
"
|
|
2207
|
+
"prompts:create": {
|
|
2214
2208
|
"aliases": [],
|
|
2215
2209
|
"args": {},
|
|
2216
|
-
"description": "
|
|
2217
|
-
"examples": [
|
|
2218
|
-
"respan integrate gemini-cli",
|
|
2219
|
-
"respan integrate gemini-cli --global",
|
|
2220
|
-
"respan integrate gemini-cli --project-id my-project --attrs '{\"env\":\"prod\"}'",
|
|
2221
|
-
"respan integrate gemini-cli --dry-run"
|
|
2222
|
-
],
|
|
2210
|
+
"description": "Create a new prompt",
|
|
2223
2211
|
"flags": {
|
|
2224
2212
|
"api-key": {
|
|
2225
2213
|
"description": "API key (env: RESPAN_API_KEY)",
|
|
@@ -2255,80 +2243,87 @@
|
|
|
2255
2243
|
"allowNo": false,
|
|
2256
2244
|
"type": "boolean"
|
|
2257
2245
|
},
|
|
2258
|
-
"
|
|
2259
|
-
"description": "
|
|
2260
|
-
"
|
|
2261
|
-
|
|
2262
|
-
],
|
|
2263
|
-
"name": "local",
|
|
2264
|
-
"allowNo": false,
|
|
2265
|
-
"type": "boolean"
|
|
2266
|
-
},
|
|
2267
|
-
"global": {
|
|
2268
|
-
"description": "Write user-level global config",
|
|
2269
|
-
"exclusive": [
|
|
2270
|
-
"local"
|
|
2271
|
-
],
|
|
2272
|
-
"name": "global",
|
|
2273
|
-
"allowNo": false,
|
|
2274
|
-
"type": "boolean"
|
|
2275
|
-
},
|
|
2276
|
-
"project-id": {
|
|
2277
|
-
"description": "Respan project ID (added to metadata / resource attributes)",
|
|
2278
|
-
"env": "RESPAN_PROJECT_ID",
|
|
2279
|
-
"name": "project-id",
|
|
2246
|
+
"name": {
|
|
2247
|
+
"description": "Prompt name",
|
|
2248
|
+
"name": "name",
|
|
2249
|
+
"required": true,
|
|
2280
2250
|
"hasDynamicHelp": false,
|
|
2281
2251
|
"multiple": false,
|
|
2282
2252
|
"type": "option"
|
|
2283
2253
|
},
|
|
2284
|
-
"
|
|
2285
|
-
"description": "
|
|
2286
|
-
"name": "
|
|
2287
|
-
"default": "https://api.respan.ai/api",
|
|
2254
|
+
"description": {
|
|
2255
|
+
"description": "Prompt description",
|
|
2256
|
+
"name": "description",
|
|
2288
2257
|
"hasDynamicHelp": false,
|
|
2289
2258
|
"multiple": false,
|
|
2290
2259
|
"type": "option"
|
|
2291
|
-
}
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2260
|
+
}
|
|
2261
|
+
},
|
|
2262
|
+
"hasDynamicHelp": false,
|
|
2263
|
+
"hiddenAliases": [],
|
|
2264
|
+
"id": "prompts:create",
|
|
2265
|
+
"pluginAlias": "@respan/cli",
|
|
2266
|
+
"pluginName": "@respan/cli",
|
|
2267
|
+
"pluginType": "core",
|
|
2268
|
+
"strict": true,
|
|
2269
|
+
"enableJsonFlag": false,
|
|
2270
|
+
"isESM": true,
|
|
2271
|
+
"relativePath": [
|
|
2272
|
+
"dist",
|
|
2273
|
+
"commands",
|
|
2274
|
+
"prompts",
|
|
2275
|
+
"create.js"
|
|
2276
|
+
]
|
|
2277
|
+
},
|
|
2278
|
+
"prompts:get": {
|
|
2279
|
+
"aliases": [],
|
|
2280
|
+
"args": {
|
|
2281
|
+
"id": {
|
|
2282
|
+
"description": "Prompt ID",
|
|
2283
|
+
"name": "id",
|
|
2284
|
+
"required": true
|
|
2285
|
+
}
|
|
2286
|
+
},
|
|
2287
|
+
"description": "Get a specific prompt",
|
|
2288
|
+
"flags": {
|
|
2289
|
+
"api-key": {
|
|
2290
|
+
"description": "API key (env: RESPAN_API_KEY)",
|
|
2291
|
+
"env": "RESPAN_API_KEY",
|
|
2292
|
+
"name": "api-key",
|
|
2296
2293
|
"hasDynamicHelp": false,
|
|
2297
2294
|
"multiple": false,
|
|
2298
2295
|
"type": "option"
|
|
2299
2296
|
},
|
|
2300
|
-
"
|
|
2301
|
-
"description": "
|
|
2302
|
-
"
|
|
2303
|
-
"name": "customer-id",
|
|
2297
|
+
"profile": {
|
|
2298
|
+
"description": "Named profile to use",
|
|
2299
|
+
"name": "profile",
|
|
2304
2300
|
"hasDynamicHelp": false,
|
|
2305
2301
|
"multiple": false,
|
|
2306
2302
|
"type": "option"
|
|
2307
2303
|
},
|
|
2308
|
-
"
|
|
2309
|
-
"description": "
|
|
2310
|
-
"name": "
|
|
2311
|
-
"
|
|
2312
|
-
"
|
|
2313
|
-
"type": "option"
|
|
2304
|
+
"json": {
|
|
2305
|
+
"description": "Output as JSON",
|
|
2306
|
+
"name": "json",
|
|
2307
|
+
"allowNo": false,
|
|
2308
|
+
"type": "boolean"
|
|
2314
2309
|
},
|
|
2315
|
-
"
|
|
2316
|
-
"description": "
|
|
2317
|
-
"name": "
|
|
2318
|
-
"
|
|
2319
|
-
"
|
|
2320
|
-
"type": "option"
|
|
2310
|
+
"csv": {
|
|
2311
|
+
"description": "Output as CSV",
|
|
2312
|
+
"name": "csv",
|
|
2313
|
+
"allowNo": false,
|
|
2314
|
+
"type": "boolean"
|
|
2321
2315
|
},
|
|
2322
|
-
"
|
|
2323
|
-
"
|
|
2324
|
-
"
|
|
2316
|
+
"verbose": {
|
|
2317
|
+
"char": "v",
|
|
2318
|
+
"description": "Show verbose output",
|
|
2319
|
+
"name": "verbose",
|
|
2325
2320
|
"allowNo": false,
|
|
2326
2321
|
"type": "boolean"
|
|
2327
2322
|
}
|
|
2328
2323
|
},
|
|
2329
2324
|
"hasDynamicHelp": false,
|
|
2330
2325
|
"hiddenAliases": [],
|
|
2331
|
-
"id": "
|
|
2326
|
+
"id": "prompts:get",
|
|
2332
2327
|
"pluginAlias": "@respan/cli",
|
|
2333
2328
|
"pluginName": "@respan/cli",
|
|
2334
2329
|
"pluginType": "core",
|
|
@@ -2338,20 +2333,14 @@
|
|
|
2338
2333
|
"relativePath": [
|
|
2339
2334
|
"dist",
|
|
2340
2335
|
"commands",
|
|
2341
|
-
"
|
|
2342
|
-
"
|
|
2336
|
+
"prompts",
|
|
2337
|
+
"get.js"
|
|
2343
2338
|
]
|
|
2344
2339
|
},
|
|
2345
|
-
"
|
|
2340
|
+
"prompts:list": {
|
|
2346
2341
|
"aliases": [],
|
|
2347
2342
|
"args": {},
|
|
2348
|
-
"description": "
|
|
2349
|
-
"examples": [
|
|
2350
|
-
"respan integrate opencode",
|
|
2351
|
-
"respan integrate opencode --global",
|
|
2352
|
-
"respan integrate opencode --project-id my-project --attrs '{\"env\":\"prod\"}'",
|
|
2353
|
-
"respan integrate opencode --dry-run"
|
|
2354
|
-
],
|
|
2343
|
+
"description": "List prompts",
|
|
2355
2344
|
"flags": {
|
|
2356
2345
|
"api-key": {
|
|
2357
2346
|
"description": "API key (env: RESPAN_API_KEY)",
|
|
@@ -2387,80 +2376,18 @@
|
|
|
2387
2376
|
"allowNo": false,
|
|
2388
2377
|
"type": "boolean"
|
|
2389
2378
|
},
|
|
2390
|
-
"
|
|
2391
|
-
"description": "
|
|
2392
|
-
"
|
|
2393
|
-
|
|
2394
|
-
],
|
|
2395
|
-
"name": "local",
|
|
2396
|
-
"allowNo": false,
|
|
2397
|
-
"type": "boolean"
|
|
2398
|
-
},
|
|
2399
|
-
"global": {
|
|
2400
|
-
"description": "Write user-level global config",
|
|
2401
|
-
"exclusive": [
|
|
2402
|
-
"local"
|
|
2403
|
-
],
|
|
2404
|
-
"name": "global",
|
|
2405
|
-
"allowNo": false,
|
|
2406
|
-
"type": "boolean"
|
|
2407
|
-
},
|
|
2408
|
-
"project-id": {
|
|
2409
|
-
"description": "Respan project ID (added to metadata / resource attributes)",
|
|
2410
|
-
"env": "RESPAN_PROJECT_ID",
|
|
2411
|
-
"name": "project-id",
|
|
2412
|
-
"hasDynamicHelp": false,
|
|
2413
|
-
"multiple": false,
|
|
2414
|
-
"type": "option"
|
|
2415
|
-
},
|
|
2416
|
-
"base-url": {
|
|
2417
|
-
"description": "Respan API base URL (for enterprise deployments)",
|
|
2418
|
-
"name": "base-url",
|
|
2419
|
-
"default": "https://api.respan.ai/api",
|
|
2420
|
-
"hasDynamicHelp": false,
|
|
2421
|
-
"multiple": false,
|
|
2422
|
-
"type": "option"
|
|
2423
|
-
},
|
|
2424
|
-
"attrs": {
|
|
2425
|
-
"description": "Custom attributes JSON (e.g. '{\"env\":\"prod\"}')",
|
|
2426
|
-
"name": "attrs",
|
|
2427
|
-
"default": "{}",
|
|
2428
|
-
"hasDynamicHelp": false,
|
|
2429
|
-
"multiple": false,
|
|
2430
|
-
"type": "option"
|
|
2431
|
-
},
|
|
2432
|
-
"customer-id": {
|
|
2433
|
-
"description": "Customer/user identifier for traces (e.g. your name or email)",
|
|
2434
|
-
"env": "RESPAN_CUSTOMER_ID",
|
|
2435
|
-
"name": "customer-id",
|
|
2436
|
-
"hasDynamicHelp": false,
|
|
2437
|
-
"multiple": false,
|
|
2438
|
-
"type": "option"
|
|
2439
|
-
},
|
|
2440
|
-
"span-name": {
|
|
2441
|
-
"description": "Root span name for traces (default: claude-code)",
|
|
2442
|
-
"name": "span-name",
|
|
2443
|
-
"hasDynamicHelp": false,
|
|
2444
|
-
"multiple": false,
|
|
2445
|
-
"type": "option"
|
|
2446
|
-
},
|
|
2447
|
-
"workflow-name": {
|
|
2448
|
-
"description": "Workflow name for traces (default: claude-code)",
|
|
2449
|
-
"name": "workflow-name",
|
|
2379
|
+
"limit": {
|
|
2380
|
+
"description": "Number of results per page",
|
|
2381
|
+
"name": "limit",
|
|
2382
|
+
"default": 50,
|
|
2450
2383
|
"hasDynamicHelp": false,
|
|
2451
2384
|
"multiple": false,
|
|
2452
2385
|
"type": "option"
|
|
2453
|
-
},
|
|
2454
|
-
"dry-run": {
|
|
2455
|
-
"description": "Preview changes without writing files",
|
|
2456
|
-
"name": "dry-run",
|
|
2457
|
-
"allowNo": false,
|
|
2458
|
-
"type": "boolean"
|
|
2459
2386
|
}
|
|
2460
2387
|
},
|
|
2461
2388
|
"hasDynamicHelp": false,
|
|
2462
2389
|
"hiddenAliases": [],
|
|
2463
|
-
"id": "
|
|
2390
|
+
"id": "prompts:list",
|
|
2464
2391
|
"pluginAlias": "@respan/cli",
|
|
2465
2392
|
"pluginName": "@respan/cli",
|
|
2466
2393
|
"pluginType": "core",
|
|
@@ -2470,20 +2397,20 @@
|
|
|
2470
2397
|
"relativePath": [
|
|
2471
2398
|
"dist",
|
|
2472
2399
|
"commands",
|
|
2473
|
-
"
|
|
2474
|
-
"
|
|
2400
|
+
"prompts",
|
|
2401
|
+
"list.js"
|
|
2475
2402
|
]
|
|
2476
2403
|
},
|
|
2477
|
-
"prompts:
|
|
2404
|
+
"prompts:update": {
|
|
2478
2405
|
"aliases": [],
|
|
2479
2406
|
"args": {
|
|
2480
|
-
"
|
|
2407
|
+
"id": {
|
|
2481
2408
|
"description": "Prompt ID",
|
|
2482
|
-
"name": "
|
|
2409
|
+
"name": "id",
|
|
2483
2410
|
"required": true
|
|
2484
2411
|
}
|
|
2485
2412
|
},
|
|
2486
|
-
"description": "
|
|
2413
|
+
"description": "Update a prompt",
|
|
2487
2414
|
"flags": {
|
|
2488
2415
|
"api-key": {
|
|
2489
2416
|
"description": "API key (env: RESPAN_API_KEY)",
|
|
@@ -2519,31 +2446,16 @@
|
|
|
2519
2446
|
"allowNo": false,
|
|
2520
2447
|
"type": "boolean"
|
|
2521
2448
|
},
|
|
2522
|
-
"
|
|
2523
|
-
"description": "
|
|
2524
|
-
"name": "
|
|
2525
|
-
"required": true,
|
|
2526
|
-
"hasDynamicHelp": false,
|
|
2527
|
-
"multiple": false,
|
|
2528
|
-
"type": "option"
|
|
2529
|
-
},
|
|
2530
|
-
"model": {
|
|
2531
|
-
"description": "Model name",
|
|
2532
|
-
"name": "model",
|
|
2533
|
-
"hasDynamicHelp": false,
|
|
2534
|
-
"multiple": false,
|
|
2535
|
-
"type": "option"
|
|
2536
|
-
},
|
|
2537
|
-
"temperature": {
|
|
2538
|
-
"description": "Temperature value",
|
|
2539
|
-
"name": "temperature",
|
|
2449
|
+
"name": {
|
|
2450
|
+
"description": "Prompt name",
|
|
2451
|
+
"name": "name",
|
|
2540
2452
|
"hasDynamicHelp": false,
|
|
2541
2453
|
"multiple": false,
|
|
2542
2454
|
"type": "option"
|
|
2543
2455
|
},
|
|
2544
|
-
"
|
|
2545
|
-
"description": "
|
|
2546
|
-
"name": "
|
|
2456
|
+
"description": {
|
|
2457
|
+
"description": "Prompt description",
|
|
2458
|
+
"name": "description",
|
|
2547
2459
|
"hasDynamicHelp": false,
|
|
2548
2460
|
"multiple": false,
|
|
2549
2461
|
"type": "option"
|
|
@@ -2551,7 +2463,7 @@
|
|
|
2551
2463
|
},
|
|
2552
2464
|
"hasDynamicHelp": false,
|
|
2553
2465
|
"hiddenAliases": [],
|
|
2554
|
-
"id": "prompts:
|
|
2466
|
+
"id": "prompts:update",
|
|
2555
2467
|
"pluginAlias": "@respan/cli",
|
|
2556
2468
|
"pluginName": "@respan/cli",
|
|
2557
2469
|
"pluginType": "core",
|
|
@@ -2562,13 +2474,19 @@
|
|
|
2562
2474
|
"dist",
|
|
2563
2475
|
"commands",
|
|
2564
2476
|
"prompts",
|
|
2565
|
-
"
|
|
2477
|
+
"update.js"
|
|
2566
2478
|
]
|
|
2567
2479
|
},
|
|
2568
|
-
"prompts:
|
|
2480
|
+
"prompts:versions": {
|
|
2569
2481
|
"aliases": [],
|
|
2570
|
-
"args": {
|
|
2571
|
-
|
|
2482
|
+
"args": {
|
|
2483
|
+
"prompt-id": {
|
|
2484
|
+
"description": "Prompt ID",
|
|
2485
|
+
"name": "prompt-id",
|
|
2486
|
+
"required": true
|
|
2487
|
+
}
|
|
2488
|
+
},
|
|
2489
|
+
"description": "List versions of a prompt",
|
|
2572
2490
|
"flags": {
|
|
2573
2491
|
"api-key": {
|
|
2574
2492
|
"description": "API key (env: RESPAN_API_KEY)",
|
|
@@ -2603,26 +2521,11 @@
|
|
|
2603
2521
|
"name": "verbose",
|
|
2604
2522
|
"allowNo": false,
|
|
2605
2523
|
"type": "boolean"
|
|
2606
|
-
},
|
|
2607
|
-
"name": {
|
|
2608
|
-
"description": "Prompt name",
|
|
2609
|
-
"name": "name",
|
|
2610
|
-
"required": true,
|
|
2611
|
-
"hasDynamicHelp": false,
|
|
2612
|
-
"multiple": false,
|
|
2613
|
-
"type": "option"
|
|
2614
|
-
},
|
|
2615
|
-
"description": {
|
|
2616
|
-
"description": "Prompt description",
|
|
2617
|
-
"name": "description",
|
|
2618
|
-
"hasDynamicHelp": false,
|
|
2619
|
-
"multiple": false,
|
|
2620
|
-
"type": "option"
|
|
2621
2524
|
}
|
|
2622
2525
|
},
|
|
2623
2526
|
"hasDynamicHelp": false,
|
|
2624
2527
|
"hiddenAliases": [],
|
|
2625
|
-
"id": "prompts:
|
|
2528
|
+
"id": "prompts:versions",
|
|
2626
2529
|
"pluginAlias": "@respan/cli",
|
|
2627
2530
|
"pluginName": "@respan/cli",
|
|
2628
2531
|
"pluginType": "core",
|
|
@@ -2633,19 +2536,19 @@
|
|
|
2633
2536
|
"dist",
|
|
2634
2537
|
"commands",
|
|
2635
2538
|
"prompts",
|
|
2636
|
-
"
|
|
2539
|
+
"versions.js"
|
|
2637
2540
|
]
|
|
2638
2541
|
},
|
|
2639
|
-
"
|
|
2542
|
+
"traces:get": {
|
|
2640
2543
|
"aliases": [],
|
|
2641
2544
|
"args": {
|
|
2642
2545
|
"id": {
|
|
2643
|
-
"description": "
|
|
2546
|
+
"description": "Trace ID",
|
|
2644
2547
|
"name": "id",
|
|
2645
2548
|
"required": true
|
|
2646
2549
|
}
|
|
2647
2550
|
},
|
|
2648
|
-
"description": "Get a specific
|
|
2551
|
+
"description": "Get a specific trace",
|
|
2649
2552
|
"flags": {
|
|
2650
2553
|
"api-key": {
|
|
2651
2554
|
"description": "API key (env: RESPAN_API_KEY)",
|
|
@@ -2684,7 +2587,7 @@
|
|
|
2684
2587
|
},
|
|
2685
2588
|
"hasDynamicHelp": false,
|
|
2686
2589
|
"hiddenAliases": [],
|
|
2687
|
-
"id": "
|
|
2590
|
+
"id": "traces:get",
|
|
2688
2591
|
"pluginAlias": "@respan/cli",
|
|
2689
2592
|
"pluginName": "@respan/cli",
|
|
2690
2593
|
"pluginType": "core",
|
|
@@ -2694,14 +2597,14 @@
|
|
|
2694
2597
|
"relativePath": [
|
|
2695
2598
|
"dist",
|
|
2696
2599
|
"commands",
|
|
2697
|
-
"
|
|
2600
|
+
"traces",
|
|
2698
2601
|
"get.js"
|
|
2699
2602
|
]
|
|
2700
2603
|
},
|
|
2701
|
-
"
|
|
2604
|
+
"traces:list": {
|
|
2702
2605
|
"aliases": [],
|
|
2703
2606
|
"args": {},
|
|
2704
|
-
"description": "List
|
|
2607
|
+
"description": "List and filter traces.\n\nA trace represents a complete workflow execution containing multiple spans.\n\nFILTER SYNTAX: field:operator:value\n\nOPERATORS:\n (empty) Exact match model::gpt-4\n not Not equal status_code:not:200\n gt Greater than cost:gt:0.01\n gte Greater than/equal latency:gte:1.0\n lt Less than cost:lt:0.5\n lte Less than/equal prompt_tokens:lte:100\n contains Contains substring error_message:contains:timeout\n icontains Case-insensitive model:icontains:gpt\n startswith Starts with model:startswith:gpt\n endswith Ends with model:endswith:mini\n in Value in list model:in:gpt-4,gpt-4o\n isnull Is null error_message:isnull:true\n iexact Case-insens. exact status:iexact:success\n\nFILTERABLE FIELDS (traces):\n trace_unique_id, customer_identifier, environment, span_count,\n llm_call_count, error_count, total_cost, total_tokens,\n total_prompt_tokens, total_completion_tokens, duration,\n span_workflow_name, metadata__<key>\n\nEXAMPLES:\n --filter model::gpt-4o --filter cost:gt:0.01\n --filter status_code:not:200\n --filter metadata__env::production\n --filter model:in:gpt-4,gpt-4o",
|
|
2705
2608
|
"flags": {
|
|
2706
2609
|
"api-key": {
|
|
2707
2610
|
"description": "API key (env: RESPAN_API_KEY)",
|
|
@@ -2740,15 +2643,59 @@
|
|
|
2740
2643
|
"limit": {
|
|
2741
2644
|
"description": "Number of results per page",
|
|
2742
2645
|
"name": "limit",
|
|
2743
|
-
"default":
|
|
2646
|
+
"default": 10,
|
|
2647
|
+
"hasDynamicHelp": false,
|
|
2648
|
+
"multiple": false,
|
|
2649
|
+
"type": "option"
|
|
2650
|
+
},
|
|
2651
|
+
"page": {
|
|
2652
|
+
"description": "Page number",
|
|
2653
|
+
"name": "page",
|
|
2654
|
+
"default": 1,
|
|
2655
|
+
"hasDynamicHelp": false,
|
|
2656
|
+
"multiple": false,
|
|
2657
|
+
"type": "option"
|
|
2658
|
+
},
|
|
2659
|
+
"sort-by": {
|
|
2660
|
+
"description": "Sort field (prefix with - for descending)",
|
|
2661
|
+
"name": "sort-by",
|
|
2662
|
+
"default": "-timestamp",
|
|
2663
|
+
"hasDynamicHelp": false,
|
|
2664
|
+
"multiple": false,
|
|
2665
|
+
"type": "option"
|
|
2666
|
+
},
|
|
2667
|
+
"start-time": {
|
|
2668
|
+
"description": "Start time filter (ISO 8601)",
|
|
2669
|
+
"name": "start-time",
|
|
2670
|
+
"hasDynamicHelp": false,
|
|
2671
|
+
"multiple": false,
|
|
2672
|
+
"type": "option"
|
|
2673
|
+
},
|
|
2674
|
+
"end-time": {
|
|
2675
|
+
"description": "End time filter (ISO 8601)",
|
|
2676
|
+
"name": "end-time",
|
|
2677
|
+
"hasDynamicHelp": false,
|
|
2678
|
+
"multiple": false,
|
|
2679
|
+
"type": "option"
|
|
2680
|
+
},
|
|
2681
|
+
"environment": {
|
|
2682
|
+
"description": "Environment filter",
|
|
2683
|
+
"name": "environment",
|
|
2744
2684
|
"hasDynamicHelp": false,
|
|
2745
2685
|
"multiple": false,
|
|
2746
2686
|
"type": "option"
|
|
2687
|
+
},
|
|
2688
|
+
"filter": {
|
|
2689
|
+
"description": "Filter in field:operator:value format (repeatable)",
|
|
2690
|
+
"name": "filter",
|
|
2691
|
+
"hasDynamicHelp": false,
|
|
2692
|
+
"multiple": true,
|
|
2693
|
+
"type": "option"
|
|
2747
2694
|
}
|
|
2748
2695
|
},
|
|
2749
2696
|
"hasDynamicHelp": false,
|
|
2750
2697
|
"hiddenAliases": [],
|
|
2751
|
-
"id": "
|
|
2698
|
+
"id": "traces:list",
|
|
2752
2699
|
"pluginAlias": "@respan/cli",
|
|
2753
2700
|
"pluginName": "@respan/cli",
|
|
2754
2701
|
"pluginType": "core",
|
|
@@ -2758,20 +2705,14 @@
|
|
|
2758
2705
|
"relativePath": [
|
|
2759
2706
|
"dist",
|
|
2760
2707
|
"commands",
|
|
2761
|
-
"
|
|
2708
|
+
"traces",
|
|
2762
2709
|
"list.js"
|
|
2763
2710
|
]
|
|
2764
2711
|
},
|
|
2765
|
-
"
|
|
2712
|
+
"traces:summary": {
|
|
2766
2713
|
"aliases": [],
|
|
2767
|
-
"args": {
|
|
2768
|
-
|
|
2769
|
-
"description": "Prompt ID",
|
|
2770
|
-
"name": "id",
|
|
2771
|
-
"required": true
|
|
2772
|
-
}
|
|
2773
|
-
},
|
|
2774
|
-
"description": "Update a prompt",
|
|
2714
|
+
"args": {},
|
|
2715
|
+
"description": "Get a summary of traces for a time range",
|
|
2775
2716
|
"flags": {
|
|
2776
2717
|
"api-key": {
|
|
2777
2718
|
"description": "API key (env: RESPAN_API_KEY)",
|
|
@@ -2807,16 +2748,18 @@
|
|
|
2807
2748
|
"allowNo": false,
|
|
2808
2749
|
"type": "boolean"
|
|
2809
2750
|
},
|
|
2810
|
-
"
|
|
2811
|
-
"description": "
|
|
2812
|
-
"name": "
|
|
2751
|
+
"start-time": {
|
|
2752
|
+
"description": "Start time (ISO 8601)",
|
|
2753
|
+
"name": "start-time",
|
|
2754
|
+
"required": true,
|
|
2813
2755
|
"hasDynamicHelp": false,
|
|
2814
2756
|
"multiple": false,
|
|
2815
2757
|
"type": "option"
|
|
2816
2758
|
},
|
|
2817
|
-
"
|
|
2818
|
-
"description": "
|
|
2819
|
-
"name": "
|
|
2759
|
+
"end-time": {
|
|
2760
|
+
"description": "End time (ISO 8601)",
|
|
2761
|
+
"name": "end-time",
|
|
2762
|
+
"required": true,
|
|
2820
2763
|
"hasDynamicHelp": false,
|
|
2821
2764
|
"multiple": false,
|
|
2822
2765
|
"type": "option"
|
|
@@ -2824,7 +2767,7 @@
|
|
|
2824
2767
|
},
|
|
2825
2768
|
"hasDynamicHelp": false,
|
|
2826
2769
|
"hiddenAliases": [],
|
|
2827
|
-
"id": "
|
|
2770
|
+
"id": "traces:summary",
|
|
2828
2771
|
"pluginAlias": "@respan/cli",
|
|
2829
2772
|
"pluginName": "@respan/cli",
|
|
2830
2773
|
"pluginType": "core",
|
|
@@ -2834,20 +2777,14 @@
|
|
|
2834
2777
|
"relativePath": [
|
|
2835
2778
|
"dist",
|
|
2836
2779
|
"commands",
|
|
2837
|
-
"
|
|
2838
|
-
"
|
|
2780
|
+
"traces",
|
|
2781
|
+
"summary.js"
|
|
2839
2782
|
]
|
|
2840
2783
|
},
|
|
2841
|
-
"
|
|
2784
|
+
"logs:create": {
|
|
2842
2785
|
"aliases": [],
|
|
2843
|
-
"args": {
|
|
2844
|
-
|
|
2845
|
-
"description": "Prompt ID",
|
|
2846
|
-
"name": "prompt-id",
|
|
2847
|
-
"required": true
|
|
2848
|
-
}
|
|
2849
|
-
},
|
|
2850
|
-
"description": "List versions of a prompt",
|
|
2786
|
+
"args": {},
|
|
2787
|
+
"description": "Create a log span",
|
|
2851
2788
|
"flags": {
|
|
2852
2789
|
"api-key": {
|
|
2853
2790
|
"description": "API key (env: RESPAN_API_KEY)",
|
|
@@ -2882,11 +2819,40 @@
|
|
|
2882
2819
|
"name": "verbose",
|
|
2883
2820
|
"allowNo": false,
|
|
2884
2821
|
"type": "boolean"
|
|
2822
|
+
},
|
|
2823
|
+
"input": {
|
|
2824
|
+
"description": "Input text or JSON",
|
|
2825
|
+
"name": "input",
|
|
2826
|
+
"required": true,
|
|
2827
|
+
"hasDynamicHelp": false,
|
|
2828
|
+
"multiple": false,
|
|
2829
|
+
"type": "option"
|
|
2830
|
+
},
|
|
2831
|
+
"output": {
|
|
2832
|
+
"description": "Output text or JSON",
|
|
2833
|
+
"name": "output",
|
|
2834
|
+
"hasDynamicHelp": false,
|
|
2835
|
+
"multiple": false,
|
|
2836
|
+
"type": "option"
|
|
2837
|
+
},
|
|
2838
|
+
"model": {
|
|
2839
|
+
"description": "Model name",
|
|
2840
|
+
"name": "model",
|
|
2841
|
+
"hasDynamicHelp": false,
|
|
2842
|
+
"multiple": false,
|
|
2843
|
+
"type": "option"
|
|
2844
|
+
},
|
|
2845
|
+
"metadata": {
|
|
2846
|
+
"description": "Metadata as JSON string",
|
|
2847
|
+
"name": "metadata",
|
|
2848
|
+
"hasDynamicHelp": false,
|
|
2849
|
+
"multiple": false,
|
|
2850
|
+
"type": "option"
|
|
2885
2851
|
}
|
|
2886
2852
|
},
|
|
2887
2853
|
"hasDynamicHelp": false,
|
|
2888
2854
|
"hiddenAliases": [],
|
|
2889
|
-
"id": "
|
|
2855
|
+
"id": "logs:create",
|
|
2890
2856
|
"pluginAlias": "@respan/cli",
|
|
2891
2857
|
"pluginName": "@respan/cli",
|
|
2892
2858
|
"pluginType": "core",
|
|
@@ -2896,20 +2862,20 @@
|
|
|
2896
2862
|
"relativePath": [
|
|
2897
2863
|
"dist",
|
|
2898
2864
|
"commands",
|
|
2899
|
-
"
|
|
2900
|
-
"
|
|
2865
|
+
"logs",
|
|
2866
|
+
"create.js"
|
|
2901
2867
|
]
|
|
2902
2868
|
},
|
|
2903
|
-
"
|
|
2869
|
+
"logs:get": {
|
|
2904
2870
|
"aliases": [],
|
|
2905
2871
|
"args": {
|
|
2906
2872
|
"id": {
|
|
2907
|
-
"description": "
|
|
2873
|
+
"description": "Span ID",
|
|
2908
2874
|
"name": "id",
|
|
2909
2875
|
"required": true
|
|
2910
2876
|
}
|
|
2911
2877
|
},
|
|
2912
|
-
"description": "Get a specific
|
|
2878
|
+
"description": "Get a specific log span",
|
|
2913
2879
|
"flags": {
|
|
2914
2880
|
"api-key": {
|
|
2915
2881
|
"description": "API key (env: RESPAN_API_KEY)",
|
|
@@ -2948,7 +2914,7 @@
|
|
|
2948
2914
|
},
|
|
2949
2915
|
"hasDynamicHelp": false,
|
|
2950
2916
|
"hiddenAliases": [],
|
|
2951
|
-
"id": "
|
|
2917
|
+
"id": "logs:get",
|
|
2952
2918
|
"pluginAlias": "@respan/cli",
|
|
2953
2919
|
"pluginName": "@respan/cli",
|
|
2954
2920
|
"pluginType": "core",
|
|
@@ -2958,14 +2924,14 @@
|
|
|
2958
2924
|
"relativePath": [
|
|
2959
2925
|
"dist",
|
|
2960
2926
|
"commands",
|
|
2961
|
-
"
|
|
2927
|
+
"logs",
|
|
2962
2928
|
"get.js"
|
|
2963
2929
|
]
|
|
2964
2930
|
},
|
|
2965
|
-
"
|
|
2931
|
+
"logs:list": {
|
|
2966
2932
|
"aliases": [],
|
|
2967
2933
|
"args": {},
|
|
2968
|
-
"description": "List and filter
|
|
2934
|
+
"description": "List and filter LLM request logs (spans).\n\nSupports pagination, sorting, time range, and server-side filtering.\n\nFILTER SYNTAX: field:operator:value\n\nOPERATORS:\n (empty) Exact match model::gpt-4\n not Not equal status_code:not:200\n gt Greater than cost:gt:0.01\n gte Greater than/equal latency:gte:1.0\n lt Less than cost:lt:0.5\n lte Less than/equal prompt_tokens:lte:100\n contains Contains substring error_message:contains:timeout\n icontains Case-insensitive model:icontains:gpt\n startswith Starts with model:startswith:gpt\n endswith Ends with model:endswith:mini\n in Value in list model:in:gpt-4,gpt-4o\n isnull Is null error_message:isnull:true\n iexact Case-insens. exact status:iexact:success\n\nFILTERABLE FIELDS (logs):\n model, status_code, status, cost, latency, prompt_tokens,\n completion_tokens, customer_identifier, custom_identifier,\n thread_identifier, trace_unique_id, span_name, span_workflow_name,\n environment, log_type, error_message, failed, provider_id,\n deployment_name, prompt_name, prompt_id, unique_id, stream,\n temperature, max_tokens, tokens_per_second, time_to_first_token,\n total_request_tokens, metadata__<key>, scores__<evaluator_id>\n\nEXAMPLES:\n --filter model::gpt-4o --filter cost:gt:0.01\n --filter status_code:not:200\n --filter metadata__env::production\n --filter model:in:gpt-4,gpt-4o",
|
|
2969
2935
|
"flags": {
|
|
2970
2936
|
"api-key": {
|
|
2971
2937
|
"description": "API key (env: RESPAN_API_KEY)",
|
|
@@ -3002,9 +2968,9 @@
|
|
|
3002
2968
|
"type": "boolean"
|
|
3003
2969
|
},
|
|
3004
2970
|
"limit": {
|
|
3005
|
-
"description": "Number of results per page",
|
|
2971
|
+
"description": "Number of results per page (max 1000)",
|
|
3006
2972
|
"name": "limit",
|
|
3007
|
-
"default":
|
|
2973
|
+
"default": 50,
|
|
3008
2974
|
"hasDynamicHelp": false,
|
|
3009
2975
|
"multiple": false,
|
|
3010
2976
|
"type": "option"
|
|
@@ -3018,9 +2984,8 @@
|
|
|
3018
2984
|
"type": "option"
|
|
3019
2985
|
},
|
|
3020
2986
|
"sort-by": {
|
|
3021
|
-
"description": "Sort field (prefix with - for descending)",
|
|
2987
|
+
"description": "Sort field (prefix with - for descending, e.g. -cost, -latency)",
|
|
3022
2988
|
"name": "sort-by",
|
|
3023
|
-
"default": "-timestamp",
|
|
3024
2989
|
"hasDynamicHelp": false,
|
|
3025
2990
|
"multiple": false,
|
|
3026
2991
|
"type": "option"
|
|
@@ -3039,24 +3004,38 @@
|
|
|
3039
3004
|
"multiple": false,
|
|
3040
3005
|
"type": "option"
|
|
3041
3006
|
},
|
|
3042
|
-
"environment": {
|
|
3043
|
-
"description": "Environment filter",
|
|
3044
|
-
"name": "environment",
|
|
3045
|
-
"hasDynamicHelp": false,
|
|
3046
|
-
"multiple": false,
|
|
3047
|
-
"type": "option"
|
|
3048
|
-
},
|
|
3049
3007
|
"filter": {
|
|
3050
3008
|
"description": "Filter in field:operator:value format (repeatable)",
|
|
3051
3009
|
"name": "filter",
|
|
3052
3010
|
"hasDynamicHelp": false,
|
|
3053
3011
|
"multiple": true,
|
|
3054
3012
|
"type": "option"
|
|
3013
|
+
},
|
|
3014
|
+
"all-envs": {
|
|
3015
|
+
"description": "Include all environments (true/false)",
|
|
3016
|
+
"name": "all-envs",
|
|
3017
|
+
"hasDynamicHelp": false,
|
|
3018
|
+
"multiple": false,
|
|
3019
|
+
"type": "option"
|
|
3020
|
+
},
|
|
3021
|
+
"is-test": {
|
|
3022
|
+
"description": "Filter by test (true) or production (false) environment",
|
|
3023
|
+
"name": "is-test",
|
|
3024
|
+
"hasDynamicHelp": false,
|
|
3025
|
+
"multiple": false,
|
|
3026
|
+
"type": "option"
|
|
3027
|
+
},
|
|
3028
|
+
"include-fields": {
|
|
3029
|
+
"description": "Comma-separated fields to include in response",
|
|
3030
|
+
"name": "include-fields",
|
|
3031
|
+
"hasDynamicHelp": false,
|
|
3032
|
+
"multiple": false,
|
|
3033
|
+
"type": "option"
|
|
3055
3034
|
}
|
|
3056
3035
|
},
|
|
3057
3036
|
"hasDynamicHelp": false,
|
|
3058
3037
|
"hiddenAliases": [],
|
|
3059
|
-
"id": "
|
|
3038
|
+
"id": "logs:list",
|
|
3060
3039
|
"pluginAlias": "@respan/cli",
|
|
3061
3040
|
"pluginName": "@respan/cli",
|
|
3062
3041
|
"pluginType": "core",
|
|
@@ -3066,14 +3045,14 @@
|
|
|
3066
3045
|
"relativePath": [
|
|
3067
3046
|
"dist",
|
|
3068
3047
|
"commands",
|
|
3069
|
-
"
|
|
3048
|
+
"logs",
|
|
3070
3049
|
"list.js"
|
|
3071
3050
|
]
|
|
3072
3051
|
},
|
|
3073
|
-
"
|
|
3052
|
+
"logs:summary": {
|
|
3074
3053
|
"aliases": [],
|
|
3075
3054
|
"args": {},
|
|
3076
|
-
"description": "Get
|
|
3055
|
+
"description": "Get aggregated summary statistics for log spans in a time range.\n\nReturns total cost, total tokens, request count, and score summaries.\n\nFILTER SYNTAX: field:operator:value\n\nOPERATORS:\n (empty) Exact match model::gpt-4\n not Not equal status_code:not:200\n gt Greater than cost:gt:0.01\n gte Greater than/equal latency:gte:1.0\n lt Less than cost:lt:0.5\n lte Less than/equal prompt_tokens:lte:100\n contains Contains substring error_message:contains:timeout\n icontains Case-insensitive model:icontains:gpt\n startswith Starts with model:startswith:gpt\n endswith Ends with model:endswith:mini\n in Value in list model:in:gpt-4,gpt-4o\n isnull Is null error_message:isnull:true\n iexact Case-insens. exact status:iexact:success\n\nFILTERABLE FIELDS (logs):\n model, status_code, status, cost, latency, prompt_tokens,\n completion_tokens, customer_identifier, custom_identifier,\n thread_identifier, trace_unique_id, span_name, span_workflow_name,\n environment, log_type, error_message, failed, provider_id,\n deployment_name, prompt_name, prompt_id, unique_id, stream,\n temperature, max_tokens, tokens_per_second, time_to_first_token,\n total_request_tokens, metadata__<key>, scores__<evaluator_id>\n\nEXAMPLES:\n --filter model::gpt-4o --filter cost:gt:0.01\n --filter status_code:not:200\n --filter metadata__env::production\n --filter model:in:gpt-4,gpt-4o",
|
|
3077
3056
|
"flags": {
|
|
3078
3057
|
"api-key": {
|
|
3079
3058
|
"description": "API key (env: RESPAN_API_KEY)",
|
|
@@ -3124,11 +3103,32 @@
|
|
|
3124
3103
|
"hasDynamicHelp": false,
|
|
3125
3104
|
"multiple": false,
|
|
3126
3105
|
"type": "option"
|
|
3106
|
+
},
|
|
3107
|
+
"filter": {
|
|
3108
|
+
"description": "Filter in field:operator:value format (repeatable)",
|
|
3109
|
+
"name": "filter",
|
|
3110
|
+
"hasDynamicHelp": false,
|
|
3111
|
+
"multiple": true,
|
|
3112
|
+
"type": "option"
|
|
3113
|
+
},
|
|
3114
|
+
"all-envs": {
|
|
3115
|
+
"description": "Include all environments (true/false)",
|
|
3116
|
+
"name": "all-envs",
|
|
3117
|
+
"hasDynamicHelp": false,
|
|
3118
|
+
"multiple": false,
|
|
3119
|
+
"type": "option"
|
|
3120
|
+
},
|
|
3121
|
+
"is-test": {
|
|
3122
|
+
"description": "Filter by test (true) or production (false) environment",
|
|
3123
|
+
"name": "is-test",
|
|
3124
|
+
"hasDynamicHelp": false,
|
|
3125
|
+
"multiple": false,
|
|
3126
|
+
"type": "option"
|
|
3127
3127
|
}
|
|
3128
3128
|
},
|
|
3129
3129
|
"hasDynamicHelp": false,
|
|
3130
3130
|
"hiddenAliases": [],
|
|
3131
|
-
"id": "
|
|
3131
|
+
"id": "logs:summary",
|
|
3132
3132
|
"pluginAlias": "@respan/cli",
|
|
3133
3133
|
"pluginName": "@respan/cli",
|
|
3134
3134
|
"pluginType": "core",
|
|
@@ -3138,7 +3138,7 @@
|
|
|
3138
3138
|
"relativePath": [
|
|
3139
3139
|
"dist",
|
|
3140
3140
|
"commands",
|
|
3141
|
-
"
|
|
3141
|
+
"logs",
|
|
3142
3142
|
"summary.js"
|
|
3143
3143
|
]
|
|
3144
3144
|
},
|
|
@@ -3459,5 +3459,5 @@
|
|
|
3459
3459
|
]
|
|
3460
3460
|
}
|
|
3461
3461
|
},
|
|
3462
|
-
"version": "0.
|
|
3462
|
+
"version": "0.6.1"
|
|
3463
3463
|
}
|