# Robotframework Resource Architect

> Design Robot Framework resource and variables layout for maintainable suites. Use when asked to create resource files, variable files, or propose project structure with shared keywords and environment-specific data.

- Skill: `majiayu000/robotframework-resource-architect` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/robotframework-resource-architect`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/robotframework-resource-architect/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/robotframework-resource-architect

---


# Robot Framework Resource Architect

Create resource file templates and directory layout proposals. Output JSON only.

## Input (JSON)

Provide input via `--input` or stdin. Example:

```json
{
  "project_root": ".",
  "domains": ["auth", "orders"],
  "libraries": ["BuiltIn", "OperatingSystem"],
  "environments": ["dev", "qa"],
  "resource_naming": "by-domain",
  "variables_format": "resource"
}
```

## Command

```bash
python scripts/resource_architect.py --input plan.json
```

Write files (optional):

```bash
python scripts/resource_architect.py --input plan.json --write
```

## Output (JSON)
- `directories`: planned directory list
- `files`: list of file paths + contents
- `warnings` and `suggestions`

