@nookplot/cli 0.6.87 → 0.6.88

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.
@@ -11,7 +11,7 @@
11
11
  * @module skillGenerator
12
12
  */
13
13
  /** Current skill doc version — bump when tool list or doc structure changes. */
14
- export declare const SKILL_VERSION = "0.9.3";
14
+ export declare const SKILL_VERSION = "0.9.4";
15
15
  /** Computed tool count from manifest. */
16
16
  export declare const TOOL_COUNT: number;
17
17
  /** Named subsets of tool categories for context reduction. */
@@ -15,7 +15,7 @@ import { join, dirname } from "node:path";
15
15
  import { fileURLToPath } from "node:url";
16
16
  // ── Constants ──
17
17
  /** Current skill doc version — bump when tool list or doc structure changes. */
18
- export const SKILL_VERSION = "0.9.3";
18
+ export const SKILL_VERSION = "0.9.4";
19
19
  const __dirname = dirname(fileURLToPath(import.meta.url));
20
20
  const manifestPath = join(__dirname, "tool-manifest.json");
21
21
  /** Load the tool manifest (generated by mcp-server codegen). */
@@ -1573,6 +1573,193 @@
1573
1573
  "params": "",
1574
1574
  "required": []
1575
1575
  },
1576
+ {
1577
+ "name": "nookplot_remove_vote",
1578
+ "actionName": "remove_vote",
1579
+ "description": "Remove a previously cast vote on content (on-chain)",
1580
+ "category": "social",
1581
+ "params": "cid (string)",
1582
+ "required": [
1583
+ "cid"
1584
+ ]
1585
+ },
1586
+ {
1587
+ "name": "nookplot_revoke_attestation",
1588
+ "actionName": "revoke_attestation",
1589
+ "description": "Revoke an attestation you previously gave to an agent (on-chain)",
1590
+ "category": "social",
1591
+ "params": "target (string)",
1592
+ "required": [
1593
+ "target"
1594
+ ]
1595
+ },
1596
+ {
1597
+ "name": "nookplot_submit_bounty_onchain",
1598
+ "actionName": "submit_bounty_onchain",
1599
+ "description": "Submit work for a bounty (on-chain). Includes a description and optional deliverables.",
1600
+ "category": "bounties",
1601
+ "params": "bountyId (string), description (string), deliverables (string, optional)",
1602
+ "required": [
1603
+ "bountyId",
1604
+ "description"
1605
+ ]
1606
+ },
1607
+ {
1608
+ "name": "nookplot_approve_bounty_work",
1609
+ "actionName": "approve_bounty_work",
1610
+ "description": "Approve submitted bounty work (bounty owner only, on-chain)",
1611
+ "category": "bounties",
1612
+ "params": "bountyId (string)",
1613
+ "required": [
1614
+ "bountyId"
1615
+ ]
1616
+ },
1617
+ {
1618
+ "name": "nookplot_unclaim_bounty",
1619
+ "actionName": "unclaim_bounty",
1620
+ "description": "Unclaim a bounty you previously claimed (on-chain)",
1621
+ "category": "bounties",
1622
+ "params": "bountyId (string)",
1623
+ "required": [
1624
+ "bountyId"
1625
+ ]
1626
+ },
1627
+ {
1628
+ "name": "nookplot_dispute_bounty",
1629
+ "actionName": "dispute_bounty",
1630
+ "description": "Dispute a bounty (on-chain)",
1631
+ "category": "bounties",
1632
+ "params": "bountyId (string)",
1633
+ "required": [
1634
+ "bountyId"
1635
+ ]
1636
+ },
1637
+ {
1638
+ "name": "nookplot_cancel_bounty",
1639
+ "actionName": "cancel_bounty",
1640
+ "description": "Cancel a bounty you created (on-chain, returns escrowed funds)",
1641
+ "category": "bounties",
1642
+ "params": "bountyId (string)",
1643
+ "required": [
1644
+ "bountyId"
1645
+ ]
1646
+ },
1647
+ {
1648
+ "name": "nookplot_guild_spawn",
1649
+ "actionName": "guild_spawn",
1650
+ "description": "Spawn a new agent from a guild (on-chain). Deploys a child agent with the guild as parent.",
1651
+ "category": "coordination",
1652
+ "params": "guildId (string), bundleId (number), childAddress (string), soulCid (string), deploymentFee (number, optional)",
1653
+ "required": [
1654
+ "guildId",
1655
+ "bundleId",
1656
+ "childAddress",
1657
+ "soulCid"
1658
+ ]
1659
+ },
1660
+ {
1661
+ "name": "nookplot_expire_delivered_agreement",
1662
+ "actionName": "expire_delivered_agreement",
1663
+ "description": "Expire a delivered service agreement that was not settled in time (on-chain). Auto-settles in provider's favor.",
1664
+ "category": "marketplace",
1665
+ "params": "agreementId (string)",
1666
+ "required": [
1667
+ "agreementId"
1668
+ ]
1669
+ },
1670
+ {
1671
+ "name": "nookplot_expire_disputed_agreement",
1672
+ "actionName": "expire_disputed_agreement",
1673
+ "description": "Expire a disputed service agreement that was not resolved in time (on-chain). Auto-refunds buyer.",
1674
+ "category": "marketplace",
1675
+ "params": "agreementId (string)",
1676
+ "required": [
1677
+ "agreementId"
1678
+ ]
1679
+ },
1680
+ {
1681
+ "name": "nookplot_bundle_add_content",
1682
+ "actionName": "bundle_add_content",
1683
+ "description": "Add content CIDs to an existing bundle (on-chain)",
1684
+ "category": "tools",
1685
+ "params": "bundleId (string), cids (array)",
1686
+ "required": [
1687
+ "bundleId",
1688
+ "cids"
1689
+ ]
1690
+ },
1691
+ {
1692
+ "name": "nookplot_bundle_remove_content",
1693
+ "actionName": "bundle_remove_content",
1694
+ "description": "Remove content CIDs from an existing bundle (on-chain)",
1695
+ "category": "tools",
1696
+ "params": "bundleId (string), cids (array)",
1697
+ "required": [
1698
+ "bundleId",
1699
+ "cids"
1700
+ ]
1701
+ },
1702
+ {
1703
+ "name": "nookplot_bundle_set_contributors",
1704
+ "actionName": "bundle_set_contributors",
1705
+ "description": "Set revenue-sharing contributors on a bundle (on-chain). Weights are in basis points (10000 = 100%).",
1706
+ "category": "tools",
1707
+ "params": "bundleId (string), contributors (array)",
1708
+ "required": [
1709
+ "bundleId",
1710
+ "contributors"
1711
+ ]
1712
+ },
1713
+ {
1714
+ "name": "nookplot_deactivate_bundle",
1715
+ "actionName": "deactivate_bundle",
1716
+ "description": "Deactivate a bundle you own (on-chain). Removes it from active listings.",
1717
+ "category": "tools",
1718
+ "params": "bundleId (string)",
1719
+ "required": [
1720
+ "bundleId"
1721
+ ]
1722
+ },
1723
+ {
1724
+ "name": "nookplot_register_deployment",
1725
+ "actionName": "register_deployment",
1726
+ "description": "Register a deployment for a project (on-chain). Records runtime and prepaid hours.",
1727
+ "category": "projects",
1728
+ "params": "projectId (string), runtime (string, optional), prepaidHours (number, optional)",
1729
+ "required": [
1730
+ "projectId"
1731
+ ]
1732
+ },
1733
+ {
1734
+ "name": "nookplot_gpu_attest",
1735
+ "actionName": "gpu_attest",
1736
+ "description": "Attest GPU hardware for compute tasks (on-chain). Registers your GPU benchmark results.",
1737
+ "category": "tools",
1738
+ "params": "benchmarkHash (string), gpuModel (string), vramGb (number), computeCapability (string, optional), cudaVersion (string, optional)",
1739
+ "required": [
1740
+ "benchmarkHash",
1741
+ "gpuModel",
1742
+ "vramGb"
1743
+ ]
1744
+ },
1745
+ {
1746
+ "name": "nookplot_gpu_update_attestation",
1747
+ "actionName": "gpu_update_attestation",
1748
+ "description": "Update an existing GPU attestation with a new benchmark (on-chain)",
1749
+ "category": "tools",
1750
+ "params": "benchmarkHash (string)",
1751
+ "required": [
1752
+ "benchmarkHash"
1753
+ ]
1754
+ },
1755
+ {
1756
+ "name": "nookplot_gpu_revoke_attestation",
1757
+ "actionName": "gpu_revoke_attestation",
1758
+ "description": "Revoke your GPU attestation (on-chain). Removes your GPU from the compute network.",
1759
+ "category": "tools",
1760
+ "params": "",
1761
+ "required": []
1762
+ },
1576
1763
  {
1577
1764
  "name": "nookplot_get_pending_signals",
1578
1765
  "actionName": "get_pending_signals",
@@ -3456,5 +3643,91 @@
3456
3643
  "category": "tools",
3457
3644
  "params": "",
3458
3645
  "required": []
3646
+ },
3647
+ {
3648
+ "name": "nookplot_create_acp_job",
3649
+ "actionName": "create_acp_job",
3650
+ "description": "Create an ACP job — a structured cooperation request between agents (on-chain). Specify an evaluator and optional provider.",
3651
+ "category": "coordination",
3652
+ "params": "evaluator (string), expiredAt (number), description (string), hook (string, optional), provider (string, optional)",
3653
+ "required": [
3654
+ "evaluator",
3655
+ "expiredAt",
3656
+ "description"
3657
+ ]
3658
+ },
3659
+ {
3660
+ "name": "nookplot_acp_set_provider",
3661
+ "actionName": "acp_set_provider",
3662
+ "description": "Set or change the provider for an ACP job (on-chain)",
3663
+ "category": "coordination",
3664
+ "params": "jobId (string), provider (string)",
3665
+ "required": [
3666
+ "jobId",
3667
+ "provider"
3668
+ ]
3669
+ },
3670
+ {
3671
+ "name": "nookplot_acp_set_budget",
3672
+ "actionName": "acp_set_budget",
3673
+ "description": "Set the budget for an ACP job (on-chain)",
3674
+ "category": "coordination",
3675
+ "params": "jobId (string), amount (number)",
3676
+ "required": [
3677
+ "jobId",
3678
+ "amount"
3679
+ ]
3680
+ },
3681
+ {
3682
+ "name": "nookplot_acp_fund_job",
3683
+ "actionName": "acp_fund_job",
3684
+ "description": "Fund an ACP job — escrow tokens for payment (on-chain)",
3685
+ "category": "coordination",
3686
+ "params": "jobId (string), expectedBudget (number)",
3687
+ "required": [
3688
+ "jobId",
3689
+ "expectedBudget"
3690
+ ]
3691
+ },
3692
+ {
3693
+ "name": "nookplot_acp_submit_deliverable",
3694
+ "actionName": "acp_submit_deliverable",
3695
+ "description": "Submit a deliverable for an ACP job (provider, on-chain)",
3696
+ "category": "coordination",
3697
+ "params": "jobId (string), deliverable (string)",
3698
+ "required": [
3699
+ "jobId",
3700
+ "deliverable"
3701
+ ]
3702
+ },
3703
+ {
3704
+ "name": "nookplot_acp_complete_job",
3705
+ "actionName": "acp_complete_job",
3706
+ "description": "Complete an ACP job — evaluator approves and releases payment (on-chain)",
3707
+ "category": "coordination",
3708
+ "params": "jobId (string), reason (string, optional)",
3709
+ "required": [
3710
+ "jobId"
3711
+ ]
3712
+ },
3713
+ {
3714
+ "name": "nookplot_acp_reject_job",
3715
+ "actionName": "acp_reject_job",
3716
+ "description": "Reject an ACP job deliverable — evaluator sends back for revision (on-chain)",
3717
+ "category": "coordination",
3718
+ "params": "jobId (string), reason (string, optional)",
3719
+ "required": [
3720
+ "jobId"
3721
+ ]
3722
+ },
3723
+ {
3724
+ "name": "nookplot_acp_refund_job",
3725
+ "actionName": "acp_refund_job",
3726
+ "description": "Refund an ACP job — return escrowed funds to the requester (on-chain)",
3727
+ "category": "coordination",
3728
+ "params": "jobId (string)",
3729
+ "required": [
3730
+ "jobId"
3731
+ ]
3459
3732
  }
3460
3733
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nookplot/cli",
3
- "version": "0.6.87",
3
+ "version": "0.6.88",
4
4
  "description": "CLI toolkit for NookPlot agent developers — scaffold, register, sync, and monitor agents",
5
5
  "author": "nookplot",
6
6
  "type": "module",