bashless
Amend an existing Claude Code setup to replace the Bash tool with structured MCP tools, reducing agent reliance on unstructured shell access.
Create an initial Claude Code setup for a brownfield project with monorepo topology (including hybrid submodular configurations).
$ npx -y skills add ralfstrobel/agentic-brownfield-coding --skill monorepo --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/monorepoContext preview
The summary Claude sees to decide when to auto-load this skill.
Create an initial Claude Code setup for a brownfield project with monorepo topology (including hybrid submodular configurations).
description: > Create an initial Claude Code setup for a brownfield project with monorepo topology (including hybrid submodular configurations). disable-model-invocation: true user-invocable: true
Your goal is to create an initial setup for Claude Code in a large pre-existing monorepo project, including agent instructions and context information. You work in close collaboration with the user to obtain the required base knowledge about the goals and structure of the project as well as each sub-project.
**Additional user arguments**: $ARGUMENTS
**Language hint**: Always create all generated document content in English for consistency across the codebase, while continuing to speak to the user in the language of their choice.
**Platform hint**: Instructions and templates assume a Linux host with GNU coreutils. Adapt to the detected user OS.
Highlight this requirement in the Debriefing. Set `"shell": "bash"` on command hooks in `settings.json`. Omit the entire `sandbox` block from `settings.json` as long as bash sandboxing is unsupported.
When generating content for `.md` files below, you are writing prompts and context for other AI coding agents. Follow these principles to optimally tailor your instructions to their needs:
Avoid aspirational quality statements, general engineering practices, blanket prohibitions.
Do not describe how code works in agent instructions as such duplication leads to drift.
contain core project identity and semantics. Sub-project CLAUDE.md, rules and agent instructions progressively disclose domain- and task-specific knowledge.
Reference namespaces or search terms instead of single artifacts.
Begin execution by creating a formal task list for progress tracking using the `TaskCreate` tool (if available). Create a task for each of the following phases (##) and sub-phases (###). This protects you from accidentally skipping phases and visualizes the progress for the user.
1. Use `Explore` agents to scan the repository and build an initial understanding of its structure
2. Read any discovered documentation and technology manifest files 3. Check for an existing `CLAUDE.md` or `.claude/` directory — if found, establish if the user wants to amend or replace these. 4. Summarize your findings and conclusions briefly for the user and ask if they want to comment or add information.
Interview the user to establish the project's base details and sub-project boundaries. Use `AskUserQuestion` where appropriate to keep the conversation structured.
Offer pre-defined choice options if likely answers to a question are already known from context. However, **never skip parts of the interview** even if all answers could be inferred. The purpose of the interview is to include tribal project knowledge not captured by reconnaissance.
1. What is the name of the project? 2. Who is the project creator and/or maintainer (company/organization)? 3. What is the overall purpose of the project (one-sentence summary)? 4. What is the production scale of the project (data size, number of users)? 5. What is the general technological approach of the project (one-sentence summary)? 6. What are key concepts or vocabulary that every developer needs to learn on their first day (independent of sub-project)? 7. What sub-projects or applications exist in this monorepo?
Go through **every** sub-project established in general question 7 and repeat these questions for each of them.
1. What is the name of the sub-project or the development team (e.g. "backend" / "frontend")? (If the name is more than one word, also establish a short slug to use in generated files.) 2. What are the main purposes / functions of the sub-project? 3. What are key terms or vocabulary that every developer in this sub-project needs to know? 4. What are the main technologies used (programming language, framework, deployment...)? 5. Does this sub-project live under a **dedicated root directory**?
This is typically `<namespace-path>/**/*.<language-extension>`. 6. What are the key source directories? 7. How are automated tests organized and run? 8. Are there tools for linting or other automated code quality control?
1. Copy the [settings template](./templates/settings-template.json) to `<project-dir>/.claude/settings.json` 2. Copy the [statusline template](./templ
This Claude Code plugin repo assists complex software projects in their first steps towards agentic coding: Scaffolding and gradually augmenting an existing codebase with an efficient harness setup.
Amend an existing Claude Code setup to replace the Bash tool with structured MCP tools, reducing agent reliance on unstructured shell access.
Assists in the creation of a headless Claude Code batch script that runs an isolated micro-session per item (file, line, task) for ad-hoc automation such as…
Create an initial Claude Code setup for a brownfield project with a single-application topology (no sub-projects or monorepo structure).