Video wird geladen...

Video konnte nicht geladen werden

Zur Startseite

using tools, Cursor Agent have the capability to reason about when it should - read & write code - search your codebase - call MCP servers - run terminal commands an example where it connects to a postgres database, runs a query and writes to file

34,917 Aufrufe • vor 1 Jahr •via X (Twitter)

9 Kommentare

Profilbild von eric zakariasson
eric zakariassonvor 1 Jahr

we've been hard at work improving @cursor_ai Agent, allowing you to delegate more tasks and let it work alongside you agent works just like a human developer, with access to your tools, codebase context, and the ability to take actions here's what Agent can do ↓

Profilbild von eric zakariasson
eric zakariassonvor 1 Jahr

with Yolo mode enabled, Agent can autonomously run terminal commands to test and refine code. here's how it can setup a python environment, add a server then run it.

Profilbild von eric zakariasson
eric zakariassonvor 1 Jahr

give Agent context through @ commands, just like in Chat. For example, @web enables web searches to pull in relevant documentation and examples, which is particularly valuable when building third-party integrations

Profilbild von eric zakariasson
eric zakariassonvor 1 Jahr

agent automatically detects and fixes linting errors using the language server integration. it receives error context and applies the appropriate fixes and keeps on going until the error is resolved. after making changes, it can review them to make sure it lgtm. doing a second pass can often find unexpected changes and bugs

Profilbild von eric zakariasson
eric zakariassonvor 1 Jahr

rules can be used to control how Agent behaves. we recently released new project rules, read more about them here

Profilbild von eric zakariasson
eric zakariassonvor 1 Jahr

currently available with claude-3.5-sonnet, o3-mini and gpt-4o with more models coming (very) soon!

Profilbild von eric zakariasson
eric zakariassonvor 1 Jahr

we have lot's of ideas for new tools and capabilities to offer Agent. let us know if there's any you'd like to see! open a new composer and toggle it on with cmd/ctrl . or click

Profilbild von Tembo - Multi-Workload Managed Postgres
Tembo - Multi-Workload Managed Postgresvor 2 Jahren

It’d be cool if someone would make a specialized stack for each Postgres use case, with nice docs, perf comparisons, tutorials, etc - so you don’t have to leave Postgres :)

Profilbild von Alborz 🇨🇦
Alborz 🇨🇦vor 1 Jahr

Right now when I want answers to a question and when I need code change, I have to change from composer to chat which is annoying. This update should improve that workflow by a lot!

Ähnliche Videos

HERMES AGENT WITHOUT TOOLS IS A CHATBOT. WITH THEM IT BUILDS 3D TOWERS IN BLENDER, CHECKS STOCK PRICES, AND DRIVES VS CODE. tonbi JUST DROPPED THE FULL GUIDE. module 6 of his 10-part Hermes masterclass. best breakdown of the tool layer anyone has published. what you need to know: TOOLS vs SKILLS vs MCP skills = instructions (markdown, loaded into context) tools = callable functions (Python, agent emits call, Hermes executes) MCP = adapters to external systems (Blender, Stripe, Linear, Notion) every tool has three parts: → the function (does the real work) → the schema (what the model sees to decide when to call it) → the registry (makes the tool exist in the agent) the model never runs the function directly. it emits a structured request (tool name + JSON args). Hermes executes and returns the result. if the tool fails, the error goes back as JSON. the agent recovers instead of crashing. TOOL SETS CONTROL THE SURFACE hermes chat --tool-sets web # only web tools loaded. no files, no terminal. hermes chat --tool-sets safe # read-only: web search, vision, image gen. # no file writes. no terminal. no code execution. mid-session: /tools enable video /tools disable terminal or toggle in the dashboard: hermes dashboard → Skills → Tool Sets MCP SERVERS two transport types: STDIO (local subprocess) or HTTP (remote endpoint). add a server: hermes mcp # or ask: "add the MCP server for Blender" filter tools with include/exclude per server. keep only what you trust. security: → OAuth 2.1 PKCE (no long-lived tokens in config) → package scanning via api.osv. dev before launch → all MCP calls go through approval gates HERMES AS MCP SERVER hermes mcp serve exposes 10 tools via FastMCP. connect VS Code Copilot or Cursor to your running Hermes instance. BUILD YOUR OWN TOOL He built a stock price tool live: → Python function calling Finnhub API → schema with name, description, parameters → registered in tool_sets.py → agent calls it automatically when relevant any repeating API call in your workflow can become a native tool. full Hermes architecture deep-dive in the article 👇

YanXbt

32,680 Aufrufe • vor 1 Monat