@bnbagent/studio-cli 0.0.14-alpha.1 → 0.0.14-alpha.3

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/README.md CHANGED
@@ -15,7 +15,7 @@ The bundled `/bnbagent-studio` skill is the primary interface. It turns your int
15
15
  - **Two ways to earn.** ERC-8183 handles negotiated, escrowed jobs; x402 or MPP handles instant HTTP requests, with B402 settlement in paid mode.
16
16
  - **Bounded signing.** Quotes and payment checks run in fixed code. Raw signing is never exposed to the LLM, whose chain tools are read-only.
17
17
  - **A project you own.** Studio generates ordinary TypeScript under `app/agent/`; edit, fork, or move that code whenever you want.
18
- - **A guided path to production.** Run locally, diagnose readiness, deploy to the managed BSC testnet trial or your own AWS AgentCore account, then register the public endpoint.
18
+ - **A guided path to production.** Run locally, diagnose readiness, deploy to the managed BSC testnet trial, your own AWS AgentCore/Azure Foundry account, or CreateOS, then register the public endpoint.
19
19
 
20
20
  ## Start with the skill
21
21
 
@@ -92,7 +92,7 @@ Studio does not force every agent through one fixed path. The skill guides these
92
92
  | LLM | Pieverse, OpenRouter, OpenAI, Anthropic, Bedrock | Pieverse is the default; `auto/free` starts at $0/token. Other providers use your own credentials. |
93
93
  | Commerce rails | ERC-8183, B402, or both | ERC-8183 is job escrow. B402 settles request payments. Rails and public faces are separate choices. |
94
94
  | Public faces | A2A, MCP, and either X402 or MPP | X402 and MPP are alternative adapters for the same B402 seller and cannot be selected together. |
95
- | Deployment | BNB managed trial or AWS AgentCore | Every deploy asks for `bnb` or `aws`; a previous deployment is never a silent default. |
95
+ | Deployment | BNB managed trial, AWS AgentCore, Azure Foundry or CreateOS | Every deploy asks for `bnb`, `aws`, `azure` or `nodeops`; a previous deployment is never a silent default. |
96
96
  | Deliverable storage | local, IPFS, S3, Azure Blob | Self-hosted deploys are BYOS: use IPFS, S3, or Azure Blob with a stable public read URL. Platform deploys ignore the project's local/BYOS choice; the API injects an agent-scoped token and uses managed S3 on AWS or Azure Blob on Azure. Public deliverable URLs stay on `bnbagent-api` and return 404 after the Agent is deleted. |
97
97
 
98
98
  ### Wallet choices
@@ -313,3 +313,32 @@ Studio can create wallet material, sign blockchain transactions, spend tokens th
313
313
  You are responsible for protecting keys and credentials, reviewing every transaction and permission, limiting wallet funds and session budgets, evaluating buyer and seller counterparties, securing deployed infrastructure, and paying any resulting network or cloud costs. The managed BNB trial runs in the operator's cloud and receives the runtime material described in [Wallet choices](#wallet-choices); use it only with a testnet wallet or a tightly bounded session.
314
314
 
315
315
  This package is licensed under Apache-2.0 and provided **as is**, without warranties or guarantees. The authors and contributors are not responsible for lost funds, compromised credentials, service interruptions, unexpected charges, or other damages arising from its use. Nothing in this package is financial, investment, legal, or tax advice.
316
+
317
+ ### CreateOS (NodeOps)
318
+
319
+ Studio pins deploy 0.6.2 and loads its published Node.js SDK. Configure the agent:
320
+
321
+ ```toml
322
+ [deploy.nodeops]
323
+ mode = "account"
324
+ packaging = "zip"
325
+ port = 8080
326
+ # health_path = "/ping"
327
+ ```
328
+
329
+ Provide `CREATEOS_API_KEY` through the process environment, then use:
330
+
331
+ ```bash
332
+ bag deploy prepare --provider nodeops
333
+ bag deploy --provider nodeops --yes
334
+ bag deploy list --provider nodeops --json
335
+ bag deploy status --provider nodeops --json
336
+ bag deploy verify --provider nodeops --skip-register
337
+ bag deploy logs --provider nodeops
338
+ bag deploy destroy --provider nodeops # preview
339
+ bag deploy destroy --provider nodeops --execute --yes # delete project
340
+ ```
341
+
342
+ Account mode supports ZIP/container deployment, runtime secrets and updates. An unhealthy endpoint makes deploy exit nonzero while preserving `.studio/deployments/nodeops.json`; inspect logs and retry verification. Wallet runtime variables use `settings.runEnvs` through the pinned deploy 0.6.2; the pinned SDK 0.5.7-alpha.2 supports BSC nested Permit2 signing with explicit policy opt-in. The Studio bridge now supports bounded approval transactions with an explicit gas budget during authorized payments. Hosting renewal is not yet integrated. `bag deploy wallet --json` reads Gateway chains and USDC balances without signing or paying. CreateOS uses NodeOps infrastructure; AWS and Azure providers deploy into your own cloud account.
343
+
344
+ The installed skill includes `references/bnbagent-studio-use-createos.md` with configuration, capability limits and recovery steps.