Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
git clone --depth 1 https://github.com/Venkateshvenki404224/frappe-apps-managerWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/venkateshvenki404224/frappe-apps-manager/frappe-config)<a href="https://agentmods.dev/commands/venkateshvenki404224/frappe-apps-manager/frappe-config"><img src="https://agentmods.dev/badge/commands/venkateshvenki404224/frappe-apps-manager/frappe-config/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/venkateshvenki404224/frappe-apps-manager/frappe-config"><img src="https://agentmods.dev/badge/commands/venkateshvenki404224/frappe-apps-manager/frappe-config.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00014 | $0.02618 |
| Opus 5 | $0.00007 | $0.01309 |
| Sonnet 5 | $0.00003 | $0.00524 |
| Haiku 4.5 | $0.00001 | $0.00262 |
Grade B, and why
frappe-config scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
sudo chown frappe:frappe sites/[site-name]/site_config.json How it starts
The opening of the file, as written. The whole thing — 433 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Frappe Config Command
Manage Frappe site configuration including site_config.json settings, environment variables, and feature flags.
Steps to Execute
1. Verify Environment
- Check if in valid Frappe bench
- Verify site exists
- Check site_config.json file exists
2. Configuration Operation Selection
Ask user what they want to configure:
A. View Current Config
- Display site_config.json
- Show environment variables
- List feature flags
B. Database Settings
- Configure MariaDB/PostgreSQL
- Set connection parameters
- Configure read replicas
C. Redis Settings
- Configure cache Redis
- Configure queue Redis
- Configure socketio Redis
D. Email Settings
- SMTP configuration
- Email accounts
- Outgoing email settings
E. Developer Settings
- Developer mode
- Debug mode
- Logging levels
F. Feature Flags
- Enable/disable features
- Experimental features
- Module toggles
3. View Configuration
Display site_config.json:
cat sites/[site-name]/site_config.json | jq .
Get Specific Config:
bench --site [site-name] console
>>> frappe.conf.get('db_name')
>>> frappe.conf.get('developer_mode')
List All Configs:
import json
print(json.dumps(frappe.conf, indent=2))
4. Set Configuration Values
Set Single Value:
bench --site [site-name] set-config [key] [value]
Examples:
# Enable developer mode
bench --site [site-name] set-config developer_mode 1
# Set session timeout
bench --site [site-name] set-config session_timeout 3600
# Set file size limit
bench --site [site-name] set-config max_file_size 10485760
Set Multiple Values:
# Via console
config_updates = {
'developer_mode': 1,
'allow_tests': 1,
'log_queries': 1
}
for key, value in config_updates.items():
frappe.db.set_value('Website Settings', None, key, value)
frappe.db.commit()
5. Database Configuration
Database Settings:
{
"db_name": "site_db",
"db_host": "localhost",
"db_port": 3306,
"db_type": "mariadb",
"db_socket": "/var/run/mysqld/mysqld.sock"
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 433 lines · 14 tokens per session scan B 565956d914ee
frappe-config is a command published in the GitHub repository Venkateshvenki404224/frappe-apps-manager (27 stars, last pushed 3mo ago), licensed MIT. It adds 14 tokens to every session and 2,618 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
init
Initialize configurations for Supabase local development.
http-service
Build, review or debug a Bun HTTP service. Loads the http-service skill, then works the task through its workflow.
start-10-1
A guided lesson on setting up clasp, a command-line tool for managing Google Apps Script projects, and connecting it to Google’s Apps Script API.
api-contract-review
Review an API contract (endpoints, request/response shapes, error codes, auth model) BEFORE implementation for naming consistency, versioning, pagination, idempotency, and alignment with existing endpoints. Distinct from review-hard (post-implementation risk) and repo-consistency-sweep (pattern matching on written…
fastapi
FastAPI application design and implementation conventions. Use this skill when building, updating, or reviewing FastAPI services, routers, dependencies, request/response schemas, streaming endpoints, or API tests. Trigger on FastAPI-specific work such as path operation design, dependency injection, response models…
build
Discover an AI Gateway's models and MCP tools, retrieve a credential, and integrate them into your app — call a model, connect MCP tools, or scaffold a runnable agent.