with Cursor and Schedule?
Add a followup to an agent. See the documentation
Retrieve the conversation history of a cloud agent, including all user prompts and assistant responses. See the documentation
Gets the status of an agent. See the documentation
Launch a Cursor agent. See the documentation
List all available Cursor agents. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cursor: {
type: "app",
app: "cursor",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.cursor.com/v0/agents`,
auth: {
username: `${this.cursor.$auth.api_key}`,
password: ``,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.