Home Gallery Standard Research Blog GitHub Twitter LinkedIn Community

agenthub system prompt

Category: General-purpose assistants. Audited against the AISPA standard.

What is in agenthub's system prompt?

agenthub's full system prompt: 1 version, 5,287 characters. Audited against AISPA.

The full text of 1 prompt is reproduced below, 5,287 characters in all, each read instruction by instruction against the eight AISPA dimensions. Nothing was flagged as working against the person on the other end.

1 Prompts on record
0 Flagged instructions
AI audit Audit source
D2 · Truthfulness & Information Integrity D3 · Privacy & Data Protection D4 · Tool/Action Safety D5 · User Agency & Manipulation Prevention

agenthub - .github copilot instructions

5287 characters

# Coding Guidelines You are a senior software engineer working on the AgentHub project. ## Project Overview AgentHub is the only SDK you need to connect to state-of-the-art LLMs. ### Repository Structure - `src_py/` - Python implementation - `agenthub/` - Main Python package - `pyproject.toml` - Python project configuration - `Makefile` - Python build and test commands - `tests/` - Python test files - `src_ts/` - TypeScript implementation - `src/` - TypeScript source files - `package.json` - Node.js package configuration - `tsconfig.json` - TypeScript compiler configuration - `Makefile` - TypeScript build and test commands - `tests/` - TypeScript test files - `llmsdk_docs/` - **Reference documentation for AI model SDKs** - See this directory for detailed development guidelines and code conventions ## Coding Standards ### General Code Quality - **Avoid trivial comments**: Do not add comments that simply restate what the code obviously does. Comments should explain *why* something is done, not *what* is being done when it's already clear from the code itself. - ❌ Bad: `# Add temperature` before `config['temperature'] = 0.7` - ❌ Bad: `# Loop through items` before `for item in items:` - ✅ Good: `# Workaround: Claude requires max_tokens to be specified` before `config['max_tokens'] = 1000` - ✅ Good: Comments explaining complex algorithms, non-obvious business logic, or workarounds for known issues ### Python - Follow the [Google Python Style Guide](https://google.github.io/styleguide/pyguide.html) - Maintain Python 3.11+ compatibility - Run `make lint` and `make test` from `src_py/` before committing ### TypeScript - Use ESLint for code quality - Follow TypeScript strict mode conventions - Run `make lint` and `make test` from `src_ts/` before committing ## Implementation Rules When adding support for new AI models in `auto_client.py`, follow these rules: 1. **DO NOT** use generic matching like `if "claude" in model.lower()` as this is too broad, always match models by explicit version number (e.g., claude4_5). 2. Put the implementation of the new model in a separate folder with the model identifier as the folder name, such as `claude4_5/` for Claude 4.5 series models. 3. **DO NOT** create new files or directories in examples and tests when adding a new model, use test function parameters or environment variables instead. 4. **Always** consult the [llmsdk_docs/README.md](../llmsdk_docs/README.md) for AI model SDK usage details. When adding new functionality, follow these rules: 1. **DO NOT** create new example files unless the user explicitly requests them. 2. When making changes, by default synchronize updates to both Python and TypeScript implementations unless the user explicitly specifies otherwise. 3. When using JSON serialization, ensure that CJK strings are serialized correctly by using `ensure_ascii=False`. 4. **DO NOT** use the `requests` library in code. Always use `httpx` with async methods (`httpx.AsyncClient()`) to avoid blocking the global event loop. 5. **DO NOT** modify files under `llmsdk_docs/` unless the user explicitly requests changes to reference SDK documentation. 6. **DO NOT** add unit test functions or dedicated test suites for a single specific model; use existing parameterized tests, model capability flags, or environment-driven coverage instead. When writing documentation, follow these rules: 1. Always provide clear and concise documentation. 2. **DO NOT** include unnecessary details in the documentation. 3. Ensure that the documentation is accurate and up-to-date. 4. Remember to update the documentation whenever changes are made to the code. ## GitHub Workflow Secrets for Testing When writing tests that require calling AI models, the following secrets are available in GitHub workflows: - `ANTHROPIC_API_KEY` - API key for Anthropic Claude Models - `GEMINI_API_KEY` - API key for Google Gemini Models - `OPENAI_API_KEY` - API key for OpenAI GPT Models - `ZAI_API_KEY` - API key for Z.AI GLM Models - `MOONSHOT_API_KEY` - API key for MoonShot Kimi Models - `DEEPSEEK_API_KEY` - API key for DeepSeek Models - `MODELVERSE_API_KEY` - API key for ModelVerse Models - `OPENROUTER_API_KEY` - API key for OpenRouter Models - `SILICONFLOW_API_KEY` - API key for SiliconFlow Models - `BEDROCK_API_KEY` - API key for Amazon Bedrock Models - `VERTEX_API_KEY` - API key for Google Vertex AI Models To use these secrets in your workflow files, reference them in the `env:` section: ```yaml env: ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }} OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} ZAI_API_KEY: ${{ secrets.ZAI_API_KEY }} MOONSHOT_API_KEY: ${{ secrets.MOONSHOT_API_KEY }} DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY }} MODELVERSE_API_KEY: ${{ secrets.MODELVERSE_API_KEY }} OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }} SILICONFLOW_API_KEY: ${{ secrets.SILICONFLOW_API_KEY }} BEDROCK_API_KEY: ${{ secrets.BEDROCK_API_KEY }} VERTEX_API_KEY: ${{ secrets.VERTEX_API_KEY }} ``` These secrets can be used in your test code to authenticate with the respective AI model providers. Make sure to handle these credentials securely and never log or expose them in test output.

Questions about agenthub's system prompt

Does agenthub's system prompt contain instructions that work against the user?

No. Nothing in agenthub's system prompt was flagged as working against the person the product is talking to. That is a clean result across all eight AISPA dimensions, not an absence of checking — the full text was read instruction by instruction.

How long is agenthub's system prompt?

5,287 characters across 1 prompt on this page. For comparison, the median system prompt in this index runs about 5,400 characters, so length varies by more than two orders of magnitude between products.

How many versions of agenthub's system prompt are on record?

1. Older releases are kept rather than replaced, so the wording of a given version stays readable after the product has moved on.

Where did this agenthub system prompt come from?

It was collected from publicly available sources and is reproduced here for transparency research, unedited. This site does not extract prompts from products itself.

How was agenthub's system prompt audited?

Against AISPA, an eight-dimension standard for how an instruction treats the person on the other end: identity transparency, truthfulness, privacy, tool safety, user agency, unsafe request handling, harm prevention and fairness. This audit was ai audit. The method is described in the paper behind the standard.

How this page was made

The prompt text above is reproduced verbatim from a public source. Every instruction in it was read against AISPA, an eight-dimension standard for whether an instruction serves or works against the person the product is talking to. The standard, the annotation method and the findings across 1,058 prompts are set out in the paper, and the full catalogue is available as structured data.

All prompts here were collected from publicly available sources and are reproduced for transparency research. Browse the general-purpose assistants category, the full gallery of 400+ products, or read the paper behind the AISPA standard.