aidevops 2.80.1 → 2.82.0
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/README.md +68 -9
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -92,8 +92,8 @@ The result: AI agents that work *with* your development process, not around it.
|
|
|
92
92
|
### Agent Structure
|
|
93
93
|
|
|
94
94
|
- 18 primary agents (Plan+, Build+, SEO, WordPress, etc.)
|
|
95
|
-
-
|
|
96
|
-
-
|
|
95
|
+
- 536+ subagent markdown files organized by domain
|
|
96
|
+
- 141+ helper scripts in `.agent/scripts/`
|
|
97
97
|
- 41 slash commands for common workflows
|
|
98
98
|
|
|
99
99
|
<!-- AI-CONTEXT-END -->
|
|
@@ -487,7 +487,7 @@ aidevops implements proven agent design patterns identified by [Lance Martin (La
|
|
|
487
487
|
|
|
488
488
|
| Pattern | Description | aidevops Implementation |
|
|
489
489
|
|---------|-------------|------------------------|
|
|
490
|
-
| **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`,
|
|
490
|
+
| **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`, 141+ helper scripts |
|
|
491
491
|
| **Multi-Layer Action Space** | Few tools, push actions to computer | Per-agent MCP filtering (~12-20 tools each) |
|
|
492
492
|
| **Progressive Disclosure** | Load context on-demand | Subagent routing with content summaries, YAML frontmatter, read-on-demand |
|
|
493
493
|
| **Offload Context** | Write results to filesystem | `.agent-workspace/work/[project]/` for persistence |
|
|
@@ -717,7 +717,7 @@ These use direct API calls via curl, avoiding MCP server startup entirely:
|
|
|
717
717
|
- [Context7](https://context7.com/) - Real-time documentation access for thousands of libraries
|
|
718
718
|
- [Repomix](https://github.com/yamadashy/repomix) - Pack codebases into AI-friendly context
|
|
719
719
|
|
|
720
|
-
**Browser Automation** (6 tools, [benchmarked](#browser-automation)):
|
|
720
|
+
**Browser Automation** (6 tools + anti-detect stack, [benchmarked](#browser-automation)):
|
|
721
721
|
|
|
722
722
|
- [Playwright](https://playwright.dev/) - Fastest engine (0.9s form fill), parallel contexts, extensions, proxy (auto-installed)
|
|
723
723
|
- [dev-browser](https://github.com/nicholasgriffintn/dev-browser) - Persistent profile, stays logged in, ARIA snapshots, pairs with DevTools
|
|
@@ -727,6 +727,11 @@ These use direct API calls via curl, avoiding MCP server startup entirely:
|
|
|
727
727
|
- [Stagehand](https://github.com/browserbase/stagehand) - Natural language automation, self-healing selectors
|
|
728
728
|
- [Chrome DevTools MCP](https://github.com/nicholasgriffintn/chrome-devtools-mcp) - Companion: Lighthouse, network throttling, CSS coverage (pairs with any tool)
|
|
729
729
|
- [Cloudflare Browser Rendering](https://developers.cloudflare.com/browser-rendering/) - Server-side web scraping
|
|
730
|
+
- **Anti-Detect Stack** ([details](#anti-detect-browser)):
|
|
731
|
+
- [Camoufox](https://github.com/daijro/camoufox) (4.9k stars) - Firefox anti-detect, C++ fingerprint injection, WebRTC/Canvas/WebGL spoofing
|
|
732
|
+
- [rebrowser-patches](https://github.com/nicedayfor/rebrowser-patches) (1.2k stars) - Chromium CDP leak prevention, automation signal removal
|
|
733
|
+
- Multi-profile management - Persistent/clean/warm/disposable profiles (like AdsPower/GoLogin)
|
|
734
|
+
- Proxy integration - Residential, SOCKS5, VPN per profile with geo-targeting
|
|
730
735
|
|
|
731
736
|
**SEO & Research:**
|
|
732
737
|
|
|
@@ -801,7 +806,7 @@ These catch formatting and syntax issues during editing, reducing preflight/post
|
|
|
801
806
|
|
|
802
807
|
## **Browser Automation**
|
|
803
808
|
|
|
804
|
-
6 browser tools benchmarked and integrated for AI-assisted web automation, dev testing, and
|
|
809
|
+
6 browser tools + anti-detect stack, benchmarked and integrated for AI-assisted web automation, dev testing, data extraction, and bot detection evasion. Agents automatically select the optimal tool based on task requirements.
|
|
805
810
|
|
|
806
811
|
### Performance Benchmarks
|
|
807
812
|
|
|
@@ -839,6 +844,8 @@ Tested on macOS ARM64, all headless, warm daemon:
|
|
|
839
844
|
| **CLI/CI/CD** | agent-browser | No server needed, `--session` isolation |
|
|
840
845
|
| **Unknown pages** | Stagehand | Natural language, self-healing |
|
|
841
846
|
| **Performance debugging** | Chrome DevTools MCP | Companion tool, pairs with any browser |
|
|
847
|
+
| **Bot detection evasion** | Anti-detect stack | Camoufox (full) or rebrowser-patches (quick) |
|
|
848
|
+
| **Multi-account** | Browser profiles | Persistent fingerprint + proxy per account |
|
|
842
849
|
|
|
843
850
|
### AI Page Understanding
|
|
844
851
|
|
|
@@ -853,6 +860,57 @@ Agents use lightweight methods instead of expensive vision API calls:
|
|
|
853
860
|
|
|
854
861
|
See [`.agent/tools/browser/browser-automation.md`](.agent/tools/browser/browser-automation.md) for the full decision tree and [`browser-benchmark.md`](.agent/tools/browser/browser-benchmark.md) for reproducible benchmark scripts.
|
|
855
862
|
|
|
863
|
+
### Anti-Detect Browser
|
|
864
|
+
|
|
865
|
+
Open-source alternative to AdsPower, GoLogin, and OctoBrowser for multi-account automation and bot detection evasion.
|
|
866
|
+
|
|
867
|
+
**Architecture:**
|
|
868
|
+
|
|
869
|
+
```text
|
|
870
|
+
Layer 4: CAPTCHA Solving → CapSolver (existing)
|
|
871
|
+
Layer 3: Network Identity → Proxies (residential/SOCKS5/VPN per profile)
|
|
872
|
+
Layer 2: Browser Identity → Camoufox (C++ fingerprint injection)
|
|
873
|
+
Layer 1: Automation Stealth → rebrowser-patches (CDP leak prevention)
|
|
874
|
+
Layer 0: Browser Engine → Playwright (existing)
|
|
875
|
+
```
|
|
876
|
+
|
|
877
|
+
**Profile Types:**
|
|
878
|
+
|
|
879
|
+
| Type | Cookies | Fingerprint | Use Case |
|
|
880
|
+
|------|---------|-------------|----------|
|
|
881
|
+
| **Persistent** | Saved | Fixed per profile | Account management, stay logged in |
|
|
882
|
+
| **Clean** | None | Random each launch | Scraping, one-off tasks |
|
|
883
|
+
| **Warm** | Saved | Fixed | Pre-warmed accounts (browsing history) |
|
|
884
|
+
| **Disposable** | None | Random | Single-use, maximum anonymity |
|
|
885
|
+
|
|
886
|
+
**Quick Start:**
|
|
887
|
+
|
|
888
|
+
```bash
|
|
889
|
+
# Setup
|
|
890
|
+
anti-detect-helper.sh setup
|
|
891
|
+
|
|
892
|
+
# Create profile with proxy
|
|
893
|
+
anti-detect-helper.sh profile create "my-account" --type persistent --os macos
|
|
894
|
+
|
|
895
|
+
# Launch (Camoufox with auto-generated fingerprint)
|
|
896
|
+
anti-detect-helper.sh launch --profile "my-account" --headless
|
|
897
|
+
|
|
898
|
+
# Test detection (BrowserScan, SannyBot)
|
|
899
|
+
anti-detect-helper.sh test --profile "my-account"
|
|
900
|
+
|
|
901
|
+
# Warm up profile with browsing history
|
|
902
|
+
anti-detect-helper.sh warmup "my-account" --duration 30m
|
|
903
|
+
```
|
|
904
|
+
|
|
905
|
+
**Engine Selection:**
|
|
906
|
+
|
|
907
|
+
| Engine | Stealth Level | Speed | Best For |
|
|
908
|
+
|--------|---------------|-------|----------|
|
|
909
|
+
| **Camoufox** (Firefox) | High (C++ level) | Medium | Full anti-detect, fingerprint rotation |
|
|
910
|
+
| **rebrowser-patches** (Chromium) | Medium (CDP patches) | Fast | Quick stealth on existing Playwright code |
|
|
911
|
+
|
|
912
|
+
See [`.agent/tools/browser/anti-detect-browser.md`](.agent/tools/browser/anti-detect-browser.md) for the full decision tree and subagent index.
|
|
913
|
+
|
|
856
914
|
## **Repomix - AI Context Generation**
|
|
857
915
|
|
|
858
916
|
[Repomix](https://repomix.com/) packages your codebase into AI-friendly formats for sharing with AI assistants. This framework includes optimized Repomix configuration for consistent context generation.
|
|
@@ -1078,7 +1136,7 @@ aidevops is registered as a **Claude Code plugin marketplace**. Install with two
|
|
|
1078
1136
|
/plugin install aidevops@aidevops
|
|
1079
1137
|
```
|
|
1080
1138
|
|
|
1081
|
-
This installs the complete framework: 18 primary agents,
|
|
1139
|
+
This installs the complete framework: 18 primary agents, 536+ subagents, and 141+ helper scripts.
|
|
1082
1140
|
|
|
1083
1141
|
### Importing External Skills
|
|
1084
1142
|
|
|
@@ -1158,7 +1216,7 @@ Ordered as they appear in OpenCode Tab selector and other AI assistants (15 tota
|
|
|
1158
1216
|
|
|
1159
1217
|
### **Example Subagents with MCP Integration**
|
|
1160
1218
|
|
|
1161
|
-
These are examples of subagents that have supporting MCPs enabled. See `.agent/` for the full list of
|
|
1219
|
+
These are examples of subagents that have supporting MCPs enabled. See `.agent/` for the full list of 536+ subagents organized by domain.
|
|
1162
1220
|
|
|
1163
1221
|
| Agent | Purpose | MCPs Enabled |
|
|
1164
1222
|
|-------|---------|--------------|
|
|
@@ -1694,7 +1752,8 @@ bash .agent/scripts/continue-cli.sh review
|
|
|
1694
1752
|
**Agent Guides** (in `.agent/`):
|
|
1695
1753
|
|
|
1696
1754
|
- **[API Integrations](.agent/aidevops/api-integrations.md)** - Service APIs
|
|
1697
|
-
- **[Browser Automation](.agent/tools/browser/browser-automation.md)** - 6 tools
|
|
1755
|
+
- **[Browser Automation](.agent/tools/browser/browser-automation.md)** - 6 tools + anti-detect stack: decision tree, parallel, extensions, fingerprinting
|
|
1756
|
+
- **[Anti-Detect Browser](.agent/tools/browser/anti-detect-browser.md)** - Multi-profile management, fingerprint rotation, proxy integration
|
|
1698
1757
|
- **[PageSpeed](.agent/tools/browser/pagespeed.md)** - Performance auditing
|
|
1699
1758
|
- **[Pandoc](.agent/tools/conversion/pandoc.md)** - Document format conversion
|
|
1700
1759
|
- **[Security](.agent/aidevops/security.md)** - Enterprise security standards
|
|
@@ -1710,7 +1769,7 @@ aidevops/
|
|
|
1710
1769
|
├── .agent/ # Agents and documentation
|
|
1711
1770
|
│ ├── AGENTS.md # User guide (deployed to ~/.aidevops/agents/)
|
|
1712
1771
|
│ ├── *.md # 18 primary agents
|
|
1713
|
-
│ ├── scripts/ #
|
|
1772
|
+
│ ├── scripts/ # 141+ helper scripts
|
|
1714
1773
|
│ ├── tools/ # Cross-domain utilities (video, browser, git, etc.)
|
|
1715
1774
|
│ ├── services/ # External service integrations
|
|
1716
1775
|
│ └── workflows/ # Development process guides
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.82.0
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
package/setup.sh
CHANGED