@event4u/agent-config 2.16.0 → 2.18.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/.agent-src/commands/ghostwriter/delete.md +118 -0
- package/.agent-src/commands/ghostwriter/fetch.md +185 -0
- package/.agent-src/commands/ghostwriter/list.md +102 -0
- package/.agent-src/commands/ghostwriter/show.md +113 -0
- package/.agent-src/commands/ghostwriter/write.md +160 -0
- package/.agent-src/commands/ghostwriter.md +96 -0
- package/.agent-src/commands/post-as/ghostwriter.md +66 -0
- package/.agent-src/commands/post-as/me.md +124 -0
- package/.agent-src/commands/post-as.md +58 -0
- package/.agent-src/ghostwriter/README.md +61 -0
- package/.agent-src/ghostwriter/fictional-fixture-v1.md +94 -0
- package/.agent-src/personas/README.md +8 -0
- package/.agent-src/rules/domain-safety-disclaimer-consulting.md +52 -0
- package/.agent-src/rules/domain-safety-disclaimer-financial.md +54 -0
- package/.agent-src/rules/domain-safety-disclaimer-legal.md +49 -0
- package/.agent-src/rules/domain-safety-disclaimer-medical.md +56 -0
- package/.agent-src/rules/domain-safety-export-redact.md +65 -0
- package/.agent-src/rules/domain-safety-logging-pii-floor.md +55 -0
- package/.agent-src/rules/domain-safety-pii-finance.md +57 -0
- package/.agent-src/rules/domain-safety-pii-marketing.md +60 -0
- package/.agent-src/rules/domain-safety-pii-recruiting.md +56 -0
- package/.agent-src/rules/domain-safety-pii-support.md +57 -0
- package/.agent-src/rules/domain-safety-retention-finance.md +48 -0
- package/.agent-src/rules/domain-safety-retention-support.md +55 -0
- package/.agent-src/skills/api-design/SKILL.md +3 -0
- package/.agent-src/skills/authz-review/SKILL.md +3 -0
- package/.agent-src/skills/competitive-moat-analysis/SKILL.md +3 -0
- package/.agent-src/skills/competitive-positioning/SKILL.md +3 -0
- package/.agent-src/skills/content-funnel-design/SKILL.md +3 -0
- package/.agent-src/skills/contracts-cognition/SKILL.md +3 -0
- package/.agent-src/skills/dashboard-design/SKILL.md +3 -0
- package/.agent-src/skills/data-handling-judgment/SKILL.md +3 -0
- package/.agent-src/skills/dcf-modeling/SKILL.md +3 -0
- package/.agent-src/skills/deal-qualification-meddic/SKILL.md +3 -0
- package/.agent-src/skills/discovery-interview/SKILL.md +3 -0
- package/.agent-src/skills/editorial-calendar/SKILL.md +3 -0
- package/.agent-src/skills/forecast-accuracy/SKILL.md +3 -0
- package/.agent-src/skills/forecasting/SKILL.md +3 -0
- package/.agent-src/skills/fundraising-narrative/SKILL.md +3 -0
- package/.agent-src/skills/gtm-launch/SKILL.md +3 -0
- package/.agent-src/skills/incident-commander/SKILL.md +3 -0
- package/.agent-src/skills/launch-readiness/SKILL.md +3 -0
- package/.agent-src/skills/messaging-architecture/SKILL.md +3 -0
- package/.agent-src/skills/okr-tree-modeling/SKILL.md +3 -0
- package/.agent-src/skills/pipeline-strategy/SKILL.md +3 -0
- package/.agent-src/skills/playwright-architect/SKILL.md +3 -0
- package/.agent-src/skills/privacy-review/SKILL.md +4 -1
- package/.agent-src/skills/quality-tools/SKILL.md +3 -0
- package/.agent-src/skills/release-comms/SKILL.md +3 -0
- package/.agent-src/skills/runway-cognition/SKILL.md +3 -0
- package/.agent-src/skills/scenario-modeling/SKILL.md +3 -0
- package/.agent-src/skills/secrets-management/SKILL.md +3 -0
- package/.agent-src/skills/tech-debt-tracker/SKILL.md +3 -0
- package/.agent-src/skills/unit-economics-modeling/SKILL.md +3 -0
- package/.agent-src/skills/voc-extract/SKILL.md +3 -0
- package/.agent-src/skills/voice-and-tone-design/SKILL.md +3 -0
- package/.agent-src/templates/agents/agent-project-settings.example.yml +16 -1
- package/.claude-plugin/marketplace.json +10 -1
- package/CHANGELOG.md +98 -0
- package/README.md +44 -23
- package/config/agent-settings.template.yml +7 -0
- package/config/gitignore-block.txt +8 -0
- package/docs/announcements/2026-05-non-dev-launch.md +79 -0
- package/docs/architecture.md +2 -2
- package/docs/case-studies/_template.md +60 -0
- package/docs/catalog.md +25 -4
- package/docs/contracts/adr-install-user-type-axis.md +107 -0
- package/docs/contracts/agent-user-schema.md +1 -0
- package/docs/contracts/command-clusters.md +2 -0
- package/docs/contracts/file-ownership-matrix.json +490 -0
- package/docs/contracts/ghostwriter-schema.md +337 -0
- package/docs/contracts/init-telemetry.md +132 -0
- package/docs/contracts/router-blending.md +71 -0
- package/docs/contracts/universal-skills.md +92 -0
- package/docs/contracts/write-engine.md +142 -0
- package/docs/getting-started-by-role.md +89 -0
- package/docs/getting-started-laravel.md +72 -0
- package/docs/getting-started.md +2 -2
- package/docs/safety.md +30 -0
- package/package.json +1 -1
- package/scripts/audit_user_type_axis.py +140 -0
- package/scripts/bench_runner.py +158 -0
- package/scripts/check_role_doc_links.py +110 -0
- package/scripts/compress.py +11 -0
- package/scripts/ghostwriter_fixture_allowlist.txt +16 -0
- package/scripts/install +9 -1
- package/scripts/install.py +214 -8
- package/scripts/install.sh +7 -0
- package/scripts/lint_ghostwriter_source.py +240 -0
- package/scripts/mcp_server/prompts.py +134 -2
- package/scripts/measure_skill_reduction.py +102 -0
- package/scripts/schemas/rule.schema.json +5 -0
- package/scripts/schemas/skill.schema.json +6 -0
- package/scripts/schemas/user-type-axis.schema.json +56 -0
- package/scripts/sync_agent_settings.py +6 -0
- package/scripts/update-github-metadata.sh +84 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
# scripts/update-github-metadata.sh
|
|
3
|
+
#
|
|
4
|
+
# Step-12 Phase 6 L113 — apply the Universal-OS reframe to GitHub repo
|
|
5
|
+
# metadata (description + topics). Drafted per AI-Council verdict
|
|
6
|
+
# 2026-05-15-step12-final-push (Decision 3 AMEND: reviewable script,
|
|
7
|
+
# explicit maintainer approval to execute).
|
|
8
|
+
#
|
|
9
|
+
# Iron Law (.augment/rules/non-destructive-by-default.md):
|
|
10
|
+
# GitHub repo description/topics are PUBLIC project metadata.
|
|
11
|
+
# This script does NOT auto-run. Maintainer must invoke it explicitly.
|
|
12
|
+
#
|
|
13
|
+
# Usage:
|
|
14
|
+
# ./scripts/update-github-metadata.sh # dry-run (prints curl payload)
|
|
15
|
+
# ./scripts/update-github-metadata.sh --apply # actually call the API
|
|
16
|
+
#
|
|
17
|
+
# Rollback:
|
|
18
|
+
# gh api repos/event4u-app/agent-config --method PATCH \
|
|
19
|
+
# -f description="agent-config — Behavior, Memory and Delivery Governance for AI Agents"
|
|
20
|
+
# (Topics: re-PUT the original list from `gh api repos/event4u-app/agent-config | jq .topics`.)
|
|
21
|
+
set -euo pipefail
|
|
22
|
+
|
|
23
|
+
OWNER_REPO="event4u-app/agent-config"
|
|
24
|
+
|
|
25
|
+
NEW_DESCRIPTION="Universal AI Agent OS — governed skills, rules, commands for developers, founders, creators, GTM, finance/ops"
|
|
26
|
+
|
|
27
|
+
# Existing topics preserved; reframe topics appended.
|
|
28
|
+
TOPICS=(
|
|
29
|
+
"agent-rules"
|
|
30
|
+
"agent-skills"
|
|
31
|
+
"agentic-ai"
|
|
32
|
+
"agentskills-standard"
|
|
33
|
+
"ai-coding"
|
|
34
|
+
"augment-agent"
|
|
35
|
+
"claude-code"
|
|
36
|
+
"copilot"
|
|
37
|
+
"devcontainer"
|
|
38
|
+
"governance"
|
|
39
|
+
"laravel"
|
|
40
|
+
"php"
|
|
41
|
+
"react"
|
|
42
|
+
"symfony"
|
|
43
|
+
"universal-ai-os"
|
|
44
|
+
"ai-governance"
|
|
45
|
+
"non-developer-tools"
|
|
46
|
+
)
|
|
47
|
+
|
|
48
|
+
APPLY="${1:-}"
|
|
49
|
+
|
|
50
|
+
if [[ "${APPLY}" != "--apply" ]]; then
|
|
51
|
+
echo "=== DRY RUN — no API call ==="
|
|
52
|
+
echo "Target repo: ${OWNER_REPO}"
|
|
53
|
+
echo "New description: ${NEW_DESCRIPTION}"
|
|
54
|
+
echo "New topics:"
|
|
55
|
+
printf ' - %s\n' "${TOPICS[@]}"
|
|
56
|
+
echo
|
|
57
|
+
echo "To apply, re-run with --apply (requires gh authenticated as repo admin)."
|
|
58
|
+
exit 0
|
|
59
|
+
fi
|
|
60
|
+
|
|
61
|
+
# Apply path — requires gh CLI authenticated.
|
|
62
|
+
if ! command -v gh >/dev/null 2>&1; then
|
|
63
|
+
echo "error: gh CLI not found. Install from https://cli.github.com." >&2
|
|
64
|
+
exit 1
|
|
65
|
+
fi
|
|
66
|
+
|
|
67
|
+
echo "Applying description …"
|
|
68
|
+
gh api "repos/${OWNER_REPO}" \
|
|
69
|
+
--method PATCH \
|
|
70
|
+
-f "description=${NEW_DESCRIPTION}" \
|
|
71
|
+
--silent
|
|
72
|
+
|
|
73
|
+
echo "Applying topics …"
|
|
74
|
+
TOPIC_ARGS=()
|
|
75
|
+
for t in "${TOPICS[@]}"; do
|
|
76
|
+
TOPIC_ARGS+=(-f "names[]=${t}")
|
|
77
|
+
done
|
|
78
|
+
gh api "repos/${OWNER_REPO}/topics" \
|
|
79
|
+
--method PUT \
|
|
80
|
+
-H "Accept: application/vnd.github.mercy-preview+json" \
|
|
81
|
+
"${TOPIC_ARGS[@]}" \
|
|
82
|
+
--silent
|
|
83
|
+
|
|
84
|
+
echo "Done. Verify at https://github.com/${OWNER_REPO}"
|