leerness 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +205 -0
- package/bin/harness.js +369 -0
- package/docs/AX_SKILL_LIBRARY_GUIDE.md +156 -0
- package/harness.js +2 -0
- package/package.json +50 -0
- package/skill-packs/ads-analytics/skill.json +31 -0
- package/skill-packs/ads-analytics/skills/conversion-attribution.md +6 -0
- package/skill-packs/ads-analytics/skills/ga4-debugging.md +7 -0
- package/skill-packs/ads-analytics/skills/roas-check.md +7 -0
- package/skill-packs/appstore-review/skill.json +29 -0
- package/skill-packs/appstore-review/skills/privacy-labels.md +6 -0
- package/skill-packs/appstore-review/skills/review-response.md +7 -0
- package/skill-packs/appstore-review/skills/webview-app.md +6 -0
- package/skill-packs/commerce-api/skill.json +40 -0
- package/skill-packs/commerce-api/skills/common-auth.md +22 -0
- package/skill-packs/commerce-api/skills/coupang.md +19 -0
- package/skill-packs/commerce-api/skills/lotteon.md +17 -0
- package/skill-packs/commerce-api/skills/order-sync.md +9 -0
- package/skill-packs/commerce-api/skills/smartstore.md +17 -0
- package/skill-packs/crawling/skill.json +32 -0
- package/skill-packs/crawling/skills/browser-automation.md +14 -0
- package/skill-packs/crawling/skills/cloud-runtime.md +7 -0
- package/skill-packs/crawling/skills/download-automation.md +9 -0
- package/skill-packs/firebase/skill.json +31 -0
- package/skill-packs/firebase/skills/firestore-indexes.md +6 -0
- package/skill-packs/firebase/skills/functions-deploy.md +13 -0
- package/skill-packs/firebase/skills/secrets.md +6 -0
- package/skill-packs/office/skill.json +29 -0
- package/skill-packs/office/skills/excel-automation.md +24 -0
- package/skill-packs/office/skills/powerpoint-generation.md +17 -0
- package/skill-packs/office/skills/word-template.md +15 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Skill: Word Template Documents
|
|
2
|
+
|
|
3
|
+
## When to use
|
|
4
|
+
Use this for contracts, reports, proposals, manuals, and structured documents.
|
|
5
|
+
|
|
6
|
+
## Rules
|
|
7
|
+
- Preserve heading hierarchy and section numbering.
|
|
8
|
+
- Separate reusable template text from project-specific data.
|
|
9
|
+
- Mark placeholders with `{{VARIABLE_NAME}}` instead of real sensitive values.
|
|
10
|
+
|
|
11
|
+
## Procedure
|
|
12
|
+
1. Confirm document purpose and required sections.
|
|
13
|
+
2. Build or update template structure.
|
|
14
|
+
3. Insert variables, not secrets.
|
|
15
|
+
4. Validate tables, headings, page breaks, and references.
|