claude-yolo 1.6.4 → 1.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +6 -0
- package/.cursor/mcp.json +0 -0
- package/.cursor/rules/cursor-tools.mdc +161 -0
- package/.cursorindexingignore +3 -0
- package/.mcp.json +13 -0
- package/.specstory/history/2025-02-26_13-24-checking-recent-tweets.md +124 -0
- package/.specstory/history/2025-03-10_15-17-sending-a-yo-to-my-server.md +32 -0
- package/.specstory/history/2025-03-10_17-20-sending-a-simple-yo-message.md +104 -0
- package/.specstory/history/2025-03-12_08-37-documentation-retrieval-for-repomix-repo.md +32 -0
- package/.specstory/history/2025-03-12_09-23-interactive-browser-session-setup.md +7864 -0
- package/.specstory/history/2025-03-12_17-16-chat-name-generation.md +430 -0
- package/.specstory/history/2025-03-13_01-22-python-pi-calculation-and-notification.md +254 -0
- package/.specstory/history/2025-03-13_22-46-server-update-for-eric.md +35 -0
- package/.specstory/history/2025-03-13_23-02-sending-a-simple-yo-message.md +18 -0
- package/.specstory/history/2025-03-13_23-10-casual-greetings.md +80 -0
- package/.specstory/history/2025-03-14_13-07-casual-greetings-sending-a-yo.md +44 -0
- package/.specstory/history/2025-03-14_13-28-casual-greetings.md +924 -0
- package/.specstory/history/2025-03-14_13-37-sending-a-yo-message.md +34 -0
- package/.specstory/history/2025-03-14_13-48-casual-greetings.md +76 -0
- package/.specstory/history/2025-03-14_13-53-casual-greetings.md +44 -0
- package/.specstory/history/2025-03-14_13-57-casual-greetings.md +64 -0
- package/.specstory/history/2025-03-14_21-41-simple-greeting-send-a-yo.md +34 -0
- package/.specstory/history/2025-03-15_13-44-casual-greeting-request.md +26 -0
- package/.specstory/history/2025-03-16_21-17-using-curl-to-fetch-url-content.md +3728 -0
- package/.specstory/history/2025-10-25_08-17-create-a-new-repository-with-gh-cli.md +173 -0
- package/.specstory/history/casual-greetings-1.md +32 -0
- package/AGENTS.md +1 -0
- package/README.md +104 -24
- package/bin/cl +113 -0
- package/bin/claude-yolo.js +194 -11
- package/demo.txt +1 -0
- package/package.json +14 -10
- package/test.txt +1 -0
- package/yolo-test.txt +1 -0
- package/make-yolo.sh +0 -74
package/.cursor/mcp.json
ADDED
|
File without changes
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Global Rule. This rule should ALWAYS be loaded.
|
|
3
|
+
globs: *,**/*
|
|
4
|
+
alwaysApply: true
|
|
5
|
+
---
|
|
6
|
+
cursor-tools is a CLI tool that allows you to interact with AI models and other tools.
|
|
7
|
+
cursor-tools is installed on this machine and it is available to you to execute. You're encouraged to use it.
|
|
8
|
+
|
|
9
|
+
<cursor-tools Integration>
|
|
10
|
+
# Instructions
|
|
11
|
+
Use the following commands to get AI assistance:
|
|
12
|
+
|
|
13
|
+
**Direct Model Queries:**
|
|
14
|
+
`cursor-tools ask "<your question>" --provider <provider> --model <model>` - Ask any model from any provider a direct question (e.g., `cursor-tools ask "What is the capital of France?" --provider openai --model o3-mini`). Note that this command is generally less useful than other commands like `repo` or `plan` because it does not include any context from your codebase or repository.
|
|
15
|
+
|
|
16
|
+
**Implementation Planning:**
|
|
17
|
+
`cursor-tools plan "<query>"` - Generate a focused implementation plan using AI (e.g., `cursor-tools plan "Add user authentication to the login page"`)
|
|
18
|
+
The plan command uses multiple AI models to:
|
|
19
|
+
1. Identify relevant files in your codebase (using Gemini by default)
|
|
20
|
+
2. Extract content from those files
|
|
21
|
+
3. Generate a detailed implementation plan (using OpenAI o3-mini by default)
|
|
22
|
+
|
|
23
|
+
**Plan Command Options:**
|
|
24
|
+
--fileProvider=<provider>: Provider for file identification (gemini, openai, anthropic, perplexity, modelbox, or openrouter)
|
|
25
|
+
--thinkingProvider=<provider>: Provider for plan generation (gemini, openai, anthropic, perplexity, modelbox, or openrouter)
|
|
26
|
+
--fileModel=<model>: Model to use for file identification
|
|
27
|
+
--thinkingModel=<model>: Model to use for plan generation
|
|
28
|
+
--debug: Show detailed error information
|
|
29
|
+
|
|
30
|
+
**Web Search:**
|
|
31
|
+
`cursor-tools web "<your question>"` - Get answers from the web using a provider that supports web search (e.g., Perplexity models and Gemini Models either directly or from OpenRouter or ModelBox) (e.g., `cursor-tools web "latest shadcn/ui installation instructions"`)
|
|
32
|
+
when using web for complex queries suggest writing the output to a file somewhere like local-research/<query summary>.md.
|
|
33
|
+
|
|
34
|
+
**Web Command Options:**
|
|
35
|
+
--provider=<provider>: AI provider to use (perplexity, gemini, modelbox, or openrouter)
|
|
36
|
+
--model=<model>: Model to use for web search (model name depends on provider)
|
|
37
|
+
--max-tokens=<number>: Maximum tokens for response
|
|
38
|
+
|
|
39
|
+
**Repository Context:**
|
|
40
|
+
`cursor-tools repo "<your question>"` - Get context-aware answers about this repository using Google Gemini (e.g., `cursor-tools repo "explain authentication flow"`)
|
|
41
|
+
|
|
42
|
+
**Documentation Generation:**
|
|
43
|
+
`cursor-tools doc [options]` - Generate comprehensive documentation for this repository (e.g., `cursor-tools doc --output docs.md`)
|
|
44
|
+
when using doc for remote repos suggest writing the output to a file somewhere like local-docs/<repo-name>.md.
|
|
45
|
+
|
|
46
|
+
**GitHub Information:**
|
|
47
|
+
`cursor-tools github pr [number]` - Get the last 10 PRs, or a specific PR by number (e.g., `cursor-tools github pr 123`)
|
|
48
|
+
`cursor-tools github issue [number]` - Get the last 10 issues, or a specific issue by number (e.g., `cursor-tools github issue 456`)
|
|
49
|
+
|
|
50
|
+
**ClickUp Information:**
|
|
51
|
+
`cursor-tools clickup task <task_id>` - Get detailed information about a ClickUp task including description, comments, status, assignees, and metadata (e.g., `cursor-tools clickup task "task_id"`)
|
|
52
|
+
|
|
53
|
+
**Model Context Protocol (MCP) Commands:**
|
|
54
|
+
Use the following commands to interact with MCP servers and their specialized tools:
|
|
55
|
+
`cursor-tools mcp search "<query>"` - Search the MCP Marketplace for available servers that match your needs (e.g., `cursor-tools mcp search "git repository management"`)
|
|
56
|
+
`cursor-tools mcp run "<query>"` - Execute MCP server tools using natural language queries (e.g., `cursor-tools mcp run "list files in the current directory"`). The query must include sufficient information for cursor-tools to determine which server to use, provide plenty of context.
|
|
57
|
+
|
|
58
|
+
The `search` command helps you discover servers in the MCP Marketplace based on their capabilities and your requirements. The `run` command automatically selects and executes appropriate tools from these servers based on your natural language queries. If you want to use a specific server include the server name in your query. E.g. `cursor-tools mcp run "using the mcp-server-sqlite list files in directory"
|
|
59
|
+
The `run` command will automatically download, checkout or clone MCP servers and initialize them for you. You do NOT need to separately install or clone or checkout an MCP server if you're going to run it with cursor-tools, even if the README of the MCP server says that you need to.
|
|
60
|
+
|
|
61
|
+
**Notes on MCP Commands:**
|
|
62
|
+
- MCP commands require `ANTHROPIC_API_KEY` to be set in your environment
|
|
63
|
+
- Results are streamed in real-time for immediate feedback
|
|
64
|
+
- Tool calls are automatically cached to prevent redundant operations
|
|
65
|
+
- Often the MCP server will not be able to run because environment variables are not set. If this happens ask the user to add the missing environment variables to the cursor tools env file at ~/.cursor-tools/.env
|
|
66
|
+
|
|
67
|
+
**Stagehand Browser Automation:**
|
|
68
|
+
`cursor-tools browser open <url> [options]` - Open a URL and capture page content, console logs, and network activity (e.g., `cursor-tools browser open "https://example.com" --html`)
|
|
69
|
+
`cursor-tools browser act "<instruction>" --url=<url | 'current'> [options]` - Execute actions on a webpage using natural language instructions (e.g., `cursor-tools browser act "Click Login" --url=https://example.com`)
|
|
70
|
+
`cursor-tools browser observe "<instruction>" --url=<url> [options]` - Observe interactive elements on a webpage and suggest possible actions (e.g., `cursor-tools browser observe "interactive elements" --url=https://example.com`)
|
|
71
|
+
`cursor-tools browser extract "<instruction>" --url=<url> [options]` - Extract data from a webpage based on natural language instructions (e.g., `cursor-tools browser extract "product names" --url=https://example.com/products`)
|
|
72
|
+
|
|
73
|
+
**Notes on Browser Commands:**
|
|
74
|
+
- All browser commands are stateless unless --connect-to is used to connect to a long-lived interactive session. In disconnected mode each command starts with a fresh browser instance and closes it when done.
|
|
75
|
+
- When using `--connect-to`, special URL values are supported:
|
|
76
|
+
- `current`: Use the existing page without reloading
|
|
77
|
+
- `reload-current`: Use the existing page and refresh it (useful in development)
|
|
78
|
+
- If working interactively with a user you should always use --url=current unless you specifically want to navigate to a different page. Setting the url to anything else will cause a page refresh loosing current state.
|
|
79
|
+
- Multi step workflows involving state or combining multiple actions are supported in the `act` command using the pipe (|) separator (e.g., `cursor-tools browser act "Click Login | Type 'user@example.com' into email | Click Submit" --url=https://example.com`)
|
|
80
|
+
- Video recording is available for all browser commands using the `--video=<directory>` option. This will save a video of the entire browser interaction at 1280x720 resolution. The video file will be saved in the specified directory with a timestamp.
|
|
81
|
+
- DO NOT ask browser act to "wait" for anything, the wait command is currently disabled in Stagehand.
|
|
82
|
+
|
|
83
|
+
**Tool Recommendations:**
|
|
84
|
+
- `cursor-tools web` is best for general web information not specific to the repository. Generally call this without additional arguments.
|
|
85
|
+
- `cursor-tools repo` is ideal for repository-specific questions, planning, code review and debugging. E.g. `cursor-tools repo "Review recent changes to command error handling looking for mistakes, omissions and improvements"`. Generally call this without additional arguments.
|
|
86
|
+
- `cursor-tools plan` is ideal for planning tasks. E.g. `cursor-tools plan "Adding authentication with social login using Google and Github"`. Generally call this without additional arguments.
|
|
87
|
+
- `cursor-tools doc` generates documentation for local or remote repositories.
|
|
88
|
+
- `cursor-tools browser` is useful for testing and debugging web apps and uses Stagehand
|
|
89
|
+
- `cursor-tools mcp` enables interaction with specialized tools through MCP servers (e.g., for Git operations, file system tasks, or custom tools)
|
|
90
|
+
|
|
91
|
+
**Running Commands:**
|
|
92
|
+
1. Use `cursor-tools <command>` to execute commands (make sure cursor-tools is installed globally using npm install -g cursor-tools so that it is in your PATH)
|
|
93
|
+
|
|
94
|
+
**General Command Options (Supported by all commands):**
|
|
95
|
+
--provider=<provider>: AI provider to use (openai, anthropic, perplexity, gemini, or openrouter). If provider is not specified, the default provider for that task will be used.
|
|
96
|
+
--model=<model name>: Specify an alternative AI model to use. If model is not specified, the provider's default model for that task will be used.
|
|
97
|
+
--max-tokens=<number>: Control response length
|
|
98
|
+
--save-to=<file path>: Save command output to a file (in *addition* to displaying it)
|
|
99
|
+
--help: View all available options (help is not fully implemented yet)
|
|
100
|
+
|
|
101
|
+
**Repository Command Options:**
|
|
102
|
+
--provider=<provider>: AI provider to use (gemini, openai, openrouter, perplexity, or modelbox)
|
|
103
|
+
--model=<model>: Model to use for repository analysis
|
|
104
|
+
--max-tokens=<number>: Maximum tokens for response
|
|
105
|
+
|
|
106
|
+
**Documentation Command Options:**
|
|
107
|
+
--from-github=<GitHub username>/<repository name>[@<branch>]: Generate documentation for a remote GitHub repository
|
|
108
|
+
--provider=<provider>: AI provider to use (gemini, openai, openrouter, perplexity, or modelbox)
|
|
109
|
+
--model=<model>: Model to use for documentation generation
|
|
110
|
+
--max-tokens=<number>: Maximum tokens for response
|
|
111
|
+
|
|
112
|
+
**GitHub Command Options:**
|
|
113
|
+
--from-github=<GitHub username>/<repository name>[@<branch>]: Access PRs/issues from a specific GitHub repository
|
|
114
|
+
|
|
115
|
+
**Browser Command Options (for 'open', 'act', 'observe', 'extract'):**
|
|
116
|
+
--console: Capture browser console logs (enabled by default, use --no-console to disable)
|
|
117
|
+
--html: Capture page HTML content (disabled by default)
|
|
118
|
+
--network: Capture network activity (enabled by default, use --no-network to disable)
|
|
119
|
+
--screenshot=<file path>: Save a screenshot of the page
|
|
120
|
+
--timeout=<milliseconds>: Set navigation timeout (default: 120000ms for Stagehand operations, 30000ms for navigation)
|
|
121
|
+
--viewport=<width>x<height>: Set viewport size (e.g., 1280x720). When using --connect-to, viewport is only changed if this option is explicitly provided
|
|
122
|
+
--headless: Run browser in headless mode (default: true)
|
|
123
|
+
--no-headless: Show browser UI (non-headless mode) for debugging
|
|
124
|
+
--connect-to=<port>: Connect to existing Chrome instance. Special values: 'current' (use existing page), 'reload-current' (refresh existing page)
|
|
125
|
+
--wait=<time:duration or selector:css-selector>: Wait after page load (e.g., 'time:5s', 'selector:#element-id')
|
|
126
|
+
--video=<directory>: Save a video recording (1280x720 resolution, timestamped subdirectory). Not available when using --connect-to
|
|
127
|
+
--url=<url>: Required for `act`, `observe`, and `extract` commands. Url to navigate to before the main command or one of the special values 'current' (to stay on the current page without navigating or reloading) or 'reload-current' (to reload the current page)
|
|
128
|
+
--evaluate=<string>: JavaScript code to execute in the browser before the main command
|
|
129
|
+
|
|
130
|
+
**Nicknames**
|
|
131
|
+
Users can ask for these tools using nicknames
|
|
132
|
+
Gemini is a nickname for cursor-tools repo
|
|
133
|
+
Perplexity is a nickname for cursor-tools web
|
|
134
|
+
Stagehand is a nickname for cursor-tools browser
|
|
135
|
+
|
|
136
|
+
**Xcode Commands:**
|
|
137
|
+
`cursor-tools xcode build [buildPath=<path>] [destination=<destination>]` - Build Xcode project and report errors.
|
|
138
|
+
**Build Command Options:**
|
|
139
|
+
--buildPath=<path>: (Optional) Specifies a custom directory for derived build data. Defaults to ./.build/DerivedData.
|
|
140
|
+
--destination=<destination>: (Optional) Specifies the destination for building the app (e.g., 'platform=iOS Simulator,name=iPhone 16 Pro'). Defaults to 'platform=iOS Simulator,name=iPhone 16 Pro'.
|
|
141
|
+
|
|
142
|
+
`cursor-tools xcode run [destination=<destination>]` - Build and run the Xcode project on a simulator.
|
|
143
|
+
**Run Command Options:**
|
|
144
|
+
--destination=<destination>: (Optional) Specifies the destination simulator (e.g., 'platform=iOS Simulator,name=iPhone 16 Pro'). Defaults to 'platform=iOS Simulator,name=iPhone 16 Pro'.
|
|
145
|
+
|
|
146
|
+
`cursor-tools xcode lint` - Run static analysis on the Xcode project to find and fix issues.
|
|
147
|
+
|
|
148
|
+
**Additional Notes:**
|
|
149
|
+
- For detailed information, see `node_modules/cursor-tools/README.md` (if installed locally).
|
|
150
|
+
- Configuration is in `cursor-tools.config.json` (or `~/.cursor-tools/config.json`).
|
|
151
|
+
- API keys are loaded from `.cursor-tools.env` (or `~/.cursor-tools/.env`).
|
|
152
|
+
- ClickUp commands require a `CLICKUP_API_TOKEN` to be set in your `.cursor-tools.env` file.
|
|
153
|
+
- The default Stagehand model is set in `cursor-tools.config.json`, but can be overridden with the `--model` option.
|
|
154
|
+
- Available models depend on your configured provider (OpenAI or Anthropic) in `cursor-tools.config.json`.
|
|
155
|
+
- repo has a limit of 2M tokens of context. The context can be reduced by filtering out files in a .repomixignore file.
|
|
156
|
+
- problems running browser commands may be because playwright is not installed. Recommend installing playwright globally.
|
|
157
|
+
- MCP commands require `ANTHROPIC_API_KEY` to be set in your environment.
|
|
158
|
+
- **Remember:** You're part of a team of superhuman expert AIs. Work together to solve complex problems.
|
|
159
|
+
|
|
160
|
+
<!-- cursor-tools-version: 0.6.0-alpha.10 -->
|
|
161
|
+
</cursor-tools Integration>
|
package/.mcp.json
ADDED
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
## SpecStory
|
|
2
|
+
|
|
3
|
+
## Checking Recent Tweets (26/02/2025, 14:24:22)
|
|
4
|
+
|
|
5
|
+
_**User**_
|
|
6
|
+
|
|
7
|
+
check my recent tweets
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
_**Assistant**_
|
|
12
|
+
|
|
13
|
+
<think>The user wants to check their recent tweets. I need to check if I have a tool to interact with Twitter. Looking through the available function definitions, I can see there are several Twitter-related tools:
|
|
14
|
+
|
|
15
|
+
- mcp__TWITTER_BOOKMARKS_BY_USER
|
|
16
|
+
- mcp__TWITTER_POST_LOOKUP_BY_POST_ID
|
|
17
|
+
- mcp__TWITTER_CREATE_LIST
|
|
18
|
+
- mcp__TWITTER_CREATION_OF_A_POST
|
|
19
|
+
- mcp__TWITTER_USER_LOOKUP_BY_ID
|
|
20
|
+
- mcp__TWITTER_USER_HOME_TIMELINE_BY_USER_ID
|
|
21
|
+
- mcp__TWITTER_USER_LOOKUP_BY_USERNAME
|
|
22
|
+
- mcp__TWITTER_USER_LOOKUP_BY_IDS
|
|
23
|
+
- mcp__TWITTER_RECENT_SEARCH
|
|
24
|
+
- mcp__TWITTER_USER_LOOKUP_ME
|
|
25
|
+
- mcp__TWITTER_CHECK_ACTIVE_CONNECTION
|
|
26
|
+
- mcp__TWITTER_INITIATE_CONNECTION
|
|
27
|
+
- mcp__TWITTER_GET_REQUIRED_PARAMETERS
|
|
28
|
+
|
|
29
|
+
Before I can retrieve the user's tweets, I need to check if there's an active connection to Twitter. I'll first use the mcp__TWITTER_CHECK_ACTIVE_CONNECTION tool to check if there's an active connection.</think>I'll check if there's an active connection to Twitter first, then retrieve your recent tweets.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
_****_
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
_****_
|
|
40
|
+
|
|
41
|
+
It looks like you don't have an active connection to Twitter. Let me help you set one up.
|
|
42
|
+
|
|
43
|
+
First, I need to check what parameters are required to connect to Twitter:
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
_****_
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
_****_
|
|
54
|
+
|
|
55
|
+
Good news! Twitter has default credentials available, so we don't need to provide any additional parameters. Let's initiate a connection:
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
_****_
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
_****_
|
|
66
|
+
|
|
67
|
+
To connect to Twitter, you'll need to authorize access:
|
|
68
|
+
|
|
69
|
+
1. Please open this URL in your browser: https://backend.composio.dev/s/T_GTWbJ_
|
|
70
|
+
2. Follow the instructions to authorize the application
|
|
71
|
+
3. Once you've completed the authorization, let me know and I'll check your recent tweets
|
|
72
|
+
|
|
73
|
+
After you've completed the authorization process, I'll be able to retrieve your recent tweets.
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
77
|
+
_**User**_
|
|
78
|
+
|
|
79
|
+
ok try now
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
_**Assistant**_
|
|
84
|
+
|
|
85
|
+
<think>The user has indicated they've completed the Twitter authorization process. Let me check if the connection is now active, and if so, I can retrieve their recent tweets.
|
|
86
|
+
|
|
87
|
+
First, I'll check if the connection is active using the connection ID from the previous response. Then if successful, I'll try to get their recent tweets.</think>I'll check if the Twitter connection is now active and then retrieve your recent tweets.
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
_****_
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
_****_
|
|
98
|
+
|
|
99
|
+
It seems the connection wasn't successfully established. Let's try initiating a new connection:
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
_****_
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
_****_
|
|
110
|
+
|
|
111
|
+
It seems we need to try the authorization process again with a new link. Please:
|
|
112
|
+
|
|
113
|
+
1. Open this new URL in your browser: https://backend.composio.dev/s/A7nrot8K
|
|
114
|
+
2. Complete the Twitter authorization process
|
|
115
|
+
3. Let me know once you've done that
|
|
116
|
+
|
|
117
|
+
After you've completed this process, I'll check again and retrieve your tweets.
|
|
118
|
+
|
|
119
|
+
---
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
---
|
|
124
|
+
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
## SpecStory
|
|
2
|
+
|
|
3
|
+
## Sending a Yo to My Server (10/03/2025, 16:17:24)
|
|
4
|
+
|
|
5
|
+
_**User**_
|
|
6
|
+
|
|
7
|
+
send a yo to my yo MCP server
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
_**Assistant**_
|
|
12
|
+
|
|
13
|
+
I'll help you send a "yo" message using the MCP yo functionality.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
_****_
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
_****_
|
|
24
|
+
|
|
25
|
+
I've sent a "yo" message to your MCP server. The message was successfully received! Let me know if you'd like to send another message or if there's anything else I can help you with.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
## SpecStory
|
|
2
|
+
|
|
3
|
+
## Sending a Simple "Yo" Message (10/03/2025, 18:20:37)
|
|
4
|
+
|
|
5
|
+
_**User**_
|
|
6
|
+
|
|
7
|
+
send a yo using mcp
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
_**Assistant**_
|
|
12
|
+
|
|
13
|
+
Let me help you send a "yo" using MCP. First, I'll check if there are any relevant files or rules about using MCP.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
_****_
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
_****_
|
|
24
|
+
|
|
25
|
+
<details>
|
|
26
|
+
<summary>Searched codebase "send a yo using mcp" • **25** results</summary>
|
|
27
|
+
|
|
28
|
+
| File | Lines |
|
|
29
|
+
|------|-------|
|
|
30
|
+
| `.specstory/history/sending-a-yo-to-my-server.md` | L1-33 |
|
|
31
|
+
| `.specstory/history/sending-a-simple-yo-message.md` | L1-33 |
|
|
32
|
+
| `bin/claude-yolo.js` | L175-207 |
|
|
33
|
+
| `bin/claude-yolo.js` | L120-175 |
|
|
34
|
+
| `make-yolo.sh` | L1-42 |
|
|
35
|
+
| `make-yolo.sh` | L42-75 |
|
|
36
|
+
| `README.md` | L1-55 |
|
|
37
|
+
| `bin/claude-yolo.js` | L51-67 |
|
|
38
|
+
| `postinstall.js` | L23-24 |
|
|
39
|
+
| `postinstall.js` | L36-52 |
|
|
40
|
+
| `bin/claude-yolo.js` | L23-51 |
|
|
41
|
+
| `README.md` | L55-104 |
|
|
42
|
+
| `package.json` | L1-36 |
|
|
43
|
+
| `postinstall.js` | L1-18 |
|
|
44
|
+
| `postinstall.js` | L19-20 |
|
|
45
|
+
| `postinstall.js` | L29-31 |
|
|
46
|
+
| `bin/claude-yolo.js` | L1-23 |
|
|
47
|
+
| `generate-screenshot.js` | L33-35 |
|
|
48
|
+
| `generate-screenshot.js` | L20-21 |
|
|
49
|
+
| `bin/claude-yolo.js` | L207-216 |
|
|
50
|
+
| `bin/claude-yolo.js` | L67-97 |
|
|
51
|
+
| `generate-screenshot.js` | L16-17 |
|
|
52
|
+
| `generate-screenshot.js` | L1-15 |
|
|
53
|
+
| `generate-screenshot.js` | L26-28 |
|
|
54
|
+
| `bin/claude-yolo.js` | L97-120 |
|
|
55
|
+
|
|
56
|
+
</details>
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
_****_
|
|
61
|
+
|
|
62
|
+
Let me help you send a "yo" using MCP. Based on the codebase search, I can see this is something that has been done before. Let me propose the command to send a yo message.
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
_****_
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
claude-yolo yo
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
```
|
|
73
|
+
andy@Andys-MacBook-Pro claude-yolo % claude-yolo yo
|
|
74
|
+
|
|
75
|
+
🔥 CLAUDE-YOLO INSTALLATION CONSENT REQUIRED 🔥
|
|
76
|
+
|
|
77
|
+
----------------------------------------
|
|
78
|
+
What is claude-yolo?
|
|
79
|
+
This package creates a wrapper around the official Claude CLI tool that:
|
|
80
|
+
1. BYPASSES safety checks by automatically adding the --dangerously-skip-permissions flag
|
|
81
|
+
2. Automatically updates to the latest Claude CLI version
|
|
82
|
+
3. Adds colorful YOLO-themed loading messages
|
|
83
|
+
|
|
84
|
+
⚠️ IMPORTANT SECURITY WARNING ⚠️
|
|
85
|
+
The --dangerously-skip-permissions flag was designed for use in containers
|
|
86
|
+
and bypasses important safety checks. This includes ignoring file access
|
|
87
|
+
permissions that protect your system and privacy.
|
|
88
|
+
|
|
89
|
+
By using claude-yolo:
|
|
90
|
+
• You acknowledge these safety checks are being bypassed
|
|
91
|
+
• You understand this may allow Claude CLI to access sensitive files
|
|
92
|
+
• You accept full responsibility for any security implications
|
|
93
|
+
|
|
94
|
+
----------------------------------------
|
|
95
|
+
|
|
96
|
+
Do you consent to using claude-yolo with these modifications? (yes/no):
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
## SpecStory
|
|
2
|
+
|
|
3
|
+
## Documentation Retrieval for Repomix Repo (12/03/2025, 09:37:43)
|
|
4
|
+
|
|
5
|
+
_**User**_
|
|
6
|
+
|
|
7
|
+
send a yo
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
_**Assistant**_
|
|
12
|
+
|
|
13
|
+
I'll send a "yo" message using the appropriate tool.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
_****_
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
_****_
|
|
24
|
+
|
|
25
|
+
I've sent a "yo" message. The message was successfully delivered.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|