docs: apply fleet-template (16-artifact scaffold)
Adds missing standard artifacts: - README.md (if missing) - AGENTS.md (AI agent contract) - PLAN.md (current sprint) - STATUS.md (where we are) - DEVELOPMENT.md (dev workflow) - DEPLOYMENT.md (deploy procedure) - TESTING.md (test strategy) - DECISIONS.md (ADR index + templates) - .github/CODEOWNERS - .github/workflows/ci.yml Preserves all existing artifacts. Refs: RugMunchMedia/fleet-template
This commit is contained in:
commit
47ba268131
310 changed files with 38429 additions and 0 deletions
54
smithery.yaml
Normal file
54
smithery.yaml
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
# Smithery configuration for Pry MCP server
|
||||
# https://smithery.ai/docs/config
|
||||
|
||||
startCommand:
|
||||
type: stdio
|
||||
configSchema:
|
||||
# JSON Schema defining the configuration for your MCP server
|
||||
type: object
|
||||
required:
|
||||
- pryApiUrl
|
||||
properties:
|
||||
pryApiUrl:
|
||||
type: string
|
||||
default: https://pry.dev
|
||||
description: Base URL of the Pry backend API
|
||||
pryApiKey:
|
||||
type: string
|
||||
description: Optional API key for private Pry instances
|
||||
commandFunction: |
|
||||
(config) => ({
|
||||
command: 'python3',
|
||||
args: ['-m', 'mcp_production'],
|
||||
env: {
|
||||
PRY_API_URL: config.pryApiUrl,
|
||||
PRY_API_KEY: config.pryApiKey || ''
|
||||
}
|
||||
})
|
||||
|
||||
buildCommand:
|
||||
type: script
|
||||
script: |
|
||||
pip install -e ".[dev]"
|
||||
|
||||
examples:
|
||||
- name: research_company
|
||||
description: Research a company website
|
||||
arguments:
|
||||
company_name: Anthropic
|
||||
website: https://anthropic.com
|
||||
|
||||
- name: compare_products
|
||||
description: Compare products across e-commerce sites
|
||||
arguments:
|
||||
product_query: wireless headphones
|
||||
sites:
|
||||
- amazon
|
||||
- walmart
|
||||
- target
|
||||
|
||||
- name: extract_contacts
|
||||
description: Extract contacts from a website
|
||||
arguments:
|
||||
url: https://example.com
|
||||
max_pages: 20
|
||||
Loading…
Add table
Add a link
Reference in a new issue