Skip to main content
在 Manus 中运行任何 Skill
一键导入
HafizFasih
GitHub 创作者资料

HafizFasih

按仓库查看 6 个 GitHub 仓库中的 48 个已收集 skills。

已收集 skills
48
仓库
6
更新
2026-05-16
仓库浏览

仓库与代表性 skills

document-parsing
软件开发工程师

Parse PDF, DOCX, XLSX, and PPTX documents in a microservices context. Use when building the Media Processor service (Phase 9) for document text extraction. Covers BytesIO streaming, standardized JSON output, async wrappers for CPU-bound operations. NOT for desktop automation, file editing, or document creation.

2026-02-05
multi-agent-patterns
软件开发工程师

Design multi-agent architectures for complex tasks. Use when single-agent context limits are exceeded, when tasks decompose naturally into subtasks, or when specializing agents improves quality. Includes OpenAI Agents SDK patterns (handoffs, as_tool) required for OmniChat Phase 5. Covers Triage routing, context passing, and streaming specialist patterns.

2026-02-05
event-publisher
软件开发工程师

Generate Redis pub/sub event publisher and subscriber patterns. Use when: (1) Broadcasting events between services, (2) Implementing event-driven patterns, (3) Real-time notifications, (4) Decoupling service communication. Builds on redis-pattern skill with domain-specific event types and handlers. NOT for task queues (use redis-pattern task-queue instead).

2026-02-05
scaffolding-openai-agents
软件开发工程师

Builds AI agents using OpenAI Agents SDK with async/await patterns and multi-agent orchestration. Use when creating tutoring agents, building agent handoffs, implementing tool-calling agents, or orchestrating multiple specialists. Covers Agent class, Runner patterns, function tools, guardrails, and streaming responses. Includes OmniChat distributed patterns: LLM Gateway routing, Persistence bridge, Event Publisher integration, and remote tool stubs. NOT when using raw OpenAI API without SDK or other agent frameworks like LangChain.

2026-02-05
streaming-llm-responses
软件开发工程师

Implement backend SSE (Server-Sent Events) infrastructure for real-time AI response streaming. Use when building the Stream Broker service, Redis Pub/Sub listeners, or SSE endpoints. Covers sse-starlette integration, connection management, heartbeats, and event routing. NOT for frontend consumption patterns - this is backend infrastructure only.

2026-02-05
building-rag-systems
数据科学家

Build production RAG systems with semantic chunking, incremental indexing, and filtered retrieval. Use when implementing document ingestion pipelines, vector search with Qdrant, or context-aware retrieval. Covers chunking strategies, change detection, payload indexing, and context expansion. NOT when doing simple similarity search without production requirements.

2026-02-05
docker
网络与计算机系统管理员

Production-grade Docker containerization for Python and Node.js applications. This skill should be used when users ask to containerize applications, create Dockerfiles, dockerize projects, or set up Docker Compose. Auto-detects project structure, analyzes .env for secrets, validates security, and generates tested Dockerfiles.

2026-02-05
scaffolding-fastapi-sqlmodel
软件开发工程师

Build production-grade FastAPI backends with SQLModel and JWT authentication. Use when building REST APIs with Neon PostgreSQL, implementing layered architecture (Controller-Service-Repository), or creating CRUD endpoints with JWT/JWKS verification. NOT when building simple scripts or non-microservice architectures.

2026-02-05
当前展示该仓库 Top 8 / 18 个已收集 skills。
当前展示该仓库 Top 8 / 10 个已收集 skills。
monitor-system
网络与计算机系统管理员

Monitor system health, detect errors, implement recovery procedures, restart failed processes, maintain audit logs. Use for system health checks, error recovery, process monitoring, or when user mentions "system status", "errors", "logs".

2026-01-12
generate-ceo-briefing
管理分析师

Autonomously audit business and financial performance weekly. Analyzes revenue, expenses, completed tasks, bottlenecks, and generates executive briefing with proactive suggestions. Use when generating weekly report, business audit, or when user mentions "briefing", "ceo report", "performance summary", "weekly audit", "business review".

2026-01-12
manage-accounting
会计师与审计师

Integrate with Xero accounting system to sync transactions, categorize expenses, track revenue, generate invoices, and maintain financial records. Use when syncing bank transactions, categorizing expenses, creating invoices, checking financial status, or when user mentions "accounting", "xero", "expenses", "revenue", "invoice", "financial report", "reconcile".

2026-01-11
create-plan
项目管理专家

Create structured Plan.md files for complex multi-step tasks. Analyzes task requirements, breaks them down into actionable steps with estimates, identifies dependencies between steps, flags steps requiring human approval, and generates comprehensive plans with success criteria. Use when task requires planning, user asks to "create a plan", "plan this task", "break this down", "what are the steps", or when task has multiple components or dependencies.

2026-01-11
handle-approval
项目管理专家

Manage human-in-the-loop approval workflow for sensitive actions like payments, email sending, social media posts, and file operations. Creates structured approval requests, monitors approval status in /Approved and /Rejected folders, executes approved actions safely, and maintains complete audit logs. Use when any action requires approval, user mentions "check approvals", "pending approval", "approve this", "what needs approval", or before executing sensitive operations like payments, emails, or social posts.

2026-01-11
process-emails
秘书和行政助理(法律、医疗和高管除外)

Process emails from Gmail Watcher, categorize by priority (urgent/normal/low), draft appropriate responses using templates, flag items requiring immediate attention. Use when processing emails, checking inbox, handling Gmail notifications, or user mentions "email", "inbox", "gmail", "messages", "check mail", "respond to email".

2026-01-11
process-tasks
办公与行政支持工人一线监督员

Process pending tasks, check Needs_Action folder, complete task requests, move finished work to Done folder, and update activity dashboard. Use when the user asks to "process tasks", "check pending tasks", "handle Needs_Action items", "complete my tasks", "check what needs to be done", or mentions the Needs_Action folder, task processing, or wants to see completed work moved to Done.

2026-01-11
pydantic-settings-management
软件开发工程师

Guides the professional implementation of application configuration using pydantic-settings and .env files. Use when the user needs to manage environment variables, validate config schemas, or structure settings for agents and web apps (FastAPI, etc.).

2026-05-16
python-package-management
软件开发工程师

Manages Python projects using UV package manager exclusively. Use when users need to create Python projects, manage dependencies, handle virtual environments, or work with Python packages. This skill enforces UV workflows for all Python package operations including installing packages, creating projects, managing dependencies, running scripts, and building distributions. NOT when working with existing pip/poetry projects that user explicitly wants to keep unchanged.

2026-05-16
scaffolding-fastapi
软件开发工程师

Build production-grade FastAPI backends with SQLModel, Pydantic settings, and JWT authentication. Use when building REST APIs with PostgreSQL, implementing environment-based configuration with .env files, creating CRUD endpoints with JWT/JWKS verification, or setting up pydantic-settings for app configuration. NOT when building distributed microservices with Dapr (use scaffolding-fastapi-dapr for that).

2026-05-16
scaffolding-openai-agents
软件开发工程师

Builds AI agents using OpenAI Agents SDK with async/await patterns and multi-agent orchestration. Use when creating tutoring agents, building agent handoffs, implementing tool-calling agents, or orchestrating multiple specialists. Covers Agent class, Runner patterns, function tools, guardrails, and streaming responses. NOT when using raw OpenAI API without SDK or other agent frameworks like LangChain.

2026-05-16
tool-design
软件开发工程师

Design tools that agents can use effectively. Use when creating new tools for agents, debugging tool-related failures, or optimizing existing tool sets.

2026-05-16
已展示 6 / 6 个仓库
已展示全部仓库