{"id":33280936,"url":"https://github.com/sniff-dev/sniff","last_synced_at":"2025-11-20T16:03:42.898Z","repository":{"id":324206248,"uuid":"1096349475","full_name":"sniff-dev/sniff","owner":"sniff-dev","description":"Deploy AI agents to Linear in seconds - CLI, packages, and docs (MIT licensed)","archived":false,"fork":false,"pushed_at":"2025-11-17T11:27:51.000Z","size":987,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-17T13:03:49.876Z","etag":null,"topics":["ai-agents","anthropic","automation","claude","cli","developer-tools","linear","mcp","opensource","typescript"],"latest_commit_sha":null,"homepage":"https://sniff.to","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sniff-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-14T09:46:41.000Z","updated_at":"2025-11-17T11:26:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"3bc58357-f6e6-478e-a7f4-fddeccfcdcd6","html_url":"https://github.com/sniff-dev/sniff","commit_stats":null,"previous_names":["sniff-dev/sniff"],"tags_count":25,"template":false,"template_full_name":null,"purl":"pkg:github/sniff-dev/sniff","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sniff-dev%2Fsniff","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sniff-dev%2Fsniff/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sniff-dev%2Fsniff/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sniff-dev%2Fsniff/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sniff-dev","download_url":"https://codeload.github.com/sniff-dev/sniff/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sniff-dev%2Fsniff/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":285266783,"owners_count":27142235,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-19T02:00:05.673Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-agents","anthropic","automation","claude","cli","developer-tools","linear","mcp","opensource","typescript"],"created_at":"2025-11-17T13:00:15.885Z","updated_at":"2025-11-19T15:02:03.217Z","avatar_url":"https://github.com/sniff-dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sniff - Deploy AI Agents to Linear in Seconds\n\n\u003e CLI-first, configuration as code, developer-friendly\n\nDeploy production-ready AI agents to Linear with a simple CLI and YAML config. No infrastructure, no complexity.\n\n## Quick Start\n\n```bash\n# Install CLI\nnpm install -g @sniff-dev/cli\n\n# Log in and connect integrations\nsniff login\n\n# Create agent config\nsniff init\n\n# Deploy\nsniff deploy\n```\n\nDone. Your agent is now responding to Linear issues.\n\n## What It Does\n\nWhen a Linear issue is created or updated:\n\n1. **Agent receives webhook** → Sniff runtime processes it\n2. **Fetches issue details** → Via OAuth proxy\n3. **Analyzes with Claude** → Sends issue data to Anthropic\n4. **Responds in Linear** → Posts agent response as comment\n\n## Project Structure\n\nThis is a monorepo containing the open-source CLI tools and shared packages:\n\n```\nsniff/\n├── packages/\n│   ├── cli/                # @sniff-dev/cli - Command-line interface\n│   ├── shared/             # @sniff-dev/shared - Shared TypeScript types\n│   └── config/             # @sniff-dev/config - Config validation\n├── docs/                   # Documentation (Mintlify)\n└── examples/               # Example agent configurations\n```\n\nThe backend API and web dashboard are hosted at [sniff.to](https://sniff.to).\n\n## Configuration\n\nDefine your agent in `config.yml`:\n\n```yaml\nversion: '1.0'\n\nagent:\n  id: 'triage-bot'\n  name: 'Triage Assistant'\n\n  system_prompt: |\n    You are a triage specialist for an engineering team.\n\n    When a new issue is created:\n    1. Classify as: bug, feature, question, or task\n    2. Set priority: P0 (critical), P1 (high), P2 (medium), P3 (low)\n    3. Provide clear reasoning\n\n    Be concise but thorough.\n\n  model:\n    anthropic:\n      name: 'claude-3-5-sonnet-20241022'\n      temperature: 0.7\n      max_tokens: 2000\n```\n\n**To update:** Edit config, run `sniff deploy`. That's it.\n\n## CLI Commands\n\n```bash\n# Authentication\nsniff login             # Log in to Sniff\nsniff logout            # Log out\n\n# Connections\nsniff connect linear    # Connect Linear workspace via OAuth\nsniff connect anthropic  # Connect Anthropic API key\nsniff connect github    # Connect GitHub\n\n# Agent Management\nsniff init [name]       # Create config.yml template\nsniff deploy            # Deploy/update agent\nsniff deploy --dry-run  # Validate config without deploying\nsniff list              # List all deployed agents\nsniff remove [agent]    # Remove deployed agent\n```\n\n## Examples\n\nSee [examples/](examples/) directory for real-world agent configurations:\n\n- **Triage Agent** - Auto-classify and prioritize issues\n- **Docs Search** - Answer questions by searching documentation\n- **Release Notes** - Generate user-friendly release notes\n- **Similar Issue Finder** - Find duplicates and related issues\n- **Sprint Planning** - Estimate effort and detect dependencies\n- **Technical Support** - Answer questions using docs and past tickets\n\n## Contributing\n\nContributions are welcome! This repo contains the CLI and shared packages.\n\n### Development Setup\n\n```bash\n# Install dependencies\npnpm install\n\n# Build packages\npnpm build\n\n# Test CLI locally\ncd packages/cli\npnpm dev --help\n```\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for more details.\n\n## License\n\nMIT\n\n## Support\n\n- **Documentation**: [docs.sniff.to](https://docs.sniff.to)\n- **Discord**: [discord.gg/huk9sSQCJA](https://discord.gg/huk9sSQCJA)\n- **Issues**: [github.com/sniff-dev/sniff/issues](https://github.com/sniff-dev/sniff/issues)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsniff-dev%2Fsniff","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsniff-dev%2Fsniff","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsniff-dev%2Fsniff/lists"}