nirvana context enricher

Squad de pesquisa paralela que gera contexto enriquecido ao estado nirvana sobre qualquer tópico. Orquestra 3 pesquisadores em paralelo (deep research, skills.sh + bibliotecas GitHub, papers acadêmicos) e 1 sintetizador, com gates mínimos de busca, para produzir um relatório de contexto técnico acionável.

1installs
SAFE
researchcontext-enrichmentparallel-agentsknowledge-baseweb-search
Squads are published by third parties. squads.sh does not guarantee their safety or functionality. Use at your own risk. Read Terms
5Agents7Tasks1Workflows

Version
License
Build
Agents
Last Commit
Stars

Language / Idioma: Português · English · 中文 · हिन्दी · Español · العربية

🧘 Nirvana Context Enricher (NCE)

Parallel research squad that generates nirvana-state enriched context on any topic. Evolution of

/atualise
with Agent Teams: deep research + skills.sh + GitHub libraries + academic papers.


📑 Table of Contents


✨ Overview

The Nirvana Context Enricher is a Squad Protocol v5 squad that orchestrates 5 specialized agents to generate comprehensive context reports on any topic. Unlike traditional sequential research, NCE runs 3 researchers in parallel — covering deep research, tools ecosystem, and academic literature — then synthesizes everything into a unified 16-section report.

Who is it for? Developers, architects, and teams who need deep, actionable technical context before making decisions.

Why does it exist? Manual research is slow, shallow, and misses important sources. NCE guarantees minimum coverage of 24 web searches and 11 content extractions, distributed among dedicated researchers1.

Tip
Use NCE whenever you need to understand a technology, framework, or pattern before implementing. The generated report serves as a knowledge base for the entire team.

📊 Comparison: /atualise vs NCE

Aspect
/atualise
NCE
ExecutionSequential (1 agent)Parallel (4 agents)
Rounds6 sequential3 parallel researchers + synthesis
SkillsDoes not searchSearches skills.sh
GitHub LibrariesNo focusTrending + growth
PapersMixed with other dataDedicated researcher
OutputInformative reportActionable enriched context
Minimum searches1524
Minimum WebFetch11
Important
NCE does not replace
/atualise
for quick searches. Use NCE when you need deep, multidimensional context.

🔧 Tech Stack

TechnologyPurpose
Claude Code Agent TeamsParallel agent orchestration
WebSearchWeb search across multiple sources
WebFetchContent extraction and page analysis
TeamCreate / TeamDeleteTeam lifecycle management
TaskCreate / TaskUpdateTask management and tracking
SendMessageInter-agent communication
Agent (run_in_background)Parallel researcher spawning

📋 Prerequisites

Warning
Ensure all tools below are available before using NCE.
  • Claude Code — with Agent Teams support
  • squads-sh — orchestration framework
  • Internet access — required for WebSearch and WebFetch
  • NCE squad installed — present at
    squads/nirvana-context-enricher/

Verify the squad is available:

bash
ls squads/nirvana-context-enricher/squad.yaml

⚡ Getting Started

Note
NCE is invoked directly in Claude Code. No external dependency installation required.
bash
/nirvana-context-enricher "React Server Components" 2026

2. Via Squad Command

bash
/SQUADS:nce:nce-orchestrator *enrich "Kubernetes operators" 2026

3. Arguments

ArgumentTypeRequiredDefaultDescription
topicstringSubject to research
yearnumber2026Target year to filter results

Setup Checklist

  • Claude Code open with the squads runtime active
  • Topic clearly defined
  • Stable internet connection
  • Wait for all 3 researchers to complete (~2-5 min)
Tip
Press Ctrl+C to cancel execution at any time. Cleanup will run automatically.

🏗️ Architecture

Component Diagram

Execution Flow

:file_folder: Expand directory tree
text
squads/nirvana-context-enricher/
├── squad.yaml                              # Squad definition
├── README.md                               # Documentation (PT-BR)
├── agents/
│   ├── nce-orchestrator.md                 # Nirva — FlowMaster
│   ├── nce-deep-researcher.md              # Sage — Seeker
│   ├── nce-skills-scout.md                 # Scout — Explorer
│   ├── nce-papers-researcher.md            # Scholar — Seeker
│   └── nce-synthesizer.md                  # Lotus — Alchemist
├── tasks/
│   ├── nce-orchestrator-parse-request.md   # Parse topic and queries
│   ├── nce-orchestrator-dispatch-research.md # Spawn researchers
│   ├── nce-deep-researcher-execute-rounds.md # 6 research rounds
│   ├── nce-skills-scout-search-ecosystem.md  # Skills + libraries
│   ├── nce-papers-researcher-find-papers.md  # Academic papers
│   ├── nce-synthesizer-generate-report.md    # Final report
│   └── nce-orchestrator-cleanup.md           # Shutdown and cleanup
├── workflows/
│   └── nirvana-enrichment.yaml             # 4-phase workflow
├── checklists/
│   └── research-quality.md                 # Quality checklist
├── templates/
│   └── nirvana-report.md                   # Report template
└── config/
    ├── coding-standards.md                 # Coding standards
    ├── tech-stack.md                       # Technologies used
    └── source-tree.md                      # Directory structure

👥 Agents

IDPersonaArchetypeRoleResponsibility
nce-orchestratorNirvaFlowMasterOrchestratorReceives topic, analyzes, coordinates 3 parallel researchers + 1 synthesizer
nce-deep-researcherSageSeekerDeep Researcher6 exhaustive rounds: fundamentals, structure, practice, advanced, current events, problems
nce-skills-scoutScoutExplorerSkills Explorerskills.sh + GitHub trending libraries + awesome-lists
nce-papers-researcherScholarSeekerAcademic ResearcherPapers from arxiv/scholar + best approaches and patterns
nce-synthesizerLotusAlchemistNirvana SynthesizerCombines data from all 3 researchers into the final 16-section report

Minimum Searches per Agent

AgentWebSearchWebFetchTotal
Sage10515
Scout8311
Scholar639
Total241135
Caution
Search minimums are blocking gates. The report will not be generated if any agent fails to meet its minimums, unless the minimum_viable gate (2/3 researchers) is triggered.

🔄 Workflow

The nirvana-enrichment workflow has 4 sequential phases with the research phase running in parallel:

Phases

#PhaseTypeAgent(s)Dependency
1parseSequentialNirva
2researchParallelSage, Scout, Scholarparse
3synthesizeSequentialLotusresearch
4cleanupSequentialNirvasynthesize

Error Handling

ScenarioBehavior
researcher_failureContinue with remaining researchers
minimum_viableRequires success from at least 2/3 researchers
timeoutUse partial data collected so far

Quality Gates

yaml
gates:
  min_searches: 20        # Minimum total WebSearch
  min_webfetch: 11        # Minimum total WebFetch
  min_researchers_success: 2  # Minimum successful researchers

📄 Output

The report is automatically saved to:

text
.claude/context-enrichment/{slug}-{YYYY-MM-DD}.md

16 Sections of the Nirvana Report

:scroll: View all 16 sections
#SectionPrimary Source
1Request AnalysisNirva
2What It IsSage
3Architecture/StructureSage
4Core FeaturesSage
5How to UseSage
6ConfigurationSage
7Best PracticesSage
8Year's UpdatesSage
9Recommended Skills (skills.sh)Scout
10Modern Ecosystem LibrariesScout
11Reference Papers & ArticlesScholar
12Best ApproachesScholar
13Common Problems and SolutionsSage + Scholar
14Enriched Context (Nirvana)Lotus
15ResourcesAll
16Knowledge GapsLotus

Quality Rules (Checklist)

CategoryTypeCriteria
QuantityBlockingMinimum searches/webfetch per agent
QualityBlockingOfficial sources, year filter, 2/3 researchers, registered URLs
CompletenessAdvisory16 sections filled, original Enriched Context, gaps documented
OutputBlockingFile saved, cleanup executed, result reported

🆘 Troubleshooting

ProblemProbable CauseSolution
Incomplete reportResearcher failedCheck if at least 2/3 succeeded (minimum_viable gate)
Research timeoutSlow connection or topic too broadRefine the topic to be more specific
Empty sectionsWebFetch blocked by siteCheck URLs in log; Lotus marks as gap
TeamCreate errorAgent limit reachedWait for other squads to finish or cancel with Ctrl+C
File not generatedCleanup ran before synthesisVerify that min_researchers_success >= 2 was met
:mag: Detailed diagnostics

Check squad status

bash
ls -la .claude/context-enrichment/

Verify the squads runtime recognizes the squad

bash
ls squads/nirvana-context-enricher/squad.yaml

Force manual cleanup

bash
# If automatic cleanup fails, check for residual agents
# and cancel manually via Claude Code

Check partial output

bash
# Partial reports are saved with -partial suffix
ls .claude/context-enrichment/*-partial*

🤝 Contributing

Contributions are welcome! Follow the steps below:

  1. Fork the project
  2. Create your branch (
    git checkout -b feature/nce-improvement
    )
  3. Commit your changes (git commit -m 'feat(nce): improvement description')
  4. Push to the branch (
    git push origin feature/nce-improvement
    )
  5. Open a Pull Request
Note
This project follows Conventional Commits for commit messages.

Commit Patterns

TypeDescription
feat(nce):New NCE feature
fix(nce):Bug fix
docs(nce):Documentation update
refactor(nce):Code refactoring
test(nce):Test addition or fix
chore(nce):Maintenance tasks

See the Contributing Guide for more details2.

:newspaper: Changelog

v1.0.0 (2026-03-06)

diff
+ Added: NCE squad with 5 specialized agents
+ Added: nirvana-enrichment workflow with 4 phases
+ Added: Parallel research with 3 simultaneous researchers
+ Added: Nirvana report with 16 sections
+ Added: Quality gates with search minimums
+ Added: Error handling with minimum_viable (2/3)
! Changed: Evolution from /atualise to multi-agent architecture

📃 License

This project is licensed under the MIT license — see the LICENSE file for details.


Made with ❤️ by Luiz Gustavo Vieira Rodrigues

⭐ If this project helped you, consider giving it a star!

Footnotes

  1. Minimums ensure comprehensive coverage: Sage (10 WebSearch + 5 WebFetch), Scout (8+3), Scholar (6+3).

  2. The contributing guide details the review process, required tests, and Squad Protocol v5 coding standards.

Reviews

0 reviews

Write a review

No reviews yet. Be the first to review this squad!

More from Luiz Rodrigues

01

squad forge

Squad meta de desenvolvimento, otimização e evolução de squads agênticos — cria, valida, otimiza e moderniza qualquer artefato de squad (agentes, tasks, workflows, skills, squads inteiros, templates) com perfeição de formato, e mantém a própria base de conhecimento atualizada via pesquisa web.

1824
02

ultimate landingpage

Squad fullstack para criação de landing pages de ultra-alta conversão — pipeline end-to-end com 9 agentes: discovery de produto, pesquisa de mercado e experts de copywriting, design system atômico com contraste WCAG AAA e light/dark, geração de imagens por IA, frontend Next.js com SEO e acessibilidade, backend Python FastAPI com admin panel e exportação CSV, integrações WhatsApp e email, e QA multidimensional com score por dimensão

1584
03

data quality guardian

Squad especialista em qualidade de dados — profiling de datasets, detecção de anomalias, validação de schemas, geração de relatórios de qualidade e sugestão de remediações automatizadas para pipelines de dados

652
04

incident response squad

Squad especialista em resposta a incidentes para DevOps/SRE — análise de logs multi-source, correlação de causa raiz, execução de runbooks de remediação, comunicação de status e geração de post-mortems blameless

581
05

brandcraft

Squad de produção de entregáveis visuais brand-consistent: extrai design systems de URLs (Refero + live extraction), gera PDFs, PPTX, posts sociais, carrosséis e vídeos programáticos por dois caminhos (Veo 3.1 + Remotion para footage de IA; HyperFrames HTML-first determinístico para motion-design, data-viz e explainer), faz auditoria competitiva de marca, aplica um quality gate awwwards de 24 itens e um arsenal de 112 bibliotecas de UI nos HTMLs/PDFs/animações, e valida acessibilidade WCAG 2.2 AA. Pipeline com 16 agentes especializados e 16 workflows.

554
06

nirvana squad creator

Gera squads v5-compliant a partir de linguagem natural — pipeline de 11 fases começando com intent archaeology + pesquisa web (2026), depois análise grounded, geração, otimização, validação, README multi-idioma, deploy e publicação no squads.sh

544
07

notebooklm automation

Automação programática completa do Google NotebookLM — da criação de notebooks e curadoria de fontes à pesquisa por Q&A progressivo e geração de 10 formatos de conteúdo (podcast, vídeo, slides, quiz, flashcards, infográfico, mapa mental, tabela de dados, relatório), com download de artefatos orquestrado por pipeline inteligente. Suporta 50+ idiomas e error handling cross-cutting (retry, re-auth, fallback de cota).

423
08

nirvana readme architect

Squad de geração de README.md perfeito e impecável, combinando análise profunda de codebase, seleção de template por tipo de projeto, todas as features do GitHub Flavored Markdown, validação com checklist de 25+ pontos e polimento final com badges e TOC.

411
09

soc alert triage

Squad especialista em triagem de alertas SOC para cybersecurity — classificação automatizada, filtragem de falsos positivos, priorização de ameaças, enriquecimento com threat intel e geração de briefs para analistas

391
10

adaptive tutor k12

Squad especialista em tutoria adaptativa K-12 — avaliação diagnóstica, mapeamento curricular personalizado, sessões de tutoria com dificuldade adaptativa, rastreamento de progresso e relatórios para pais e educadores

382
11

resume screener squad

Squad especialista em triagem de currículos para recrutamento — parsing automatizado de CVs, matching de skills com requisitos da vaga, auditoria de vieses, ranking de candidatos e geração de resumos executivos para hiring managers

382
12

automated code review squad

Squad especialista em code review automatizado — revisão de segurança, análise lógica, verificação de padrões arquiteturais, enforcement de coding standards e geração de review summaries priorizados para PRs e commits

221