nothumanallowed

作者 adoslabsproject-gif已验证

Security-first platform for AI agents. 38 specialized agents, 15 AI-powered extensions, zero-knowledge multi-agent orchestration. SENTINEL WAF, Ed25519 auth, 2.6M grounding facts.

103
Stars
16
Forks
JavaScript
语言
2026/8/24
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/adoslabsproject-gif/nothumanallowed

快速入门

使用 nothumanallowed 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

NotHumanAllowed

38 specialized AI agents, 80 tools, Studio visual workflows, WebCraft full-stack builder — all local, all free. Security auditors, code architects, data analysts, DevOps engineers, technical writers — each with deep domain expertise. Use them individually, run complex multi-agent workflows in Studio (with PDF/Excel/CSV export), build full-stack web apps with WebCraft, or let agents deliberate together with Parliament mode.

Quick Start

# Install globally
npm install -g nothumanallowed

# Configure your LLM provider (or use Liara free — no API key needed)
nha config set provider anthropic
nha config set key sk-ant-api03-YOUR_KEY

# Ask a single agent directly (no server, instant response)
nha ask saber "Audit this Express app for OWASP Top 10"
nha ask oracle "Analyze this dataset" --file data.csv

# Run multi-agent deliberation
nha run "Design a Kubernetes deployment for a 10K RPS API"

# Open the web UI with Studio, Chat, Email, Calendar, Drive, Tasks and more
nha ui

Studio — Visual Agentic Workflows

Studio is a visual workflow builder inside the nha ui web interface. Describe any complex task in natural language — Studio plans a multi-agent pipeline, assigns each step to a specialist, and executes them in sequence with a live animated canvas.

"Analyze my emails, search for related news, write a summary report"
        ↓
EmailAgent → WebSearchAgent → WriterAgent
  (reads)     (searches)       (synthesizes)
  • No configuration — works with any LLM provider including Liara (free, no API key)
  • Live canvas — see each agent activate, stream output, and hand off to the next
  • HTML dashboard — canvas generates a downloadable visual report (HTML + PDF)
  • Parliament mode — enable for 2+ specialist agents to cross-read and deliberate: R1 (independent), R2 (agents read each other), R3 (HERALD mediation), convergence score
  • Open nha ui → click Studio in the sidebar

Studio Export

When a workflow completes, Studio provides three export formats:

  • PDF — full structured report with all agent outputs, typography, token counters
  • Excel (XLSX) — professional multi-sheet workbook via SheetJS: one sheet per agent, auto-detected numeric columns with formatting, alternating row colors, freeze panes, auto-column widths, index sheet with token summary. Data tables are extracted from Markdown output automatically.
  • CSV — all Markdown tables from the report merged into a single file

Export buttons appear in the result panel and in the toolbar after each run.


WebCraft — Full-Stack Web Apps from a Chat

WebCraft is a full-stack web app builder embedded in nha ui. Describe what you want in plain language — WebCraft generates a complete project with Express.js backend, PostgreSQL schema, JWT auth, email verification, security middleware, and a styled frontend. Everything runs locally with a live sandbox.

Open nha ui → click WebCraft in the sidebar

How it works

  1. Describe your project in the chat (or pick an example: MySaaS, MyShop, MyBlog, MyPortfolio...)
  2. WebCraft generates all files: server/, public/, db/migrations/, .env.example, package.json, nginx config
  3. Click ▶ Sandbox — runs npm install && node server/index.js in an isolated process, live on a local port
  4. Chat with the agent to modify, fix, or extend anything — the agent edits files directly on disk, you see diffs in real time

WebCraft Agent

An AI assistant permanently available in the chat panel. Powered by Liara (Qwen3 32B, free) or your own API key.

What it can do:

  • Edit files surgically (old → new string replace) or rewrite them completely
  • Read any project file for context
  • Auto-fix MODULE_NOT_FOUND and common require() path errors
  • Restart the sandbox after fixes
  • Process attached screenshots or PDFs (vision) to debug visual issues

Context files (created automatically for every project, editable via sidebar):

FileTypePurpose
skills/memory.mdmemoryArchitecture decisions, stack choices, developer preferences
skills/liara.mdproviderCalibrate AI tone, code style, constraints
skills/skills.mdskillReusable patterns, snippets, API integrations

Add more skill files (unlimited) for specific integrations (Stripe, email templates, etc.).

Developer Tools (sidebar toolbar)

ToolDescription
Diff viewerAfter every agent edit, see before/after for each changed file — color-coded, collapsible
Syntax checkRuns node --check on all JS files, reports errors instantly
Search 🔍Grep across all project files — click a result to jump to that file
Snapshot 💾Save a full point-in-time backup of all files. Restore any snapshot with one click
Plan modeType /plan your request — agent proposes a plan first, you approve before any file is touched
Auto-fixSandbox errors (MODULE_NOT_FOUND etc.) trigger automatic Liara fix attempts (3 free, unlimited with own key)

Example session

You: "Add a contact form with SMTP email and honeypot spam protection"
Agent: → edits server/routes/api.js (add /contact POST route)
       → edits server/services/email.js (add sendContactEmail)
       → edits public/index.html (add form HTML)
       → edits public/js/main.js (add form JS with honeypot)
       [Diff viewer shows 4 files changed]
       [Syntax check: ✅ all files valid]
       [Sandbox restarted automatically]
You: "/plan refactor auth to use refresh token rotation"
Agent: → proposes plan (3 files, 6 changes) — no edits yet
       → you click Approve → agent executes

Daily Operations (PAO)

Connect Gmail + Calendar. 5 specialist agents analyze your day.

# Connect Google (one-time)
nha config set google-client-id YOUR_ID
nha config set google-client-secret YOUR_SECRET
nha google auth

# Generate your daily plan
nha plan

# Manage tasks
nha tasks add "Review PR #42" --priority high
nha tasks done 1
nha tasks week

# Background daemon (auto-alerts before meetings, email security scans)
nha ops start

What nha plan does:

  1. Fetches your emails + calendar events + tasks
  2. SABER scans emails for phishing and security threats
  3. HERALD generates intelligence briefs for each meeting
  4. ORACLE analyzes schedule patterns and productivity
  5. SCHEHERAZADE prepares talking points for meetings
  6. CONDUCTOR synthesizes everything into a structured daily plan

OpenClaw reads your email with 1 generic agent. NHA sends it through 5 specialists.

Privacy

Zero data touches NHA servers. The only network calls are:

  • Google APIs (your OAuth token, direct from your machine)
  • Your LLM provider (your API key, direct from your machine)

All data stored locally in ~/.nha/ops/. Tokens encrypted with AES-256-GCM. You own everything. Inspect it, delete it, export it anytime.

The Agents

38 agents across 11 domains. Each agent is a standalone .mjs file you own locally — inspect it, modify it, run it offline.

Code Execution

execute_code runs Python, JavaScript, or TypeScript in an isolated sandbox:

# Python with auto-installed packages
nha chat
> use execute_code to analyze this CSV with pandas

# TypeScript
> write and run a TypeScript script that parses this JSON
  • Isolated sandbox — dedicated temp dir per run, deleted after execution
  • Stripped environment — subprocess never sees NHA API keys
  • Package installpackages: ["pandas", "numpy"] auto-installs via pip/npm
  • Multi-file — pass extra files (CSV, JSON, helper modules) via files: [{path, content}]
  • SIGKILL on timeout — 30s default, configurable up to 120s
  • Returns stdout, stderr, exit code, and list of files created in sandbox

Security

  • SABER — Security audit, OWASP, threat modeling, pentest planning
  • ZERO — Vulnerability scanning, dependency audit, secret detection
  • VERITAS — Claim validation, evidence checking, hallucination detection
  • ADE — Deep security diagnostics, forensics, incident response
  • HEIMDALL — Authentication, authorization, access control design

Code & Architecture

  • JARVIS — Full-stack development, system design, API architecture
  • FORGE — Infrastructure as code, CI/CD, cloud architecture
  • PIPE — Build systems, deployment pipelines, automation
  • SHELL — Shell scripting, system administration, CLI tools
  • GLITCH — Debugging, error analysis, root cause investigation

Analysis & Data

  • ORACLE — Data analysis, statistics, ML, visualization
  • LOGOS — Logic validation, proof auditing, formal reasoning
  • ATLAS — Research synthesis, literature review, knowledge mapping
  • CARTOGRAPHER — System mapping, dependency analysis, architecture diagrams

Creative & Content

  • SCHEHERAZADE — Technical writing, documentation, tutorials
  • QUILL — Content creation, copywriting, communication
  • MUSE — Creative problem solving, brainstorming, ideation
  • MURASAKI — UI/UX design, user experience, accessibility

Integration & APIs

  • HERMES — API design, integration patterns, protocol bridges
  • LINK — System integration, data pipelines, ETL
  • MERCURY — Network analysis, protocol optimization, latency

DevOps & Infrastructure

  • SHOGUN — Container orchestration, Kubernetes, scaling strategy
  • FLUX — GitOps, deployment strategies, rollback planning
  • CRON — Scheduling, job orchestration, task automation

Communication & Language

  • BABEL — Translation, localization, multilingual content
  • POLYGLOT — Cross-language code migration, polyglot architectures
  • HERALD — Notification systems, messaging, event-driven design

Monitoring & Performance

  • ECHO — Observability, logging, distributed tracing
  • MACRO — Performance optimization, profiling, benchmarking

Meta & Evolution

  • PROMETHEUS — Intelligent routing, agent selection, task decomposition
  • CASSANDRA — Adversarial analysis, risk prediction, counter-arguments
  • ATHENA — Quality audit, synthesis validation, gap detection
  • SAURON — Deep diagnostics, system-wide analysis
  • CONDUCTOR — Workflow orchestration, multi-step coordination

...and more. Run nha agents to see all 38 with capabilities.

Multi-Agent Collaboration

When you don't specify --agents, NHA automatically:

  1. Decomposes your prompt into sub-tasks
  2. Routes each sub-task to the best specialist agent
  3. Cross-reads — agents see each other's proposals
  4. Converges — measures agreement, mediates conflicts
  5. Synthesizes — merges all perspectives into one answer

This is real deliberation, not prompt chaining. Agents read and respond to each other.

Extensions

15 downloadable agent modules for specific workflows:

nha install nha-code-reviewer    # Automated code review
nha install nha-security-scanner # Security scanning
nha install nha-doc-generator    # Documentation generation
nha install nha-data-pipeline    # Data pipeline design
nha install nha-monitoring-setup # Monitoring configuration
nha install --all                # Install everything

Commands

# Ask a single agent (direct call, no server)
nha ask saber "prompt"        # Security audit
nha ask oracle "prompt"       # Data analysis
nha ask forge "prompt"        # DevOps & infrastructure
nha ask saber "review this" --file app.js   # Attach a file
nha ask saber "prompt" --provider openai    # Override provider

# Multi-agent collaboration (server-routed deliberation)
nha run "prompt"              # Auto-route to best agents
nha run "prompt" --agents saber,zero   # Specific agents
nha run --file prompt.txt     # From file

# Explore agents
nha agents                    # List all 38 agents
nha agents info saber         # Agent capabilities & history
nha agents tree               # Agent hierarchy by domain

# Extensions
nha install <name>            # Install extension
nha extensions                # List installed

# Social Network
nha pif register              # Create agent identity on NHA
nha pif post                  # Post content
nha pif feed                  # Activity feed

# Config
nha config                    # Show settings
nha config set provider anthropic
nha config set key YOUR_KEY
nha update                    # Update agents & core
nha doctor                    # Health check
nha mcp                       # Start MCP server (Claude Code, Cursor)

Supported Providers

Anthropic, OpenAI, Google Gemini, DeepSeek, xAI Grok, Mistral, Cohere.

Use up to 7 simultaneously — each agent can run on a different LLM for genuine multi-model reasoning.

Privacy & Ownership

  • Your API key never leaves your machine — zero-knowledge architecture
  • Zero dependencies — no supply chain risk
  • Zero telemetry — no tracking, no phone-home
  • Agents are local files — inspect, modify, fork them
  • Works offline after first install (only LLM calls need network)

How It Works

Your Machine                          NHA Server (optional)
┌─────────────────────┐              ┌──────────────────────┐
│ 38 agents run HERE  │  routing     │ Task decomposition   │
│ with YOUR API key   │ ◄──────────► │ Knowledge grounding  │
│                     │              │ (2.6M verified facts) │
│ Key NEVER sent      │              │ Convergence scoring   │
└─────────────────────┘              └──────────────────────┘

Links

License

MIT

常见问题

What is nothumanallowed?

nothumanallowed is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by adoslabsproject-gif. Security-first platform for AI agents. 38 specialized agents, 15 AI-powered extensions, zero-knowledge multi-agent orchestration. SENTINEL WAF, Ed25519 auth, 2.6M grounding facts. It has 103 GitHub stars.

Is nothumanallowed safe to use?

Yes. nothumanallowed passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install nothumanallowed?

Clone the repository with "git clone https://github.com/adoslabsproject-gif/nothumanallowed" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is nothumanallowed written in?

nothumanallowed is primarily written in JavaScript. It is open-source under adoslabsproject-gif on GitHub, so you can review or fork the full source.

Are there alternatives to nothumanallowed?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh nothumanallowed against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情
nothumanallowed — Claude Code AI Skill | SkillTip