Skip to content

Instantly share code, notes, and snippets.

View czy88840616's full-sized avatar
🎯
Focusing

Harry Chen czy88840616

🎯
Focusing
  • Hangzhou, Zhejiang, China
View GitHub Profile
@czy88840616
czy88840616 / agent loop
Created March 10, 2025 05:39 — forked from jlia0/agent loop
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
public class JSON2Java {
private static final ScriptEngine jsonParser;
static {
try {
String init = read(JSON2Java.class.getResource("json2java.js"));
ScriptEngine engine = new ScriptEngineManager().getEngineByName("JavaScript");
engine.eval(init);
jsonParser = engine;