@f5-sales-demo/xcsh 20.9.0 → 20.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@f5-sales-demo/xcsh",
4
- "version": "20.9.0",
4
+ "version": "20.10.0",
5
5
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
6
6
  "homepage": "https://github.com/f5-sales-demo/xcsh",
7
7
  "author": "Can Boluk",
@@ -62,13 +62,13 @@
62
62
  "dependencies": {
63
63
  "@agentclientprotocol/sdk": "1.3.0",
64
64
  "@mozilla/readability": "^0.6",
65
- "@f5-sales-demo/xcsh-stats": "20.9.0",
66
- "@f5-sales-demo/pi-agent-core": "20.9.0",
67
- "@f5-sales-demo/pi-ai": "20.9.0",
68
- "@f5-sales-demo/pi-natives": "20.9.0",
69
- "@f5-sales-demo/pi-resource-management": "20.9.0",
70
- "@f5-sales-demo/pi-tui": "20.9.0",
71
- "@f5-sales-demo/pi-utils": "20.9.0",
65
+ "@f5-sales-demo/xcsh-stats": "20.10.0",
66
+ "@f5-sales-demo/pi-agent-core": "20.10.0",
67
+ "@f5-sales-demo/pi-ai": "20.10.0",
68
+ "@f5-sales-demo/pi-natives": "20.10.0",
69
+ "@f5-sales-demo/pi-resource-management": "20.10.0",
70
+ "@f5-sales-demo/pi-tui": "20.10.0",
71
+ "@f5-sales-demo/pi-utils": "20.10.0",
72
72
  "@sinclair/typebox": "^0.34",
73
73
  "@xterm/headless": "^6.0",
74
74
  "ajv": "^8.20",
@@ -17,17 +17,17 @@ export interface BuildInfo {
17
17
  }
18
18
 
19
19
  export const BUILD_INFO: BuildInfo = {
20
- "version": "20.9.0",
21
- "commit": "c120e6e1b6530d1ba068a89905dcbd1df72d7b2c",
22
- "shortCommit": "c120e6e",
20
+ "version": "20.10.0",
21
+ "commit": "f6a647696fb10fb3e6ecccb35c753821f015741e",
22
+ "shortCommit": "f6a6476",
23
23
  "branch": "main",
24
- "tag": "v20.9.0",
25
- "commitDate": "2026-08-10T17:23:39Z",
26
- "buildDate": "2026-08-10T17:52:55.552Z",
24
+ "tag": "v20.10.0",
25
+ "commitDate": "2026-08-10T19:10:53Z",
26
+ "buildDate": "2026-08-10T19:39:51.013Z",
27
27
  "dirty": true,
28
28
  "prNumber": "",
29
29
  "repoUrl": "https://github.com/f5-sales-demo/xcsh",
30
30
  "repoSlug": "f5-sales-demo/xcsh",
31
- "commitUrl": "https://github.com/f5-sales-demo/xcsh/commit/c120e6e1b6530d1ba068a89905dcbd1df72d7b2c",
32
- "releaseUrl": "https://github.com/f5-sales-demo/xcsh/releases/tag/v20.9.0"
31
+ "commitUrl": "https://github.com/f5-sales-demo/xcsh/commit/f6a647696fb10fb3e6ecccb35c753821f015741e",
32
+ "releaseUrl": "https://github.com/f5-sales-demo/xcsh/releases/tag/v20.10.0"
33
33
  };
@@ -147,21 +147,6 @@ export const TERRAFORM_INDEX: TerraformIndex = {
147
147
  "workload_flavor",
148
148
  ],
149
149
  },
150
- {
151
- name: "DNS",
152
- slug: "dns",
153
- description: "DNS domains, zones, compliance checks, and DNS proxy configuration",
154
- resource_count: 7,
155
- resources: [
156
- "dns_compliance_checks",
157
- "dns_domain",
158
- "dns_lb_health_check",
159
- "dns_lb_pool",
160
- "dns_load_balancer",
161
- "dns_proxy",
162
- "dns_zone",
163
- ],
164
- },
165
150
  {
166
151
  name: "Uncategorized",
167
152
  slug: "uncategorized",
@@ -177,6 +162,20 @@ export const TERRAFORM_INDEX: TerraformIndex = {
177
162
  "registration_approval",
178
163
  ],
179
164
  },
165
+ {
166
+ name: "DNS",
167
+ slug: "dns",
168
+ description: "DNS domains, zones, compliance checks, and DNS proxy configuration",
169
+ resource_count: 6,
170
+ resources: [
171
+ "dns_compliance_checks",
172
+ "dns_lb_health_check",
173
+ "dns_lb_pool",
174
+ "dns_load_balancer",
175
+ "dns_proxy",
176
+ "dns_zone",
177
+ ],
178
+ },
180
179
  {
181
180
  name: "API Security",
182
181
  slug: "api-security",
@@ -1523,201 +1522,187 @@ export const TERRAFORM_INDEX: TerraformIndex = {
1523
1522
  import_syntax: "terraform import xcsh_workload_flavor.example namespace/name",
1524
1523
  },
1525
1524
  {
1526
- name: "dns_compliance_checks",
1527
- category: "dns",
1528
- description:
1529
- "DNS Compliance Checks Specification in a given namespace. If one already exists it will give an error",
1525
+ name: "application_profiles",
1526
+ category: "uncategorized",
1527
+ description: "Application Profiles in a given namespace. If one already exists it will give an error",
1530
1528
  required: ["name", "namespace"],
1531
1529
  minimal_config: {
1532
1530
  format: "terraform",
1533
- source: "_llms-txt/resources/dns_compliance_checks.txt#minimal-valid-config",
1534
- },
1535
- dependencies: {
1536
- requires: [],
1537
- },
1538
- import_syntax: "terraform import xcsh_dns_compliance_checks.example namespace/name",
1539
- },
1540
- {
1541
- name: "dns_domain",
1542
- category: "dns",
1543
- description: "DNS Domain in a given namespace. If one already exist it will give a error",
1544
- required: ["name", "dnssec_mode"],
1545
- minimal_config: {
1546
- format: "terraform",
1547
- source: "_llms-txt/resources/dns_domain.txt#minimal-valid-config",
1531
+ source: "_llms-txt/resources/application_profiles.txt#minimal-valid-config",
1548
1532
  },
1549
1533
  dependencies: {
1550
1534
  requires: [],
1551
1535
  },
1552
- import_syntax: "terraform import xcsh_dns_domain.example namespace/name",
1536
+ import_syntax: "terraform import xcsh_application_profiles.example namespace/name",
1553
1537
  },
1554
1538
  {
1555
- name: "dns_lb_health_check",
1556
- category: "dns",
1557
- description: "DNS Load Balancer Health Check in a given namespace. If one already exist it will give a error",
1558
- required: ["name"],
1539
+ name: "authorization_server",
1540
+ category: "uncategorized",
1541
+ description: "Authorization_server creates a new object in the storage backend for metadata.namespace",
1542
+ required: ["name", "namespace", "jwks_uri"],
1559
1543
  minimal_config: {
1560
1544
  format: "terraform",
1561
- source: "_llms-txt/resources/dns_lb_health_check.txt#minimal-valid-config",
1545
+ source: "_llms-txt/resources/authorization_server.txt#minimal-valid-config",
1562
1546
  },
1563
1547
  dependencies: {
1564
1548
  requires: [],
1565
1549
  },
1566
- import_syntax: "terraform import xcsh_dns_lb_health_check.example namespace/name",
1550
+ import_syntax: "terraform import xcsh_authorization_server.example namespace/name",
1567
1551
  },
1568
1552
  {
1569
- name: "dns_lb_pool",
1570
- category: "dns",
1571
- description: "DNS Load Balancer Pool in a given namespace. If one already exist it will give a error",
1572
- required: ["name", "load_balancing_mode"],
1553
+ name: "bot_infrastructure",
1554
+ category: "uncategorized",
1555
+ description: "Bot Infrastructure",
1556
+ required: ["name", "namespace", "traffic_type"],
1573
1557
  minimal_config: {
1574
1558
  format: "terraform",
1575
- source: "_llms-txt/resources/dns_lb_pool.txt#minimal-valid-config",
1559
+ source: "_llms-txt/resources/bot_infrastructure.txt#minimal-valid-config",
1576
1560
  },
1577
1561
  dependencies: {
1578
1562
  requires: [],
1579
1563
  },
1580
- import_syntax: "terraform import xcsh_dns_lb_pool.example namespace/name",
1564
+ import_syntax: "terraform import xcsh_bot_infrastructure.example namespace/name",
1581
1565
  },
1582
1566
  {
1583
- name: "dns_load_balancer",
1584
- category: "dns",
1585
- description: "DNS Load Balancer in a given namespace. If one already exist it will give a error",
1586
- required: ["name"],
1567
+ name: "mitigated_domain",
1568
+ category: "uncategorized",
1569
+ description: "Mitigated Domain",
1570
+ required: ["name", "namespace", "mitigated_domain"],
1587
1571
  minimal_config: {
1588
1572
  format: "terraform",
1589
- source: "_llms-txt/resources/dns_load_balancer.txt#minimal-valid-config",
1573
+ source: "_llms-txt/resources/mitigated_domain.txt#minimal-valid-config",
1590
1574
  },
1591
1575
  dependencies: {
1592
1576
  requires: [],
1593
1577
  },
1594
- import_syntax: "terraform import xcsh_dns_load_balancer.example namespace/name",
1578
+ import_syntax: "terraform import xcsh_mitigated_domain.example namespace/name",
1595
1579
  },
1596
1580
  {
1597
- name: "dns_proxy",
1598
- category: "dns",
1599
- description: "DNS Proxy in a given namespace. If one already exists it will give an error",
1600
- required: ["name", "transport_type"],
1581
+ name: "protected_application",
1582
+ category: "uncategorized",
1583
+ description: "Applications protected by Bot Defense",
1584
+ required: ["name", "namespace", "region"],
1601
1585
  minimal_config: {
1602
1586
  format: "terraform",
1603
- source: "_llms-txt/resources/dns_proxy.txt#minimal-valid-config",
1587
+ source: "_llms-txt/resources/protected_application.txt#minimal-valid-config",
1604
1588
  },
1605
1589
  dependencies: {
1606
1590
  requires: [],
1607
1591
  },
1608
- import_syntax: "terraform import xcsh_dns_proxy.example namespace/name",
1592
+ import_syntax: "terraform import xcsh_protected_application.example namespace/name",
1609
1593
  },
1610
1594
  {
1611
- name: "dns_zone",
1612
- category: "dns",
1613
- description: "DNS Zone in a given namespace. If one already exist it will give a error",
1614
- required: ["name"],
1595
+ name: "protected_domain",
1596
+ category: "uncategorized",
1597
+ description: "Domain to protect",
1598
+ required: ["name", "namespace", "protected_domain"],
1615
1599
  minimal_config: {
1616
1600
  format: "terraform",
1617
- source: "_llms-txt/resources/dns_zone.txt#minimal-valid-config",
1601
+ source: "_llms-txt/resources/protected_domain.txt#minimal-valid-config",
1618
1602
  },
1619
1603
  dependencies: {
1620
1604
  requires: [],
1621
1605
  },
1622
- import_syntax: "terraform import xcsh_dns_zone.example namespace/name",
1606
+ import_syntax: "terraform import xcsh_protected_domain.example namespace/name",
1623
1607
  },
1624
1608
  {
1625
- name: "application_profiles",
1609
+ name: "registration_approval",
1626
1610
  category: "uncategorized",
1627
- description: "Application Profiles in a given namespace. If one already exists it will give an error",
1611
+ description: "Request for admission approval. configuration",
1628
1612
  required: ["name", "namespace"],
1629
1613
  minimal_config: {
1630
1614
  format: "terraform",
1631
- source: "_llms-txt/resources/application_profiles.txt#minimal-valid-config",
1615
+ source: "_llms-txt/resources/registration_approval.txt#minimal-valid-config",
1632
1616
  },
1633
1617
  dependencies: {
1634
1618
  requires: [],
1635
1619
  },
1636
- import_syntax: "terraform import xcsh_application_profiles.example namespace/name",
1620
+ import_syntax: "terraform import xcsh_registration_approval.example namespace/name",
1637
1621
  },
1638
1622
  {
1639
- name: "authorization_server",
1640
- category: "uncategorized",
1641
- description: "Authorization_server creates a new object in the storage backend for metadata.namespace",
1642
- required: ["name", "namespace", "jwks_uri"],
1623
+ name: "dns_compliance_checks",
1624
+ category: "dns",
1625
+ description:
1626
+ "DNS Compliance Checks Specification in a given namespace. If one already exists it will give an error",
1627
+ required: ["name", "namespace"],
1643
1628
  minimal_config: {
1644
1629
  format: "terraform",
1645
- source: "_llms-txt/resources/authorization_server.txt#minimal-valid-config",
1630
+ source: "_llms-txt/resources/dns_compliance_checks.txt#minimal-valid-config",
1646
1631
  },
1647
1632
  dependencies: {
1648
1633
  requires: [],
1649
1634
  },
1650
- import_syntax: "terraform import xcsh_authorization_server.example namespace/name",
1635
+ import_syntax: "terraform import xcsh_dns_compliance_checks.example namespace/name",
1651
1636
  },
1652
1637
  {
1653
- name: "bot_infrastructure",
1654
- category: "uncategorized",
1655
- description: "Bot Infrastructure",
1656
- required: ["name", "namespace", "traffic_type"],
1638
+ name: "dns_lb_health_check",
1639
+ category: "dns",
1640
+ description: "DNS Load Balancer Health Check in a given namespace. If one already exist it will give a error",
1641
+ required: ["name"],
1657
1642
  minimal_config: {
1658
1643
  format: "terraform",
1659
- source: "_llms-txt/resources/bot_infrastructure.txt#minimal-valid-config",
1644
+ source: "_llms-txt/resources/dns_lb_health_check.txt#minimal-valid-config",
1660
1645
  },
1661
1646
  dependencies: {
1662
1647
  requires: [],
1663
1648
  },
1664
- import_syntax: "terraform import xcsh_bot_infrastructure.example namespace/name",
1649
+ import_syntax: "terraform import xcsh_dns_lb_health_check.example namespace/name",
1665
1650
  },
1666
1651
  {
1667
- name: "mitigated_domain",
1668
- category: "uncategorized",
1669
- description: "Mitigated Domain",
1670
- required: ["name", "namespace", "mitigated_domain"],
1652
+ name: "dns_lb_pool",
1653
+ category: "dns",
1654
+ description: "DNS Load Balancer Pool in a given namespace. If one already exist it will give a error",
1655
+ required: ["name", "load_balancing_mode"],
1671
1656
  minimal_config: {
1672
1657
  format: "terraform",
1673
- source: "_llms-txt/resources/mitigated_domain.txt#minimal-valid-config",
1658
+ source: "_llms-txt/resources/dns_lb_pool.txt#minimal-valid-config",
1674
1659
  },
1675
1660
  dependencies: {
1676
1661
  requires: [],
1677
1662
  },
1678
- import_syntax: "terraform import xcsh_mitigated_domain.example namespace/name",
1663
+ import_syntax: "terraform import xcsh_dns_lb_pool.example namespace/name",
1679
1664
  },
1680
1665
  {
1681
- name: "protected_application",
1682
- category: "uncategorized",
1683
- description: "Applications protected by Bot Defense",
1684
- required: ["name", "namespace", "region"],
1666
+ name: "dns_load_balancer",
1667
+ category: "dns",
1668
+ description: "DNS Load Balancer in a given namespace. If one already exist it will give a error",
1669
+ required: ["name"],
1685
1670
  minimal_config: {
1686
1671
  format: "terraform",
1687
- source: "_llms-txt/resources/protected_application.txt#minimal-valid-config",
1672
+ source: "_llms-txt/resources/dns_load_balancer.txt#minimal-valid-config",
1688
1673
  },
1689
1674
  dependencies: {
1690
1675
  requires: [],
1691
1676
  },
1692
- import_syntax: "terraform import xcsh_protected_application.example namespace/name",
1677
+ import_syntax: "terraform import xcsh_dns_load_balancer.example namespace/name",
1693
1678
  },
1694
1679
  {
1695
- name: "protected_domain",
1696
- category: "uncategorized",
1697
- description: "Domain to protect",
1698
- required: ["name", "namespace", "protected_domain"],
1680
+ name: "dns_proxy",
1681
+ category: "dns",
1682
+ description: "DNS Proxy in a given namespace. If one already exists it will give an error",
1683
+ required: ["name", "transport_type"],
1699
1684
  minimal_config: {
1700
1685
  format: "terraform",
1701
- source: "_llms-txt/resources/protected_domain.txt#minimal-valid-config",
1686
+ source: "_llms-txt/resources/dns_proxy.txt#minimal-valid-config",
1702
1687
  },
1703
1688
  dependencies: {
1704
1689
  requires: [],
1705
1690
  },
1706
- import_syntax: "terraform import xcsh_protected_domain.example namespace/name",
1691
+ import_syntax: "terraform import xcsh_dns_proxy.example namespace/name",
1707
1692
  },
1708
1693
  {
1709
- name: "registration_approval",
1710
- category: "uncategorized",
1711
- description: "Request for admission approval. configuration",
1712
- required: ["name", "namespace"],
1694
+ name: "dns_zone",
1695
+ category: "dns",
1696
+ description: "DNS Zone in a given namespace. If one already exist it will give a error",
1697
+ required: ["name"],
1713
1698
  minimal_config: {
1714
1699
  format: "terraform",
1715
- source: "_llms-txt/resources/registration_approval.txt#minimal-valid-config",
1700
+ source: "_llms-txt/resources/dns_zone.txt#minimal-valid-config",
1716
1701
  },
1717
1702
  dependencies: {
1718
1703
  requires: [],
1719
1704
  },
1720
- import_syntax: "terraform import xcsh_registration_approval.example namespace/name",
1705
+ import_syntax: "terraform import xcsh_dns_zone.example namespace/name",
1721
1706
  },
1722
1707
  {
1723
1708
  name: "api_crawler",