把这份指南发给你的 OpenClaw,它会引导你选择最适合的多 Agent 架构。
当用户把这份文档发给你时,请按照以下流程引导他们选择合适的多 Agent 架构配置。
| { | |
| "emojis": [ | |
| {"emoji": "👩👩👧👧", "name": "family_mothers_two_girls", "shortname": "", "unicode": "", "html": "👩‍👩‍👧‍👧", "category": "p", "order": ""}, | |
| {"emoji": "👩👩👧👦", "name": "family_mothers_children", "shortname": "", "unicode": "", "html": "👩‍👩‍👧‍👦", "category": "p", "order": ""}, | |
| {"emoji": "👩👩👦👦", "name": "family_mothers_two_boys", "shortname": "", "unicode": "", "html": "👩‍👩‍👦‍👦", "category": "p", "order": ""}, | |
| {"emoji": "👨👩👧👧", "name": "family_two_girls", "shortname": "", "unicode": "", "html": "👨‍👩‍👧‍👧", "category": "p", "order": ""}, | |
| {"emoji": "👨👩👧👦", "name": "family_children", "shortname": "", "unicode": "", "html": "👨‍👩‍👧‍👦", "category": "p", "order": ""}, | |
| {"emoji": "👨👩👦👦", "name": "family_two_boys", "shortname": "", "unicode": "", "html": "👨&zw |
| server { | |
| listen 80; | |
| listen 443; | |
| listen [::]:80; | |
| listen [::]:443; | |
| server_name fonts.lug.ustc.edu.cn; | |
| access_log /var/log/nginx/revproxy_access.log; | |
| error_log /var/log/nginx/revproxy_error.log; | |
| /* | |
| * Copyright (C) 2014 The Android Open Source Project | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| Unless specified otherwise, all of the below tinting applies to both Lollipop and pre-Lollipop using AppCompat v21. To use the support version of these attributes, remove the android namespace. For instance, "android:colorControlNormal" becomes "colorControlNormal". These attributes will be propagated to their corresponding attributes within the android namespace for devices running Lollipop. Any exceptions to this will be noted by including the "android:" prefix. | |
| All Clickable Views: | |
| ----------- | |
| * ripple effect (Lollipop only) -- "colorControlHighlight" | |
| Status Bar: | |
| ------------ | |
| * background (Lollipop only) - "colorPrimaryDark" |
| #!/bin/bash | |
| # Script adb+ | |
| # Run any command adb provides on all your currently connected devices, | |
| # Or prompt to select one device | |
| showHelp() { | |
| echo "Usage: adb+ [-a] <command>" | |
| echo " -h: show help" | |
| echo " -a: run command on all device" | |
| echo " command: normal adb commands" |
| package com.zackehh.example; | |
| import com.zackehh.example.MinimalBrowser; | |
| import android.content.Context; | |
| import android.content.Intent; | |
| import android.text.Layout; | |
| import android.text.Spannable; | |
| import android.text.method.MovementMethod; | |
| import android.text.style.URLSpan; |
| public class AutoLineFeedLayout extends RelativeLayout { | |
| // Space between child views. | |
| private final static int PAD_H = 5, PAD_V = 5; | |
| private int mHeight; | |
| /** | |
| * | |
| * <p>Description: 构造方法</p> | |
| *@param context 上下文 | |
| * |
| public static long getTodayStartTime(){ | |
| Calendar todayStart = Calendar.getInstance(new SimpleTimeZone(0, "Asia/Beijing")); | |
| todayStart.set(Calendar.HOUR, 0); | |
| todayStart.set(Calendar.MINUTE, 0); | |
| todayStart.set(Calendar.SECOND, 0); | |
| todayStart.set(Calendar.MILLISECOND, 0); | |
| Date today = (Date) todayStart.getTime().clone(); | |
| return today.getTime(); | |
| } |
| public static void fileCopy( File in, File out ) throws IOException { | |
| FileChannel inChannel = new FileInputStream( in ).getChannel(); | |
| FileChannel outChannel = new FileOutputStream( out ).getChannel(); | |
| try {// | |
| inChannel.transferTo(0, inChannel.size(), outChannel); | |
| // original -- apparently has trouble copying large files on Windows | |
| // magic number for Windows, 64Mb - 32Kb) | |
| int maxCount = (64 * 1024 * 1024) - (32 * 1024); | |
| long size = inChannel.size(); | |
| long position = 0; |