Initial commit
This commit is contained in:
35
skills/browser-automation/setup.json
Normal file
35
skills/browser-automation/setup.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"setupComplete": false,
|
||||
"prerequisites": {
|
||||
"chrome": {
|
||||
"required": true,
|
||||
"installed": false,
|
||||
"description": "Google Chrome browser"
|
||||
},
|
||||
"dependencies": {
|
||||
"required": true,
|
||||
"installed": false,
|
||||
"description": "Node.js dependencies (npm install completed)"
|
||||
},
|
||||
"apiKey": {
|
||||
"required": true,
|
||||
"configured": false,
|
||||
"description": "ANTHROPIC_API_KEY exported (i.e $ANTHROPIC_API_KEY) or in .env file"
|
||||
},
|
||||
"browserCommand": {
|
||||
"required": true,
|
||||
"installed": false,
|
||||
"description": "Browser CLI command globally linked (npm link)"
|
||||
}
|
||||
},
|
||||
"setupInstructions": [
|
||||
"1. Run: npm install (this will automatically build TypeScript)",
|
||||
"2. Run: npm link (this creates the global 'browser' command)",
|
||||
"3. (RECOMMENDED) Export ANTHROPIC_API_KEY: export ANTHROPIC_API_KEY='your-api-key-here' (check if already exported)",
|
||||
" OR alternatively create .env file: cp .env.example .env and edit it to add your API key",
|
||||
"4. Ensure Google Chrome is installed on your system",
|
||||
"5. Test installation: browser navigate https://example.com",
|
||||
"6. Update this setup.json file: set all 'installed'/'configured' to true and 'setupComplete' to true"
|
||||
],
|
||||
"verifySetup": "Run 'browser navigate https://example.com' from any directory to verify installation"
|
||||
}
|
||||
Reference in New Issue
Block a user