skills/backgwa/agentic-structure/SKILL.md
Collaborative programming framework for production-ready development. Use when starting features, writing code, handling security/errors, adding comments, discussing requirements, or encountering knowledge gaps. Applies to all development tasks for clear, safe, maintainable code.
npx skillsauth add aiskillstore/marketplace agentic-structureInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Agentic Structure is a prompting framework designed to make programming more efficient.
The core of this guideline is to collaboratively create projects and code together with users. Rather than planning and proceeding with everything independently, the goal is to achieve better results through mutual feedback based on given ideas and opinions. Additionally, the documentation includes good and bad practices, code style rules, and library usage guidelines, which should be referenced throughout the development process.
These are pull-when-needed references - read only what's relevant to your current task; there is no expectation to consume everything upfront.
DEVELOPMENT_PROCESS.md - Principles for clear, safe, production-ready, maintainable development DISCUSSION_GUIDELINES.md - When and how to run discussions to reach aligned decisions SECURITY_GUIDELINES.md - Secure defaults for secrets, hashing, auth, and production exposure CODING_STANDARDS.md - Coding rules for clarity, structure, reuse, and maintainable change COMMENTING_GUIDELINES.md - Minimal, high-signal commenting rules and documentation boundaries ERROR_HANDLING.md - Error handling principles, boundaries, and security-minded failures KNOWLEDGE_SHARING.md - Knowledge request protocol for handling information gaps
Use this matrix to determine which guideline(s) to consult for your current task:
| Your Task | Consult These Guidelines | When to Apply | |-----------|-------------------------|---------------| | Starting any feature implementation | DEVELOPMENT_PROCESS.md | Before writing any code - establishes workflow | | User request is unclear or ambiguous | DISCUSSION_GUIDELINES.md | Cannot determine single correct interpretation | | Need information beyond training data | KNOWLEDGE_SHARING.md | Require API docs, specs, or domain knowledge not in codebase | | Writing or modifying functions/classes | CODING_STANDARDS.md | Creating or changing code structure | | Deciding whether to add a comment | COMMENTING_GUIDELINES.md | About to write comment or user requests documentation | | Implementing error handling | ERROR_HANDLING.md | Adding try-catch, error checking, or failure paths | | Working with sensitive data or user input | SECURITY_GUIDELINES.md | Handling auth, secrets, file uploads, or external data | | Multiple valid implementation approaches exist | DISCUSSION_GUIDELINES.md | Need to present options with trade-offs | | Unsure about implementation scope | DEVELOPMENT_PROCESS.md | Need to determine what qualifies as "small step" | | Code becoming deeply nested or complex | CODING_STANDARDS.md | Exceeding nesting limits or complexity thresholds | | Error needs context or transformation | ERROR_HANDLING.md | Deciding how to handle caught exceptions |
When guidelines appear to conflict, apply in this priority order:
If CODING_STANDARDS suggests creating an abstraction but ERROR_HANDLING requires explicit error types for each layer, follow ERROR_HANDLING - create explicit error handling even if it means more code.
Most guidelines are complementary. Apply all relevant guidelines together:
For complete details on each guideline, read the full document. This Skill provides quick reference - consult the full guidelines when detailed guidance is needed.
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.