Commit aab9834
sync: release v1.7.8 orchestration stabilization (#26)
* fix: use NPM OIDC trusted publisher instead of token
The publish workflow was failing with NODE_AUTH_TOKEN empty because
the token-based publish is deprecated in favor of NPM OIDC trusted
publishers. Fix:
- Remove NODE_AUTH_TOKEN env var (conflicts with OIDC)
- Upgrade npm to latest (>=11.5.1) for OIDC publishing support
- Keep id-token: write permission and --provenance flag
NPM trusted publisher is already configured on npmjs.com for this
repo. OIDC federates identity from GitHub Actions → NPM, eliminating
the need for long-lived tokens.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: Output Gates + fix skill deduplication (#32)
## Output Gates (Bash Validation)
- Parse optional `## Output Gate` section from sub-agent directives
- Emit `validation_gate` with bash command in dispatch manifests
- Orchestrator must run gate and trust stdout over self-reports
- Retry-once-then-user-prompt on failure
- All 6 sub-agent directives wired with gates
- Scenario 11 test added
## Skill Deduplication Fix
- Resolved 13 skill name conflicts in templates/skills/
- Deleted 4 exact-duplicate folders (xlsx, pdf, docx, pptx)
- Fixed 2 mislabeled frontmatter (systematic-debugging, plan-writing)
- Removed 7 cross-source duplicates (superpowers-lab, cross-tier)
- Added deduplicateSkills() post-install validator to init.js
* feat: validate_gate.py, /agi router scripts, new skills, catalog sync (#44)
* feat(gates): add standalone validate_gate.py and wire asset_compiler gate (closes #33)
- Implemented standalone Python validator for Output Gates
- Added Output Gate to asset_compiler.md
- Verified scenario 11 passes
- Note: PR #32 wired docs and test_generator, this finishes the remaining file-verifiable agents.
* feat: add /agi router scripts, image-ai-generator + resend skills, sync skill catalog
- execution/list_capabilities.py — enumerate installed skills + execution scripts
- execution/resolve_paths.py — dual-path resolution for global/local installs
- execution/route_request.py — route user requests to matching skills/scripts
- skills/image-ai-generator/ — new skill for AI image generation workflows
- skills/resend/ — new skill for Resend email API integration
- skills/SKILLS_CATALOG.md + templates/skills/extended/ — full catalog sync (371 files)
Partial work toward #34 (/agi unified router)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* fix: wire resolve_paths into dispatch_agent_team.py for dual-path resolution
dispatch_agent_team.py now imports resolve_file/get_project_root from
resolve_paths.py (with graceful fallback for standalone use), replacing
the inline find_project_root() implementation. Part of #34.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
* feat: per-run state.json emission + lightweight team-run dashboard (#43)
* Initial plan
* feat: state.json emission from dispatch_agent_team.py + lightweight dashboard
- Add execution/team_state.py: helper with update/read/list-active/prune subcommands
- Emit .tmp/team-runs/<run_id>/state.json on every team dispatch
- Update orchestrator instructions to mandate state.json updates per step
- Add dashboard/server.py + dashboard/index.html (vanilla HTML, auto-refresh 2s)
- Update session_wrapup.py to prune old state files via team_state.py prune
- Add scenario 12 (state-observability) to run_test_scenario.py
- Fix store_to_memory warnings to go to stderr (not stdout)
Agent-Logs-Url: https://github.com/techwavedev/agi/sessions/ab84de26-8f2d-4071-857b-242dede7a2ac
Co-authored-by: techwavedev <36747067+techwavedev@users.noreply.github.com>
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: techwavedev <36747067+techwavedev@users.noreply.github.com>
* feat: hybrid knowledge base (Qdrant RAG + markdown fallback) (#42)
* Initial plan
* feat: implement hybrid knowledge base persistence (Qdrant RAG + markdown fallback)
Agent-Logs-Url: https://github.com/techwavedev/agi/sessions/935b8d91-1b8c-4e34-87d8-b20fc8ae7487
Co-authored-by: techwavedev <36747067+techwavedev@users.noreply.github.com>
* fix: address code review - use SHA-256 for deterministic UUIDs, move imports to module level
Agent-Logs-Url: https://github.com/techwavedev/agi/sessions/935b8d91-1b8c-4e34-87d8-b20fc8ae7487
Co-authored-by: techwavedev <36747067+techwavedev@users.noreply.github.com>
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: techwavedev <36747067+techwavedev@users.noreply.github.com>
* fix: resolve dispatch_agent_team.py post-merge issues
- find_project_root() → get_project_root() (resolve_paths import)
- load_team_directive: drop unused root param, update call site
- _load_team_state: guard against spec=None before module_from_spec
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* feat: Workflow Engine — execute guided multi-skill playbooks (#45)
* Initial plan
* feat: Workflow Engine — execute guided multi-skill playbooks
Agent-Logs-Url: https://github.com/techwavedev/agi/sessions/b1bbb8dc-3c5f-4c65-88c7-d87b2e093b8d
Co-authored-by: techwavedev <36747067+techwavedev@users.noreply.github.com>
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: techwavedev <36747067+techwavedev@users.noreply.github.com>
* feat: implement phase-reset architecture and dynamic team composition
* feat: complete global install mode via init.js and dual-path scripts
* feat: implement skill trigger evaluation (#40)
* feat: MoE Swarm Router (NotebookLM Implementation) (#47)
* release: bump version to 1.7.4
* feat(swarm): implement MoE Swarm Router logic for parallel task execution (Closes #46)
* fix(swarm): direct orchestrator handoff and qdrant memory cache hit implementation (#48)
* feat(swarm): inject qdrant context chunks as RAG payload to save tokens (#49)
* feat(gems): create gem factory to build shareable gems and skills (#50)
* feat(eval): implement autonomous ralph feedback loop using local engine (#51)
* feat: core mempalace integration (#57)
- Adds AAAK compression and original payload preservation (closes #52)
- Adds temporal --expire-days filtering (closes #53)
* feat: implement local micro agent pre-store contradiction check (closes #54) (#58)
- Adds point_id extraction to memory chunks
- Hooks local_micro_agent.py dynamically to evaluate conflicting ledger facts
* fix: hybrid_search raw filter pass-through for complex queries (closes #55) (#59)
- Removes restrictive keyword payload matching
- Pipes full Qdrant logic including must_not range conditions
* feat: script to delete un-scoped legacy qdrant items (closes #56) (#60)
* feat: transparent cloud fallback for deterministic agent routing (closes #61) (#62)
- Adds REST execution pathways for gemini-1.5-flash, claude-3-haiku, and gpt-4o-mini
- Automatically parses API keys from local environment bypassing heavy-weight ollama dependencies
* docs: generate marketing release and bump patch to 1.7.5 for mempalace upgrade
* fix: payload passthrough for wing/room/original_text/valid_until in retrieval pipeline
Root cause: hybrid_search._vector_search() and memory_retrieval.retrieve_context()
were both hardcoded to cherry-pick only content/type/project/tags/timestamp from
Qdrant payload results. All spatial, temporal, and zero-loss fields were silently
dropped. Also fixed retrieve command threshold default (0.7 -> 0.45) and removed
stale imports causing UnboundLocalError in contradiction resolver.
* chore: code cleanup, docs update, and safety improvements
- Remove orphaned docstring in local_micro_agent.py run_inference()
- Hoist stale inner imports (time, urllib) to module-level in memory_manager.py
- Move dev-only benchmark/cleanup scripts to .tmp/dev-tools/
- Add dry-run default + --force flag to sweep_legacy_memory.py
- Add docs/execution/memory_manager.md (spatial, AAAK, temporal, contradiction)
- Update docs/execution/local_micro_agent.md with cloud fallback chain
- Update CHANGELOG.md with all v1.7.5 bugfixes from live testing
* fix: complete contradiction resolver pipeline
Two root causes prevented contradiction resolution from working:
1. Empty query string in retrieve_context() produced zero-score vectors
that fell below threshold, so no existing facts were ever found.
Fix: use the new content as the search query.
2. Deprecated facts (valid_until set) were never filtered during search.
Fix: add must_not range filter in hybrid_search._vector_search() to
auto-exclude points where valid_until <= current time.
* fix: BM25 results now respect Qdrant payload filters (project/wing/room)
BM25 (SQLite FTS5) has no concept of Qdrant payload filters, so unscoped
results leaked into hybrid search when: 1) BM25-only results merged into
vector results without validation, and 2) the BM25-only fallback path
(when vector returns 0) returned results without any filter check.
Fix: Both paths now validate each BM25-only result against Qdrant via
a point lookup before including it. Also fixed the merge path to pass
wing/room/original_text/valid_until through the merged result dict.
* fix(memory): stabilize architecture and resolve 10 deep evaluation bugs for v1.7.5
* fix(secrets): resolve semgrep false positive on .partition() bypassing string split
* fix(security): replace blocked packages trivy and litellm with snyk and langfuse
* feat: Environment auto-setup directive & session_boot generative model support (#63)
* feat: add environment auto-setup directive and enhance session_boot.py
- Create directives/setup_environment.md: comprehensive bootstrap guide for
new machines covering Python venv, Homebrew deps, Ollama models, Qdrant,
and the private/public repo workflow.
- Enhance session_boot.py to auto-pull generative models (gemma4:e4b,
glm-4.7-flash) during --auto-fix, not just the embedding model.
- Fix session_boot.py run_session_init() to use sys.executable instead of
hardcoded 'python3' so it always respects the active venv.
- Update SKILLS_CATALOG.md with latest skill metadata.
* fix: address Copilot review comments on PR #63
- Remove duplicate 'import sys' statement
- Use exact model name match instead of prefix match for installed check
- Separate pull failures into report['issues'] instead of report['actions_taken']
- Add --no-generative flag to skip large model downloads in CI/constrained envs
- Use explicit /opt/homebrew/bin/python3 for venv creation in directive
- Clarify required vs optional Ollama models in directive
---------
Co-authored-by: Elton <elton@kuaray.lan>
* chore: bump v1.7.6 — template sync, security directives, langfuse integration, local routing
- Version bump: 1.7.5 → 1.7.6
- CHANGELOG: added 1.7.6 entry (security validation, langfuse, local micro agent, task router)
- templates/base/execution: synced 30+ new execution scripts from project root
- templates/base/directives: added security_team, code_security_reviewer, dependency_auditor, secret_scanner
- templates/skills: synced qdrant-memory scripts, docx/pptx/whatsapp security fixes
- release_gate.py, security_scan.py, README.md updates
* chore: remove internal Time Machine reference from CHANGELOGs
* feat: native multi-agent runtime integration
- Implemented agent_runtime.py to route native subagent tasks via task_router
- Refactored dispatch_agent_team.py to use native logic and drop openclaude CLI bindings
- Added directives/native_multi_agent.md to document the In-Context Delegation protocol
- Synced AGENTS.md and updated templates/base
* chore: release version bump to 1.7.7
* fix: refactor hardcoded 'antigravity' terminology to 'active_session' to support all LLM orchestrators (Claude, Copilot, OpenClaude, etc)
* fix: update exists() to is_file() to prevent directories from being read
* fix: resolve critical reliability bugs #72, #73, #74
- Adds 120s timeout and exception handling to local ollama deployments
- Automates directory creation for missing worktrees
- Traps JSONDecodeErrors gracefully on manifest generation
* chore: restore missing agent team rules and workflows to live workspace
- Restores agent_team_rules.md
- Restores memory-usage.md
- Restores run-agent-team-tests.md
* fix: resolve post-release architectural findings 77, 78, 79
Removes legacy fastapi tool bridge
Enforces exists check on local agent route building
Degrades docker dependency missing warning to a benign skip
* fix: restore missing feature files claimed in README
- Restores `blockchain_auth.py` to the live execution path.
- Restores `plugin-discovery/scripts/platform_setup.py` into live skills tier to ensure setup wizard functions appropriately.
* chore: backlog blockchain authentication components
- Formally removes from live and base templates after feature freeze.
- Redacts blockchain docs and integration snippets from README.
- Re-flags Trust & Tenancy mode to '🧊 Backlogged' within architectural roadmap.
* fix: restore missing cross-platform agent routing symlinks
Generates the advertised OPENCODE.md, COPILOT.md, and OPENCLAW.md symlinks bridging external models into the native AGENTS.md context stream.
* chore: bump version to 1.7.8 and update CHANGELOG
Properly formalises the architectural stability patches, native platform symlinks, and dependency logic fixes mapped natively over the core AGI structural guidelines.
---------
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Elton <elton@kuaray.lan>
Co-authored-by: Elton Machado <elton@techwave.dev>1 parent 61732bf commit aab9834
745 files changed
Lines changed: 56290 additions & 35412 deletions
File tree
- .agent/scripts
- .github/workflows
- bin
- dashboard
- data
- directives
- subagents
- docs
- agent-teams
- architecture
- execution
- execution
- knowledge
- skills
- image-ai-generator
- scripts
- plugin-discovery
- scripts
- qdrant-memory/scripts
- resend
- templates
- base
- data
- directives
- subagents
- teams
- execution
- knowledge
- skill-creator
- scripts
- tests
- skills
- core/qdrant-memory
- eval
- scripts
- extended
- ai-agents
- activecampaign-automation
- agent-evaluation
- agent-framework-azure-ai-py
- agent-manager-skill
- ai-product
- ai-wrapper-product
- airtable-automation
- autonomous-agents
- azure-ai-contentsafety-ts
- azure-ai-projects-py
- azure-ai-projects-ts
- azure-ai-voicelive-py
- bullmq-specialist
- codex-review
- computer-use-agents
- context-degradation
- context-fundamentals
- crewai
- dispatching-parallel-agents
- email-sequence
- email-systems
- embedding-strategies
- evaluation
- gemini-api-dev
- gmail-automation
- internal-comms-anthropic
- javascript-mastery
- kaizen
- langchain-architecture
- langfuse
- langgraph
- last30days
- architecture
- architecture-patterns
- binary-analysis-patterns
- brainstorming
- error-handling-patterns
- go-concurrency-patterns
- plan-writing
- backend
- anti-reversing-techniques
- api-fuzzing-bug-bounty
- async-python-patterns
- azure-ai-formrecognizer-java
- azure-communication-callingserver-java
- azure-cosmos-db-py
- azure-data-tables-java
- azure-mgmt-mongodbatlas-dotnet
- backend-dev-guidelines
- broken-authentication
- bun-development
- clerk-auth
- copilot-sdk
- database-migration
- dbos-golang
- dbos-python
- dbos-typescript
- dbt-transformation-patterns
- dotnet-backend-patterns
- dotnet-backend
- exa-search
- fastapi-router-py
- file-organizer
- firebase
- graphql
- hubspot-integration
- inngest
- blockchain/crypto-bd-agent
- content
- algorithmic-art
- copy-editing
- free-tool-strategy
- data
- blockrun
- data-scientist
- data-storytelling
- datadog-automation
- firecrawl-scraper
- gdpr-data-handling
- grafana-dashboards
- pdf
- scripts
- xlsx
- debugging
- code-refactoring-refactor-clean
- codebase-cleanup-refactor-clean
- context-optimization
- cost-optimization
- debugger
- debugging-strategies
- distributed-debugging-debug-trace
- distributed-tracing
- error-debugging-error-analysis
- error-debugging-error-trace
- error-diagnostics-error-analysis
- error-diagnostics-error-trace
- framework-migration-code-migrate
- framework-migration-deps-upgrade
- legacy-modernizer
- systematic-debugging
- devops
- airflow-dag-patterns
- aws-penetration-testing
- azd-deployment
- azure-ai-contentsafety-java
- azure-ai-document-intelligence-ts
- azure-ai-translation-ts
- azure-appconfiguration-ts
- azure-communication-chat-java
- azure-communication-sms-java
- azure-eventhub-ts
- azure-functions
- azure-identity-java
- azure-identity-ts
- azure-microsoft-playwright-testing-ts
- azure-monitor-opentelemetry-exporter-py
- azure-monitor-opentelemetry-ts
- azure-monitor-query-java
- azure-servicebus-ts
- azure-storage-blob-java
- azure-web-pubsub-ts
- bash-defensive-patterns
- bash-pro
- busybox-on-windows
- cloud-penetration-testing
- context-window-management
- database-cloud-optimization-cost-optimize
- deployment-engineer
- deployment-pipeline-design
- deployment-validation-config-validate
- file-uploads
- gcp-cloud-run
- helm-chart-scaffolding
- hugging-face-cli
- hugging-face-jobs
- hybrid-cloud-networking
- k8s-manifest-generator
- k8s-security-policies
- documentation
- azure-search-documents-ts
- claude-code-guide
- code-documentation-code-explain
- code-documentation-doc-generate
- context7-auto-research
- documentation-generation-doc-generate
- docx-official
- ooxml/scripts
- docx
- ooxml/scripts
- scripts
- employment-contract-templates
- incident-runbook-templates
- frontend
- active-directory-attacks
- algolia-search
- angular-best-practices
- angular-migration
- avalonia-viewmodels-zafiro
- avalonia-zafiro-development
- beautiful-prose
- brand-guidelines-anthropic
- brand-guidelines-community
- browser-extension-builder
- burp-suite-testing
- canvas-design
- cc-skill-project-guidelines-example
- claude-d3js-skill
- event-sourcing-architect
- frontend-dev-guidelines
- frontend-ui-dark-ts
- html-injection-testing
- hybrid-search-implementation
- interactive-portfolio
- istio-traffic-management
- kpi-dashboard-design
- pptx-official/ooxml/scripts
- pptx
- ooxml
- schemas
- ISO-IEC29500-4_2016
- ecma/fouth-edition
- mce
- microsoft
- scripts
- validation
- scripts
- ui-ux-pro-max/cli
- src/utils
- gaming
- audio-transcriber
- godot-gdscript-patterns
- internal-comms-community
- mobile/competitor-alternatives
- other
- 00-andruia-consultant
- 10-andruia-skill-smith
- 20-andruia-niche-intelligence
- ad-creative
- evals
- references
- adhx
- advanced-evaluation
- aegisops-ai
- agentflow
- agentfolio
- agentic-actions-auditor
- agentphone
- agents-md
- ai-analyzer
- ai-engineering-toolkit
- ai-native-cli
- ai-seo
- evals
- references
- akf-trust-metadata
- alpha-vantage
- amazon-alexa
- analytics-product
- analyze-project
- examples
- andrej-karpathy
- animejs-animation
- apify-actor-development
- apify-actorization
- apify-audience-analysis
- apify-brand-reputation-monitoring
- apify-competitor-intelligence
- apify-content-analytics
- apify-ecommerce
- apify-influencer-discovery
- apify-lead-generation
- apify-market-research
- apify-trend-analysis
- apify-ultimate-scraper
- app-store-changelog
- agents
- references
- scripts
- ask-questions-if-underspecified
- astropy
- astro
- audit-context-building
- audit-skills
- auri-core
- awareness-stage-mapper
- awt-e2e-testing
- baseline-ui
- bdi-mental-states
- bdistill-behavioral-xray
- bdistill-knowledge-extraction
- bill-gates
- biopython
- blog-writing-guide
- brand-guidelines
- brand-perception-psychologist
- building-native-ui
- build
- burpsuite-project-parser
- carrier-relationship-management
- cc-skill-continuous-learning
- cc-skill-strategic-compact
- chat-widget
- churn-prevention
- evals
- references
- cirq
- citation-management
- claimable-postgres
- clarvia-aeo-check
- claude-api
- csharp
- curl
- go
- java
- php
- python
- agent-sdk
- claude-api
- ruby
- typescript
- agent-sdk
- claude-api
- claude-code-expert
- claude-in-chrome-troubleshooting
- claude-settings-audit
- closed-loop-delivery
- code-simplifier
- cold-email
- evals
- references
- competitive-landscape
- constant-time-analysis
- content-strategy
- evals
- references
- context-driven-development
- convex
- copywriting-psychologist
- create-branch
- cred-omega
- customer-psychographic-profiler
- customs-trade-compliance
- data-structure-protocol
- debug-buttercup
- defuddle
- design-spells
- devcontainer-setup
- devops-deploy
- differential-review
- django-access-review
- django-perf-review
- dwarf-expert
- earllm-build
- elon-musk
- emblemai-crypto-wallet
- emergency-card
- emotional-arc-designer
- energy-procurement
- enhance-prompt
- evolution
- explain-like-socrates
- expo-api-routes
- expo-cicd-workflows
- expo-dev-client
- expo-tailwind-setup
- expo-ui-jetpack-compose
- expo-ui-swift-ui
- family-health-analyzer
- favicon
- fda-food-safety-auditor
- fda-medtech-compliance-auditor
- ffuf-web-fuzzing
- filesystem-context
- fitness-analyzer
- fixing-accessibility
- fixing-metadata
- fixing-motion-performance
- food-database-query
- fp-async
- fp-backend
- fp-data-transforms
- fp-either-ref
- fp-errors
- fp-option-ref
- fp-pipe-ref
- fp-pragmatic
- fp-react
- fp-refactor
- fp-taskeither-ref
- fp-types-ref
- gdb-cli
- geoffrey-hinton
- gh-review-requests
- gha-security-review
- github
- agents
- goal-analyzer
- google-docs-automation
- google-sheets-automation
- google-slides-automation
- growth-engine
- headline-psychologist
- health-trend-analyzer
- hig-components-controls
- hig-components-search
- hig-inputs
- hig-technologies
- hono
- hosted-agents
- hugging-face-community-evals
- examples
- scripts
- hugging-face-dataset-viewer
- hugging-face-datasets
- hugging-face-evaluation
- hugging-face-gradio
- hugging-face-model-trainer
- hugging-face-paper-publisher
- hugging-face-papers
- hugging-face-tool-builder
- hugging-face-trackio
- .claude-plugin
- references
- hugging-face-vision-trainer
- references
- scripts
- humanize-chinese
- iconsax-library
- identity-mirror
- ilya-sutskever
- image-studio
- internal-comms
- examples
- inventory-demand-planning
- ios-debugger-agent
- agents
- issues
- jobgpt
- jobs-to-be-done-analyst
- jq
- json-canvas
- references
- k6-load-testing
- keyword-extractor
- landing-page-generator
- references
- scripts
- latex-paper-conversion
- lead-magnets
- references
- superpowers-lab
- using-git-worktrees
- using-superpowers
- verification-before-completion
- writing-skills
- whatsapp-cloud-api/assets/boilerplate/python
- security
- attack-tree-construction
- cc-skill-security-review
- codebase-cleanup-deps-audit
- dependency-management-deps-audit
- ethical-hacking-methodology
- find-bugs
- testing
- backtesting-frameworks
- code-review-excellence
- conductor-implement
- e2e-testing-patterns
- file-path-traversal
- go-playwright
- idor-testing
- infinite-gratitude
- javascript-testing-patterns
- test-driven-development
- verification-before-completion
- workflow
- amplitude-automation
- azure-communication-callautomation-java
- bamboohr-automation
- basecamp-automation
- billing-automation
- bitbucket-automation
- box-automation
- brevo-automation
- browser-automation
- cal-com-automation
- calendly-automation
- canva-automation
- cicd-automation-workflow-automate
- circleci-automation
- clarity-gate
- clickup-automation
- close-automation
- coda-automation
- commit
- comprehensive-review-full-review
- comprehensive-review-pr-enhance
- conductor-revert
- conductor-setup
- conductor-validator
- confluence-automation
- context-compression
- convertkit-automation
- create-pr
- discord-automation
- dropbox-automation
- executing-plans
- finishing-a-development-branch
- freshdesk-automation
- freshservice-automation
- git-advanced-workflows
- git-pr-workflows-git-workflow
- git-pr-workflows-onboard
- git-pushing
- github-actions-templates
- github-automation
- github-issue-creator
- github-workflow-automation
- gitlab-automation
- gitlab-ci-patterns
- gitops-workflow
- google-analytics-automation
- google-calendar-automation
- google-drive-automation
- googlesheets-automation
- haskell-pro
- helpdesk-automation
- hubspot-automation
- instagram-automation
- iterate-pr
- javascript-pro
- jira-automation
- klaviyo-automation
- launch-strategy
- knowledge
- architecture
- brainstorming
- plan-writing
- debugging/systematic-debugging
- frontend/react-components
- tests/agents
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
208 | 208 | | |
209 | 209 | | |
210 | 210 | | |
211 | | - | |
| 211 | + | |
212 | 212 | | |
213 | 213 | | |
214 | 214 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
11 | 14 | | |
12 | 15 | | |
13 | 16 | | |
14 | 17 | | |
15 | 18 | | |
| 19 | + | |
| 20 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
315 | 315 | | |
316 | 316 | | |
317 | 317 | | |
318 | | - | |
| 318 | + | |
319 | 319 | | |
320 | 320 | | |
321 | 321 | | |
| |||
333 | 333 | | |
334 | 334 | | |
335 | 335 | | |
336 | | - | |
| 336 | + | |
337 | 337 | | |
338 | | - | |
339 | | - | |
340 | | - | |
341 | | - | |
342 | | - | |
343 | | - | |
| 338 | + | |
| 339 | + | |
| 340 | + | |
| 341 | + | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
| 346 | + | |
| 347 | + | |
| 348 | + | |
| 349 | + | |
| 350 | + | |
| 351 | + | |
| 352 | + | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
344 | 357 | | |
345 | 358 | | |
346 | 359 | | |
| |||
359 | 372 | | |
360 | 373 | | |
361 | 374 | | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
| 379 | + | |
| 380 | + | |
| 381 | + | |
| 382 | + | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
| 386 | + | |
362 | 387 | | |
363 | 388 | | |
364 | 389 | | |
| |||
865 | 890 | | |
866 | 891 | | |
867 | 892 | | |
868 | | - | |
| 893 | + | |
| 894 | + | |
| 895 | + | |
| 896 | + | |
| 897 | + | |
| 898 | + | |
| 899 | + | |
869 | 900 | | |
870 | 901 | | |
871 | | - | |
| 902 | + | |
872 | 903 | | |
873 | 904 | | |
| 905 | + | |
| 906 | + | |
874 | 907 | | |
875 | 908 | | |
876 | 909 | | |
| |||
919 | 952 | | |
920 | 953 | | |
921 | 954 | | |
922 | | - | |
| 955 | + | |
| 956 | + | |
923 | 957 | | |
924 | 958 | | |
925 | 959 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
10 | 67 | | |
11 | 68 | | |
12 | 69 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
0 commit comments