Telvok Marketplace
Buy and sell knowledge books on the Telvok marketplace.
Tools
library_search(query, filters?) - Search marketplace for books
library_buy(slug) - Purchase or claim a book
library_download(slug) - Download a free (open) book locally
library_publish(name, pricing, attestation, ...) - Publish your entries as a book
my_books(filter?) - View your published and purchased books
sync(slug?, force?) - Check for and receive updates to owned books
rate_book(slug, rating, title?, comment?) - Rate a purchased book (1-5 stars)
seller_analytics() - View your sales, reviews, and download stats
unsubscribe(slug) - Cancel a subscription to a book
Pricing Tiers
| Tier |
Price |
Access |
Updates |
| Open |
Free |
Downloads locally |
Manual re-download |
| One-time |
$X |
Cloud API only |
Seller decides |
| Subscription |
$X/mo |
Cloud API only |
Always latest |
Platform fee: 20% on paid transactions.
Buying Workflow
library_search({ query: "react patterns" }) - Find books
library_buy({ slug: "react-best-practices" }) - Purchase (returns checkout URL for paid)
- Complete payment in browser (if paid)
sync() - Download content
rate_book({ slug: "react-best-practices", rating: 5 }) - Rate the book
Selling Workflow
- Build knowledge with
record() over time
auth({ action: "login" }) - Connect your Telvok account
- Set up Stripe Connect (required for paid books) at telvok.com
library_publish({ name: "My Patterns", pricing: { type: "one_time", price_cents: 999 }, attestation: { original_work: true, terms_accepted: true } })
seller_analytics() - Track performance
Search Filters
library_search({
query: "auth patterns",
filters: {
pricing: "open", // "open" | "one_time" | "subscription"
tags: ["auth", "jwt"], // Filter by tags
min_rating: 4 // 1-5
}
})
See Also
- librarian - Local knowledge capture (brief, record, mark_hit)
- librarian-bounties - Knowledge bounty system
- librarian-auth - Authentication and account setup
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: telvokdev-librarian-librarian-marketplace3description: Telvok Marketplace4---56# Telvok Marketplace78Buy and sell knowledge books on the Telvok marketplace.910## Tools1112- `library_search(query, filters?)` - Search marketplace for books13- `library_buy(slug)` - Purchase or claim a book14- `library_download(slug)` - Download a free (open) book locally15- `library_publish(name, pricing, attestation, ...)` - Publish your entries as a book16- `my_books(filter?)` - View your published and purchased books17- `sync(slug?, force?)` - Check for and receive updates to owned books18- `rate_book(slug, rating, title?, comment?)` - Rate a purchased book (1-5 stars)19- `seller_analytics()` - View your sales, reviews, and download stats20- `unsubscribe(slug)` - Cancel a subscription to a book2122## Pricing Tiers2324| Tier | Price | Access | Updates |25|------|-------|--------|---------|26| **Open** | Free | Downloads locally | Manual re-download |27| **One-time** | $X | Cloud API only | Seller decides |28| **Subscription** | $X/mo | Cloud API only | Always latest |2930Platform fee: 20% on paid transactions.3132## Buying Workflow33341. `library_search({ query: "react patterns" })` - Find books352. `library_buy({ slug: "react-best-practices" })` - Purchase (returns checkout URL for paid)363. Complete payment in browser (if paid)374. `sync()` - Download content385. `rate_book({ slug: "react-best-practices", rating: 5 })` - Rate the book3940## Selling Workflow41421. Build knowledge with `record()` over time432. `auth({ action: "login" })` - Connect your Telvok account443. Set up Stripe Connect (required for paid books) at telvok.com454. `library_publish({ name: "My Patterns", pricing: { type: "one_time", price_cents: 999 }, attestation: { original_work: true, terms_accepted: true } })`465. `seller_analytics()` - Track performance4748## Search Filters4950```51library_search({52 query: "auth patterns",53 filters: {54 pricing: "open", // "open" | "one_time" | "subscription"55 tags: ["auth", "jwt"], // Filter by tags56 min_rating: 4 // 1-557 }58})59```6061## See Also6263- **librarian** - Local knowledge capture (brief, record, mark_hit)64- **librarian-bounties** - Knowledge bounty system65- **librarian-auth** - Authentication and account setup6667---68> Converted and distributed by [TomeVault](https://tomevault.io/claim/telvokdev) — claim your Tome and manage your conversions.69<!-- tomevault:4.0:skill_md:2026-04-13 -->