@officexapp/vidfarm-devcli 0.21.63 → 0.21.65
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/.agents/skills/dollarplatoon-skill/SKILL.md +26 -4
- package/.agents/skills/dollarplatoon-skill/SOURCE.md +27 -1
- package/.agents/skills/dollarplatoon-skill/skill/clients.md +13 -1
- package/.agents/skills/dollarplatoon-skill/skill/gigs.md +153 -6
- package/.agents/skills/dollarplatoon-skill/skill/gigworkers.md +29 -2
- package/.agents/skills/dollarplatoon-skill/skill/orders.md +191 -5
- package/.agents/skills/dollarplatoon-skill/skill/quickstart.md +3 -3
- package/.agents/skills/dollarplatoon-skill/skill/staging.md +28 -20
- package/.agents/skills/vidfarm/SKILL.md +1 -1
- package/.agents/skills/vidfarm/references/core-workflows.md +68 -3
- package/SKILL.director.md +69 -4
- package/SKILL.md +1 -1
- package/dist/src/devcli/marketplace-console.js +189 -24
- package/marketplace.md +24 -0
- package/package.json +3 -1
package/marketplace.md
CHANGED
|
@@ -52,6 +52,12 @@ Both take `--json` on every subcommand, and both authenticate on the ordinary vi
|
|
|
52
52
|
(`vidfarm login`, `VIDFARM_API_KEY`, or `--api-key`). The marketplace is paid-only, so a free key
|
|
53
53
|
reaches the routes and is refused with `402`.
|
|
54
54
|
|
|
55
|
+
**One shop-level rule cuts across both verbs: NEW SHOP.** The platform can mark a shop so every
|
|
56
|
+
buyer's *first* order there is free — one pack, $0, one per shop. Those orders carry no deposit and
|
|
57
|
+
never pay out, and **the buyer's approval is final and releases the files by itself** rather than
|
|
58
|
+
waiting for a payout. Buyers: § *first order free* in `marketplace-buyer.md`. Vendors: § *a NEW SHOP
|
|
59
|
+
order pays nothing* below. Either way, read `is_free` on the order — never `total_usd == 0`.
|
|
60
|
+
|
|
55
61
|
**This document is the shared reference underneath both harnesses** — the keys, the REST surface,
|
|
56
62
|
the machines, the proof rules, the payout rules. The harness tells you *what loop to run*; this file
|
|
57
63
|
tells you *what each call does*. Read the harness for your side first, then use this as the manual.
|
|
@@ -1699,6 +1705,24 @@ dollar platoon task**, which is why the order page and the task thread are the s
|
|
|
1699
1705
|
| you deliver | proof — watermarked evidence + **sealed note** |
|
|
1700
1706
|
| the buyer's pack | `https://vidfarm.cc/delivery/<id>` |
|
|
1701
1707
|
|
|
1708
|
+
#### a NEW SHOP order pays nothing, and it is still real work
|
|
1709
|
+
|
|
1710
|
+
if your shop is marked **new shop**, every buyer's **first order** at it is free — one pack, $0. the
|
|
1711
|
+
platform grants that, not you; `vidfarm shop` reports it and an operator changes it. what matters
|
|
1712
|
+
while you are working one:
|
|
1713
|
+
|
|
1714
|
+
- **it carries no deposit and it never pays out.** `vidfarm shop orders` shows it as `FREE`, not as
|
|
1715
|
+
`UNFUNDED` — those are different things, and the red one means *do not work this*. a free order is
|
|
1716
|
+
an order the vendor agreed to take. work it normally.
|
|
1717
|
+
- **the buyer's approval is final and releases your files at once.** on a paid order the payout
|
|
1718
|
+
unlocks the clean masters; here the approval does it alone, because there is no payout afterwards.
|
|
1719
|
+
so there is no window in which to renegotiate — deliver what you would deliver for money.
|
|
1720
|
+
- **your earnings chart will show orders totalling $0.** that is the promotion, not a broken rollup.
|
|
1721
|
+
|
|
1722
|
+
underneath it is a **separate dollar platoon gig** (`dpFreeGigId`) with `list_price: 0`. their API
|
|
1723
|
+
locks a gig's price mode at creation, so one gig cannot sell both free and paid — which is why a
|
|
1724
|
+
machine that does both owns two. you never choose which: the order lands in the right one.
|
|
1725
|
+
|
|
1702
1726
|
#### the delivery url — vidfarm mints it, you never invent it
|
|
1703
1727
|
|
|
1704
1728
|
**you do not construct a `/delivery/` url.** it is minted when you fulfil the order, and it is the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@officexapp/vidfarm-devcli",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.65",
|
|
4
4
|
"description": "Local bridge for the Vidfarm Trackpad Editor. `vidfarm serve <template_id>` boots the FULL editor on localhost (disk-backed records/storage, free in-process render); edit composition.html on disk (Claude Code, Codex, etc.) and the browser live-morphs it.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -161,6 +161,8 @@
|
|
|
161
161
|
"test:order-decision": "node --import tsx --test test/order-decision.test.ts",
|
|
162
162
|
"test:reviews": "node --import tsx --test test/shop-reviews.test.ts",
|
|
163
163
|
"test:marketplace-api": "node --import tsx --test test/marketplace-api.test.ts",
|
|
164
|
+
"test:marketplace-regressions": "node --import tsx --test test/marketplace-prod-regressions.test.ts",
|
|
165
|
+
"test:new-shop-free-order": "node --import tsx --test test/new-shop-free-order.test.ts",
|
|
164
166
|
"test:notifications": "node --import tsx --test test/marketplace-notifications.test.ts",
|
|
165
167
|
"test:delivery": "node --import tsx --test test/delivery-items.test.ts",
|
|
166
168
|
"test:dporders": "node --import tsx --test test/dp-order-fee.test.ts",
|