Version: 1.0.0 Protocol Version: 2024-11-05 Last Updated: 2026-01-10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
In the Generative AI Age your ability to generate prompts is your ability to generate results.
Claude 3.5 Sonnet and o1 series models are recommended for meta prompting.
Replace {{user-input}} with your own input to generate prompts.
Use mp_*.txt as example user-inputs to see how to generate high quality prompts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Logger } from 'aws-amplify'; | |
| const logger = new Logger('fetchItemsNextToken', 'VERBOSE'); | |
| /** | |
| * @desc Recursively fetch all items in a list query using nextToken | |
| * @param {Object} client An AppSyncClient instantiation | |
| * @returns {Object} { items, key } Items are results, | |
| * key is the name of the query called. | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "defaultProfile": "{09dc5eef-6840-4050-ae69-21e55e6a2e62}", | |
| "initialRows": 30, | |
| "initialCols": 120, | |
| "alwaysShowTabs": true, | |
| "showTerminalTitleInTitlebar": true, | |
| "experimental_showTabsInTitlebar": true, | |
| "profiles": [ | |
| { | |
| "guid": "{09dc5eef-6840-4050-ae69-21e55e6a2e62}", |
The latest beta (3.5) includes separate color settings for light & dark mode. Toggling dark mode automatically switches colors.
Vist iTerm2 homepage or use brew install iterm2-beta to download the beta. Thanks @stefanwascoding.
- Add
switch_automatic.pyto~/Library/ApplicationSupport/iTerm2/Scripts/AutoLaunchwith:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as React from 'react'; | |
| import { hot } from 'react-hot-loader'; | |
| import { Provider } from 'react-redux'; | |
| import DevTools from '../Devtools'; | |
| import configureStore from '../../store/configureStore'; | |
| import App from '../App'; | |
| import ApplicationState from '../../store/store.types'; | |
| import { fetchAuth } from '../../store/common/Auth/Auth'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Button extends React.Component { | |
| handleClick = () => { | |
| this.props.onClickFunction(this.props.incrementValue); | |
| }; | |
| render() { | |
| return ( | |
| <button onClick={this.handleClick}> | |
| +{this.props.incrementValue} | |
| </button> |
NewerOlder