把这份指南发给你的 OpenClaw,它会引导你选择最适合的多 Agent 架构。
当用户把这份文档发给你时,请按照以下流程引导他们选择合适的多 Agent 架构配置。
| using UnityEngine; | |
| [ExecuteAlways] | |
| public class BalloonTouch : MonoBehaviour { | |
| public Transform start; | |
| public Transform other; | |
| void Update() { | |
| Vector2 startPoint = start.position; |
| # Prompt Para Replicar A Arquitetura Da SPA | |
| Você é um arquiteto sênior de frontend. Sua tarefa é criar uma nova single page application com uma arquitetura **praticamente idêntica** à arquitetura descrita abaixo, mas **sem copiar nenhuma regra de negócio**, nomenclatura de domínio, fluxos específicos do produto original ou qualquer texto/fonte do projeto de origem. | |
| O objetivo é reproduzir somente o **blueprint técnico e organizacional**: | |
| - stack | |
| - estrutura de pastas | |
| - camadas | |
| - convenções |
| # X11 Forwarding Setup for VSCode Remote SSH | |
| This guide details how to configure X11 forwarding to enable GUI support when using VSCode Remote SSH. | |
| --- | |
| ## Steps | |
| ```powershell | |
| # 1. Install and Configure Xming on Windows |
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
| _ _ _ ____ _ _ | |
| | | | | __ _ ___| | __ | __ ) __ _ ___| | _| | | |
| | |_| |/ _` |/ __| |/ / | _ \ / _` |/ __| |/ / | | |
| | _ | (_| | (__| < | |_) | (_| | (__| <|_| | |
| |_| |_|\__,_|\___|_|\_\ |____/ \__,_|\___|_|\_(_) | |
| A DIY Guide | |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
This is a compiled list of falsehoods programmers tend to believe about working with time.
Don't re-invent a date time library yourself. If you think you understand everything about time, you're probably doing it wrong.