说明:
- 本文档只整理本次会话中和「图片生成 / 风格控制 / 输出约束」相关的提示词内容。
- 目标是保留可复用的 prompt 资产,不展开内部工具细节。
- 适用于后续继续批量生成白皮书配图、产品概念图、方案图、监控图、证书墙、联系卡等。
本次会话中,用户最核心的原始要求可以归纳为下面这组约束:
| <template> | |
| <div class="layout-breadcrumb-seting"> | |
| <el-drawer | |
| :title="$t('layout.configTitle')" | |
| v-model="getThemeConfig.isDrawer" | |
| direction="rtl" | |
| destroy-on-close | |
| size="260px" | |
| @close="onDrawerClose" | |
| > |
| # Project Policy | |
| This policy provides a single, authoritative, and machine-readable source of truth for AI coding agents and humans, ensuring that all work is governed by clear, unambiguous rules and workflows. It aims to eliminate ambiguity, reduce supervision needs, and facilitate automation while maintaining accountability and compliance with best practices. | |
| # 1. Introduction | |
| > Rationale: Sets the context, actors, and compliance requirements for the policy, ensuring all participants understand their roles and responsibilities. | |
| ## 1.1 Actors |
| // Types for the result object with discriminated union | |
| type Success<T> = { | |
| data: T; | |
| error: null; | |
| }; | |
| type Failure<E> = { | |
| data: null; | |
| error: E; | |
| }; |