leerness 1.6.0 → 1.7.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/README.md +72 -124
- package/bin/harness.js +327 -905
- package/docs/AX_CONSISTENCY_GUIDE.md +9 -0
- package/docs/AX_MIGRATION_GUIDE.md +7 -27
- package/docs/AX_PLAN_GUIDE.md +6 -14
- package/package.json +8 -43
- package/skill-packs/ads-analytics/README.md +4 -22
- package/skill-packs/ai-verified-skill-publisher/README.md +4 -22
- package/skill-packs/appstore-review/README.md +4 -22
- package/skill-packs/commerce-api/README.md +4 -22
- package/skill-packs/crawling/README.md +4 -22
- package/skill-packs/firebase/README.md +4 -22
- package/skill-packs/office/README.md +4 -22
- package/docs/AX_NEW_PROJECT_GUIDE.md +0 -25
- package/docs/AX_SKILL_LIBRARY_GUIDE.md +0 -29
- package/skill-packs/ads-analytics/skill.json +0 -28
- package/skill-packs/ads-analytics/skills/conversion-attribution.md +0 -6
- package/skill-packs/ads-analytics/skills/ga4-debugging.md +0 -7
- package/skill-packs/ads-analytics/skills/roas-check.md +0 -7
- package/skill-packs/ai-verified-skill-publisher/skill.json +0 -31
- package/skill-packs/ai-verified-skill-publisher/skills/ai-verified-skill-upload.md +0 -16
- package/skill-packs/ai-verified-skill-publisher/skills/publish-auth-token-gate.md +0 -30
- package/skill-packs/ai-verified-skill-publisher/skills/skill-library-release-flow.md +0 -10
- package/skill-packs/ai-verified-skill-publisher/skills/skill-metadata-standard.md +0 -5
- package/skill-packs/appstore-review/skill.json +0 -28
- package/skill-packs/appstore-review/skills/privacy-labels.md +0 -6
- package/skill-packs/appstore-review/skills/review-response.md +0 -7
- package/skill-packs/appstore-review/skills/webview-app.md +0 -6
- package/skill-packs/commerce-api/skill.json +0 -32
- package/skill-packs/commerce-api/skills/common-auth.md +0 -22
- package/skill-packs/commerce-api/skills/coupang.md +0 -19
- package/skill-packs/commerce-api/skills/lotteon.md +0 -17
- package/skill-packs/commerce-api/skills/order-sync.md +0 -9
- package/skill-packs/commerce-api/skills/smartstore.md +0 -17
- package/skill-packs/crawling/skill.json +0 -28
- package/skill-packs/crawling/skills/browser-automation.md +0 -14
- package/skill-packs/crawling/skills/cloud-runtime.md +0 -7
- package/skill-packs/crawling/skills/download-automation.md +0 -9
- package/skill-packs/firebase/skill.json +0 -31
- package/skill-packs/firebase/skills/firestore-indexes.md +0 -6
- package/skill-packs/firebase/skills/functions-deploy.md +0 -13
- package/skill-packs/firebase/skills/secrets.md +0 -6
- package/skill-packs/office/skill.json +0 -28
- package/skill-packs/office/skills/excel-automation.md +0 -24
- package/skill-packs/office/skills/powerpoint-generation.md +0 -17
- package/skill-packs/office/skills/word-template.md +0 -15
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
# Skill: Commerce API Common Auth
|
|
2
|
-
|
|
3
|
-
## Sensitive data policy
|
|
4
|
-
Do not write access keys, secret keys, refresh tokens, passwords, cookies, or bearer tokens into `.harness/`.
|
|
5
|
-
Only record variable names and where the runtime should read them.
|
|
6
|
-
|
|
7
|
-
## Required pattern
|
|
8
|
-
- Local development: `.env.local`
|
|
9
|
-
- CI/CD: GitHub Actions Secrets or provider secret manager
|
|
10
|
-
- Server runtime: cloud environment variables or secret manager
|
|
11
|
-
|
|
12
|
-
## Standard variables
|
|
13
|
-
- `COMMERCE_API_BASE_URL`
|
|
14
|
-
- `COMMERCE_API_TIMEOUT_MS`
|
|
15
|
-
- Provider-specific credentials such as `COUPANG_ACCESS_KEY` or `LOTTEON_CLIENT_SECRET`
|
|
16
|
-
|
|
17
|
-
## Procedure
|
|
18
|
-
1. Read provider documentation before coding.
|
|
19
|
-
2. Create a typed config loader that validates required env names.
|
|
20
|
-
3. Centralize signing/auth header creation.
|
|
21
|
-
4. Mask sensitive values in logs.
|
|
22
|
-
5. Store request/response examples with fake data only.
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# Skill: Coupang API Integration
|
|
2
|
-
|
|
3
|
-
## Required env names
|
|
4
|
-
- `COUPANG_ACCESS_KEY`
|
|
5
|
-
- `COUPANG_SECRET_KEY`
|
|
6
|
-
- `COUPANG_VENDOR_ID`
|
|
7
|
-
|
|
8
|
-
## Rules
|
|
9
|
-
- Do not hardcode keys.
|
|
10
|
-
- Do not log authorization headers.
|
|
11
|
-
- Keep API signing logic isolated in one module.
|
|
12
|
-
- Use fake fixtures for tests.
|
|
13
|
-
|
|
14
|
-
## Procedure
|
|
15
|
-
1. Create provider config from env.
|
|
16
|
-
2. Implement request signing in a small tested function.
|
|
17
|
-
3. Build API client wrapper with timeout/retry handling.
|
|
18
|
-
4. Normalize external response into internal order/product schema.
|
|
19
|
-
5. Add troubleshooting notes to `task-log.md` after a successful integration.
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# Skill: LotteON API Integration
|
|
2
|
-
|
|
3
|
-
## Required env names
|
|
4
|
-
- `LOTTEON_CLIENT_ID`
|
|
5
|
-
- `LOTTEON_CLIENT_SECRET`
|
|
6
|
-
- `LOTTEON_SELLER_ID`
|
|
7
|
-
|
|
8
|
-
## Rules
|
|
9
|
-
- Keep auth refresh flow separate from business logic.
|
|
10
|
-
- Mask all token values in logs.
|
|
11
|
-
- Record only endpoint names and schema notes in harness files.
|
|
12
|
-
|
|
13
|
-
## Procedure
|
|
14
|
-
1. Define env config and validation.
|
|
15
|
-
2. Implement token acquisition/refresh module.
|
|
16
|
-
3. Wrap provider API with a stable internal interface.
|
|
17
|
-
4. Add fake fixtures for order/product sync.
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
# Skill: Commerce Order Sync
|
|
2
|
-
|
|
3
|
-
## Procedure
|
|
4
|
-
1. Define sync cursor: date range, order id, or updated timestamp.
|
|
5
|
-
2. Fetch in pages and save checkpoints.
|
|
6
|
-
3. Normalize provider response into internal schema.
|
|
7
|
-
4. Deduplicate by provider order id.
|
|
8
|
-
5. Log counts, not sensitive values.
|
|
9
|
-
6. Add retry and dead-letter handling for failed items.
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# Skill: SmartStore API Integration
|
|
2
|
-
|
|
3
|
-
## Required env names
|
|
4
|
-
- `SMARTSTORE_CLIENT_ID`
|
|
5
|
-
- `SMARTSTORE_CLIENT_SECRET`
|
|
6
|
-
- `SMARTSTORE_ACCOUNT_ID`
|
|
7
|
-
|
|
8
|
-
## Rules
|
|
9
|
-
- Keep account identifiers configurable.
|
|
10
|
-
- Separate provider DTOs from internal DTOs.
|
|
11
|
-
- Never store API credentials in `.harness/`.
|
|
12
|
-
|
|
13
|
-
## Procedure
|
|
14
|
-
1. Create provider config schema.
|
|
15
|
-
2. Implement token/auth flow.
|
|
16
|
-
3. Build order/product sync functions.
|
|
17
|
-
4. Validate pagination and rate limits.
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "crawling",
|
|
3
|
-
"version": "1.3.0",
|
|
4
|
-
"title": "Crawling and Browser Automation Skill Library",
|
|
5
|
-
"displayNameKo": "크롤링/브라우저 자동화 스킬 라이브러리",
|
|
6
|
-
"category": "automation",
|
|
7
|
-
"categoryKo": "크롤링/자동화",
|
|
8
|
-
"description": "API가 없거나 제한된 관리자 화면 자동화 작업을 위한 스킬입니다.",
|
|
9
|
-
"capabilities": [
|
|
10
|
-
"Playwright 기반 다운로드 자동화",
|
|
11
|
-
"로그인 세션 storageState 관리",
|
|
12
|
-
"다운로드 파일 검증",
|
|
13
|
-
"실패 시 스크린샷/로그 수집"
|
|
14
|
-
],
|
|
15
|
-
"requiresEnv": [],
|
|
16
|
-
"files": [
|
|
17
|
-
"README.md"
|
|
18
|
-
],
|
|
19
|
-
"source": "bundled",
|
|
20
|
-
"lastUpdated": "2026-04-29",
|
|
21
|
-
"lastUpdatedAt": "2026-04-29T00:00:00.000Z",
|
|
22
|
-
"verification": {
|
|
23
|
-
"status": "passed",
|
|
24
|
-
"method": "ai-assisted-review",
|
|
25
|
-
"verifiedBy": "leerness-ai",
|
|
26
|
-
"verifiedAt": "2026-04-29T00:00:00.000Z"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
# Skill: Browser Automation
|
|
2
|
-
|
|
3
|
-
## Rules
|
|
4
|
-
- Prefer official APIs when available.
|
|
5
|
-
- Respect site terms, robots restrictions, and rate limits.
|
|
6
|
-
- Do not store cookies, passwords, or session tokens in `.harness/`.
|
|
7
|
-
- Keep selectors stable and add screenshots on failure.
|
|
8
|
-
|
|
9
|
-
## Procedure
|
|
10
|
-
1. Identify whether API exists.
|
|
11
|
-
2. Define login/session handling using runtime secrets.
|
|
12
|
-
3. Use robust selectors and explicit waits.
|
|
13
|
-
4. Add retry, timeout, and failure screenshot capture.
|
|
14
|
-
5. Keep downloaded files in a controlled output path.
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
# Skill: Download Automation
|
|
2
|
-
|
|
3
|
-
## Procedure
|
|
4
|
-
1. Prepare output directory.
|
|
5
|
-
2. Trigger download and wait for the browser download event.
|
|
6
|
-
3. Save with deterministic filename.
|
|
7
|
-
4. Validate file extension and size.
|
|
8
|
-
5. Parse and normalize after download.
|
|
9
|
-
6. Record failure reason without sensitive data.
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "firebase",
|
|
3
|
-
"version": "1.3.0",
|
|
4
|
-
"title": "Firebase and Cloud Functions Skill Library",
|
|
5
|
-
"displayNameKo": "Firebase/Cloud Functions 스킬 라이브러리",
|
|
6
|
-
"category": "cloud",
|
|
7
|
-
"categoryKo": "Firebase/클라우드",
|
|
8
|
-
"description": "Firebase Functions, Firestore, Cloud Run 배포·디버깅을 위한 스킬입니다.",
|
|
9
|
-
"capabilities": [
|
|
10
|
-
"Functions 배포 오류 점검",
|
|
11
|
-
"Firestore rules/indexes 검토",
|
|
12
|
-
"Cloud Run 권한/IAM 체크",
|
|
13
|
-
"환경변수와 secret 분리"
|
|
14
|
-
],
|
|
15
|
-
"requiresEnv": [
|
|
16
|
-
"GOOGLE_APPLICATION_CREDENTIALS",
|
|
17
|
-
"FIREBASE_PROJECT_ID"
|
|
18
|
-
],
|
|
19
|
-
"files": [
|
|
20
|
-
"README.md"
|
|
21
|
-
],
|
|
22
|
-
"source": "bundled",
|
|
23
|
-
"lastUpdated": "2026-04-29",
|
|
24
|
-
"lastUpdatedAt": "2026-04-29T00:00:00.000Z",
|
|
25
|
-
"verification": {
|
|
26
|
-
"status": "passed",
|
|
27
|
-
"method": "ai-assisted-review",
|
|
28
|
-
"verifiedBy": "leerness-ai",
|
|
29
|
-
"verifiedAt": "2026-04-29T00:00:00.000Z"
|
|
30
|
-
}
|
|
31
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# Skill: Firebase Functions Deploy
|
|
2
|
-
|
|
3
|
-
## Rules
|
|
4
|
-
- Check runtime version and function generation before deploy.
|
|
5
|
-
- Keep region, memory, timeout, and invoker settings explicit.
|
|
6
|
-
- Avoid broad public invoker unless required.
|
|
7
|
-
|
|
8
|
-
## Procedure
|
|
9
|
-
1. Inspect `firebase.json`, `.firebaserc`, and functions package.
|
|
10
|
-
2. Validate environment variables and secrets.
|
|
11
|
-
3. Build and test locally when possible.
|
|
12
|
-
4. Deploy targeted functions first for risky changes.
|
|
13
|
-
5. Record deploy result in `task-log.md`.
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "office",
|
|
3
|
-
"version": "1.3.0",
|
|
4
|
-
"title": "Microsoft Office Automation Skill Library",
|
|
5
|
-
"displayNameKo": "마이크로소프트 오피스 자동화 스킬 라이브러리",
|
|
6
|
-
"category": "office",
|
|
7
|
-
"categoryKo": "문서/오피스 자동화",
|
|
8
|
-
"description": "Word, Excel, PowerPoint 문서 생성·편집·검증 작업을 위한 스킬입니다.",
|
|
9
|
-
"capabilities": [
|
|
10
|
-
"DOCX 템플릿 기반 문서 생성",
|
|
11
|
-
"PPTX 구조화 및 발표자료 생성",
|
|
12
|
-
"XLSX 데이터 정리와 서식 유지",
|
|
13
|
-
"문서 산출물 검증 체크리스트 적용"
|
|
14
|
-
],
|
|
15
|
-
"requiresEnv": [],
|
|
16
|
-
"files": [
|
|
17
|
-
"README.md"
|
|
18
|
-
],
|
|
19
|
-
"source": "bundled",
|
|
20
|
-
"lastUpdated": "2026-04-29",
|
|
21
|
-
"lastUpdatedAt": "2026-04-29T00:00:00.000Z",
|
|
22
|
-
"verification": {
|
|
23
|
-
"status": "passed",
|
|
24
|
-
"method": "ai-assisted-review",
|
|
25
|
-
"verifiedBy": "leerness-ai",
|
|
26
|
-
"verifiedAt": "2026-04-29T00:00:00.000Z"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
# Skill: Excel Automation
|
|
2
|
-
|
|
3
|
-
## When to use
|
|
4
|
-
Use this when generating, editing, validating, or summarizing Excel workbooks.
|
|
5
|
-
|
|
6
|
-
## Rules
|
|
7
|
-
- Never overwrite the original workbook without creating an output copy.
|
|
8
|
-
- Preserve formulas, formatting, merged cells, filters, widths, and hidden sheets unless explicitly asked to change them.
|
|
9
|
-
- For data transformations, keep a clear before/after summary.
|
|
10
|
-
- Do not store personal data or credentials in harness files.
|
|
11
|
-
|
|
12
|
-
## Procedure
|
|
13
|
-
1. Identify workbook purpose, key sheets, and required output.
|
|
14
|
-
2. Inspect structure before editing.
|
|
15
|
-
3. Apply the minimum necessary transformation.
|
|
16
|
-
4. Validate row counts, formulas, and totals.
|
|
17
|
-
5. Save a new output file.
|
|
18
|
-
6. Update `.harness/session-handoff.md` with what changed.
|
|
19
|
-
|
|
20
|
-
## Output checklist
|
|
21
|
-
- Changed sheets
|
|
22
|
-
- Added/removed columns
|
|
23
|
-
- Validation result
|
|
24
|
-
- Output filename
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# Skill: PowerPoint Generation
|
|
2
|
-
|
|
3
|
-
## When to use
|
|
4
|
-
Use this when creating or modifying slide decks.
|
|
5
|
-
|
|
6
|
-
## Rules
|
|
7
|
-
- Keep one clear message per slide.
|
|
8
|
-
- Reuse existing theme, fonts, layout, and spacing when editing an existing deck.
|
|
9
|
-
- Avoid dense paragraphs; convert to structured bullets or visuals.
|
|
10
|
-
- Do not embed confidential business data in reusable skill files.
|
|
11
|
-
|
|
12
|
-
## Procedure
|
|
13
|
-
1. Define audience, purpose, and slide count.
|
|
14
|
-
2. Create outline before slide generation.
|
|
15
|
-
3. Apply consistent title, body, visual hierarchy, and spacing.
|
|
16
|
-
4. Check readability and page overflow.
|
|
17
|
-
5. Export and document the output.
|
|
@@ -1,15 +0,0 @@
|
|
|
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.
|