npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-smartbrsimpleaiagent

v2.0.0

Published

Smart BR Simple AI Agent custom node for n8n testing

Readme

Simple AI Agent Node for n8n

Um nó customizado para n8n que simula uma resposta de IA simples.

Funcionalidades

  • Recebe um prompt como parâmetro de entrada
  • Retorna uma resposta simulada da IA
  • Fácil de usar e integrar em workflows do n8n

Instalação

  1. Clone este repositório
  2. Instale as dependências:
    npm install
  3. Compile o código:
    npm run build

Uso

🚀 Importante: Execute os comandos no diretório correto!

Todos os scripts devem ser executados no diretório do projeto SimpleAiAgent: e:/GitHub/_n8n/Simple AI Agent/

Teste Local (Recomendado para desenvolvimento)

  1. Navegue até o diretório do projeto:

    cd e:/GitHub/_n8n/Simple AI Agent
  2. Preparar ambiente local:

    npm run test:local

    Ou no Windows:

    scripts\test-local.bat
  3. Configurar n8n:

    • Abra o n8n
    • Vá em Settings > Nodes
    • Clique em "Add from local folder"
    • Selecione esta pasta: e:/GitHub/_n8n/Simple AI Agent
    • Procure por "SimpleAiAgent" na lista de nós
  4. Testar o nó:

    • Adicione o nó SimpleAiAgent ao workflow
    • No campo "Prompt", digite: "Olá, mundo!"
    • Execute o workflow
    • O resultado deve ser: "Resposta da IA simulada para o prompt: Olá, mundo!"

Publicação no npm

  1. Pré-requisitos:

  2. Navegue até o diretório do projeto:

    cd e:/GitHub/_n8n/Simple AI Agent
  3. Publicar com script automatizado:

    npm run publish
  4. Publicar manualmente:

    npm install
    npm run build
    npm test
    npm publish
  5. Usar no n8n após publicação:

    • Vá em Settings > Nodes
    • Clique em "Add from npm"
    • Procure por "n8n-nodes-smartbrsimpleaiagent"
    • Clique em "Install"

Desenvolvimento

Para desenvolvimento em tempo real:

npm run dev

Scripts Disponíveis

  • npm install - Instalar dependências
  • npm run build - Compilar TypeScript
  • npm run dev - Modo de desenvolvimento com watch
  • npm run test - Executar testes
  • npm run lint - Verificar código
  • npm run lint:fix - Corrigir problemas de linting
  • npm run test:local - Preparar ambiente para teste local
  • npm run publish - Publicar no npm (com verificação automática)

Estrutura do Projeto

  • src/SimpleAiAgent.node.ts - Código principal do nó
  • src/index.ts - Ponto de entrada do módulo
  • package.json - Configuração do pacote
  • tsconfig.json - Configuração do TypeScript

Licença

MIT