C
Skills Caffeinelabs
ego lite browser
ผู้สนับสนุนego lite คือเบราว์เซอร์ที่เร็วที่สุดสำหรับ AI agents ในการรันเว็บออโตเมชัน แชร์สถานะที่ล็อกอินแล้วของคุณกับ Codex หรือ Claude Code โดยไม่มีค่าใช้จ่าย ไม่ต้องตั้งค่าใดๆ
Alpha Vantage MCP Server
ผู้สนับสนุนเข้าถึงข้อมูลตลาดการเงิน: หุ้นแบบเรียลไทม์และย้อนหลัง, ETF, ออปชั่น, ฟอเร็กซ์, คริปโต, สินค้าโภคภัณฑ์, ข้อมูลพื้นฐาน, ตัวชี้วัดทางเทคนิค และอื่นๆ
connector-googlemail
caffeinelabs
Use the `googlemail-client` mops package whenever the user asks the canister to send email, compose a draft, list or read Gmail messages, or fetch the authenticated user's Gmail profile. The package wraps the Gmail REST API v1 at `https://gmail.googleapis.com` via outbound HTTPS calls.
communicationapiproductivity
extension-authorization
caffeinelabs
ระบบการอนุญาตที่มีการควบคุมการเข้าถึงตามบทบาท จำเป็นสำหรับทุกแอปที่จัดการข้อมูลส่วนบุคคลหรือข้อมูลที่จำกัดการเข้าถึง
securityapidevelopment
extension-camera
caffeinelabs
รองรับกล้องเว็บ
mediavideoimage
extension-core-infrastructure
caffeinelabs
โครงสร้างพื้นฐานหลักที่ให้การกำหนดค่าการเชื่อมต่อแบ็กเอนด์ ไคลเอนต์พื้นที่จัดเก็บ และจุดเริ่มต้นแอปพลิเคชัน React
developmentapidevops
extension-data-viewer
caffeinelabs
Admin-only paginated viewer for stable canister state. Use whenever the user asks for a viewer, dashboard, debug panel, or admin browse over backend data — users, items, orders, logs, or any stable Map/Set/Array/VarArray/List/Stack/Queue. Pre-installed in every Caffeine app via the `caffeineai-data-viewer` mops package; this skill explains what it does and how to keep using it correctly.
developmentdatabasedata-analysis
extension-email
caffeinelabs
รองรับการส่งอีเมลบริการ/ธุรกรรม อย่าใช้สิ่งนี้ในการส่งอีเมลการตลาดหรืออีเมลยืนยันตัวตน
extension-email-calendar-events
caffeinelabs
สนับสนุนการจัดกิจกรรม/การประชุมและการส่งคำเชิญทางอีเมล
productivitycommunicationproject-management
extension-email-marketing
caffeinelabs
ส่งอีเมลการตลาดแบบเฉพาะบุคคลถึงสมาชิก พร้อมลิงก์ยกเลิกการสมัคร
marketingcommunication
extension-email-raw
caffeinelabs
ส่งอีเมลที่มีผู้รับหลายคน ทั้งในช่องถึง (To), สำเนาถึง (CC) และสำเนาลับ (BCC)
communication
extension-email-verification
caffeinelabs
สนับสนุนการส่งอีเมลพร้อมลิงก์ที่ผู้รับสามารถคลิกเพื่อยืนยันว่าพวกเขาเป็นเจ้าของที่อยู่อีเมลนั้น
securityapicommunication
extension-http-outcalls
caffeinelabs
HTTP outcalls ที่ดำเนินการโดย backend canister (ไม่ใช่ใน frontend)
developmentapi
extension-invite-links
caffeinelabs
ขอให้สิทธิ์การเข้าถึงแบบลิงก์เชิญ / RSVP ซึ่งผู้เข้าชมสามารถส่งคำตอบได้โดยไม่ต้องเข้าสู่ระบบ ในขณะที่ผู้ดูแลระบบสามารถดูคำตอบได้เมื่อเข้าสู่ระบบ
communicationproductivityapi
extension-object-storage
caffeinelabs
การจัดเก็บไฟล์/ออบเจกต์ทั่วไป เช่น สำหรับรูปภาพ วิดีโอ ไฟล์ เอกสาร และข้อมูลปริมาณมากอื่นๆ เหมาะอย่างยิ่งสำหรับแกลเลอรีรูปภาพ แกลเลอรีวิดีโอ และการจัดการไฟล์หรือออบเจกต์อื่นๆ รองรับไฟล์ขนาดใหญ่เกินขีดจำกัดของ IC พร้อมการเข้าถึง URL HTTP ที่แคชโดยเบราว์เซอร์
developmentmedia
extension-openai
caffeinelabs
MANDATORY recipe for every Caffeine build that calls OpenAI (ChatGPT, GPT-4o, an LLM, a chatbot, embeddings). The ONLY supported path is the `openai-client` mops package with a canister-side API-key bearer. Hand-rolling `ic.http_request` to `api.openai.com/v1/...` is a FORBIDDEN anti-pattern — it leaks the bearer across replicated outcalls (security + 13× billing impact), bypasses the typed request/response bindings, and forces hand-rolled JSON on a language with poor JSON support. Load this...
developmentapisecurity
extension-oql
caffeinelabs
Make a canister's data queryable by the Caffeine Data Intelligence agent. Use whenever an app stores structured data (Maps/Lists/arrays of records) that should be answerable in natural language — "top customers", "revenue by region", "active projects". Adds a discoverable `schema()` and a JSON `execute()` query endpoint via the `caffeineai-oql` mops package's `Expose` mixin.
developmentdatabasedata-analysis
extension-posting-to-x
caffeinelabs
MANDATORY recipe for every Caffeine build that posts to X (Twitter). The ONLY supported path is the `x-client` mops package with OAuth 2.0 PKCE. Hand-rolling `ic.http_request` or `icBooking.http_request` calls to `api.x.com/2/tweets`, `api.x.com/2/oauth2/token`, or any other X endpoint is a FORBIDDEN anti-pattern — it bypasses bearer auth, replication-cost safeguards, and `x-client`'s null-field handling. Load this skill whenever the user, spec, or any prior task mentions tweeting,...
developmentapi
extension-qr-code
caffeinelabs
เครื่องสแกน QR code โดยใช้กล้อง
productivitymediaimage
extension-querying-oql
caffeinelabs
Quick reference for the Caffeine Data Intelligence agent to query an OQL-exposing canister (schema() + execute()) through the `icp` CLI against the project's `backend` canister: read the schema, form JSON queries (filter / order / paginate / aggregate / dotted-path edges), and parse the Candid result rows.
developmentdatabaseapi
extension-stripe
caffeinelabs
การสนับสนุนการชำระเงินโดยใช้ Stripe รองรับบัตรเครดิตและบัตรเดบิต
extension-user-approval
caffeinelabs
การจัดการผู้ใช้ตามการอนุมัติ
securityproject-managementcommunication