sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
You are a powerful agentic AI coding assistant, powered by Claude 3.5 Sonnet. You operate exclusively in Cursor, the world's best IDE. | |
You are pair programming with a USER to solve their coding task. | |
The task may require creating a new codebase, modifying or debugging an existing codebase, or simply answering a question. | |
Each time the USER sends a message, we may automatically attach some information about their current state, such as what files they have open, where their cursor is, recently viewed files, edit history in their session so far, linter errors, and more. | |
This information may or may not be relevant to the coding task, it is up for you to decide. | |
Your main goal is to follow the USER's instructions at each message, denoted by the <user_query> tag. | |
<communication> | |
1. Be conversational but professional. |
using System; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.Animations; | |
using UnityEngine.Playables; | |
using MEC; // Uses More Effective Coroutines from the Unity Asset Store | |
public class AnimationSystem { | |
PlayableGraph playableGraph; | |
readonly AnimationMixerPlayable topLevelMixer; |
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 |
import anthropic | |
import os | |
import sys | |
from termcolor import colored | |
from dotenv import load_dotenv | |
class ClaudeAgent: | |
def __init__(self, api_key=None, model="claude-3-7-sonnet-20250219", max_tokens=4000): | |
"""Initialize the Claude agent with API key and model.""" |
// @remove-on-eject-begin | |
/** | |
* Copyright (c) 2015-present, Facebook, Inc. | |
* | |
* This source code is licensed under the MIT license found in the | |
* LICENSE file in the root directory of this source tree. | |
*/ | |
// @remove-on-eject-end | |
'use strict'; |
'use client'; | |
/* | |
This file is adapted from next-themes to work with tanstack start. | |
next-themes can be found at https://github.com/pacocoursey/next-themes under the MIT license. | |
*/ | |
import * as React from 'react'; | |
import { script } from './theme-script'; |
public CustomEntryRenderer(Context context) : base(context) | |
{ | |
} | |
public override bool DispatchKeyEvent(KeyEvent e) | |
{ | |
if (e.Action == KeyEventActions.Down) | |
{ | |
if (e.KeyCode == Keycode.Del) | |
{ |
import os | |
import subprocess | |
import sys | |
import shutil | |
import logging | |
from pathlib import Path | |
import torch | |
from transformers import AutoModelForCausalLM, AutoTokenizer | |
import mlx.core as mx |