Business & Operations
Operations, strategy, finance, sales, support, management, and planning
Browse business & operations skills
Showing 27,721–27,744 of 32,297 skills
**Version**: 3.0.3 (20260209a) **Purpose**: Phase orchestration, **structured data contracts**, validation gates, **FSM-enforced execution** > **Cross-References**: > - Global constraints and data model: See SKILL.md > - FSM formal specification: See docs/SKILL-ARCHITECTURE-DESIGN.md §0.1-0.2 ---
Patterns for Serde serialization, FFI boundaries, and type safety.
This guide catalogs common mistakes in conversation design with concrete examples and solutions. Learn from these anti-patterns to build better Agentforce agents. ---
This guide catalogs common mistakes in conversation design with concrete examples and solutions. Learn from these anti-patterns to build better Agentforce agents. ---
Guide new users through setup in a friendly ~5 minute conversation. Keep it simple, practical, and focused on getting them working quickly.
Critical rules for effective file-based planning.
Complete installation guide for all 53 production-ready skills across multiple AI agents and platforms.
Complete installation guide for all 53 production-ready skills across multiple AI agents and platforms.
Complete installation guide for all 53 production-ready skills across multiple AI agents and platforms.
This document outlines the comprehensive process for creating, maintaining, and managing the service desk knowledge base to ensure consistent, accurate, and accessible information for both service desk agents and end users.
The **Revenue Variance Analysis (RVA) Agent** helps treasury analysts evaluate how agency revenue forecasts compare to actual collections and contextualizes those results against U.S. Treasury national trends. It integrates with two key Semantic Kernel plugins and external API endpoints: ------ The Revenue Forecasting Schema plugin provides a structured SQL-based representation of agency revenue planning, daily collections, and variance analysis enriched with national Treasury data. It includ...
Documents are the foundation of Simple Chat's Retrieval-Augmented Generation (RAG) capabilities. This tutorial will teach you everything you need to know about uploading, organizing, and managing your documents effectively.
Index of Distributed Systems Skills
**Version:** 1.11.0 **Last Updated:** February 19, 2026 **Audience:** People who want to understand how Dex works under the hood - whether to customize it, contribute to it, or learn from its design patterns. ---
**Last Updated:** January 28, 2026 (Added Career Development System) You are **Dex**, a personal knowledge assistant. You help the user organize their professional life - meetings, projects, people, ideas, and tasks. You're friendly, direct, and focused on making their day-to-day easier. ---
**Last Updated:** January 28, 2026 (Added Career Development System) You are **Dex**, a personal knowledge assistant. You help the user organize their professional life - meetings, projects, people, ideas, and tasks. You're friendly, direct, and focused on making their day-to-day easier. ---
**Last Updated:** January 28, 2026 (Added Career Development System) You are **Dex**, a personal knowledge assistant. You help the user organize their professional life - meetings, projects, people, ideas, and tasks. You're friendly, direct, and focused on making their day-to-day easier. ---
**Last Updated:** February 19, 2026 (v1.11.0 — Memory ownership, named sessions, background processing) You are **Dex**, a personal knowledge assistant. You help the user organize their professional life - meetings, projects, people, ideas, and tasks. You're friendly, direct, and focused on making their day-to-day easier. ---
For complex tasks, break operations into clear, sequential steps. It is often helpful to give the agent an overview of the process towards the beginning of SKILL.md:
For complex tasks, break operations into clear, sequential steps. It is often helpful to give Claude an overview of the process towards the beginning of SKILL.md:
For complex tasks, break operations into clear, sequential steps. It is often helpful to give you an overview of the process towards the beginning of SKILL.md:
``` ┌────────────────────────────────────────────────────────────────┐ │ CRITICAL: Workers Cache API ≠ Cache Reserve │ │ │ │ • Workers caches.default / cache.put() → edge cache ONLY │ │ • Cache Reserve → zone-level setting, automatic, no per-req │ │ • You CANNOT selectively write to Cache Reserve from Workers │ │ • Cache Reserve works with standard fetch(), not cache.put() │ └───────────────────────────────
```typescript export default { async fetch(request: Request, env: Env, ctx: ExecutionContext): Promise<Response> { const url = new URL(request.url); if (request.method === 'POST' && url.pathname === '/api') { const body = await request.json(); return new Response(JSON.stringify({ id: 1 }), { headers: { 'Content-Type': 'application/json' } }); } return fetch(request); // Subrequest to origin }, }; ```
```typescript export default { async fetch(request: Request, env: Env, ctx: ExecutionContext): Promise<Response> { const url = new URL(request.url) if (request.method === 'POST' && url.pathname === '/api') { const body = await request.json() return new Response(JSON.stringify({ id: 1 }), { headers: { 'Content-Type': 'application/json' }, }) } return fetch(request) // Subrequest to origin }, } ```