Skip to content

Instantly share code, notes, and snippets.

View fungilation's full-sized avatar

Gary Fung fungilation

View GitHub Profile
@fungilation
fungilation / agent loop
Created March 10, 2025 18:37 — 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
@fungilation
fungilation / pnpm-patch-package.js
Created March 1, 2024 21:11 — forked from cdaringe/pnpm-patch-package.js
pnpm-patch-package.js
/**
* @description
* Support patch-package in pnpm projects.
*
* `pnpm` can be tricky to use with patch-package. To minimize friction creating patches,
* this script helps automate patching by using npm and a temp workspace to generate
* patch files.
*
* @usage
* 0. ensure the dependencies of interest are top level dependencies/devDependencies (no patching transitive deps)
@fungilation
fungilation / deploy_wiki.sh
Last active January 11, 2023 00:12 — forked from haranjackson/deploy_wiki.sh
Deploys BookStack wiki on AWS EC2
STACK=bookstack-ec2 # give the stack a name
REGION=us-west-2 # choose your region
DOMAIN= # wiki will be hosted at wiki.[DOMAIN]
aws cloudformation deploy \
--template-file wiki.yaml \
--stack-name $STACK \
--region $REGION \
--parameter-overrides Domain=$DOMAIN