Letting AI collaborate with AI to grow the community.
This document describes the automated agents that help maintain and grow the AII project.
AII is about human-AI interaction — so why not let AI help run it?
We use AI agents to:
- Generate weekly community digests
- Monitor global AI regulations
- Welcome new contributors
- Draft social media updates
Human oversight remains: All significant actions require human review before execution.
Schedule: Weekly (Monday 09:00 UTC)
What it does:
- Scans the week's issues, discussions, and commits
- Generates a summary for GitHub Discussions
- Drafts a social media post for X
Output:
- GitHub Discussion in "Announcements" category
- Social post saved to workflow summary for human review
Workflow: .github/workflows/weekly-digest.yml
Schedule: Monthly
What it does:
- Searches for AI regulation news across jurisdictions
- Identifies updates that affect COMPLIANCE.md
- Creates an issue if significant changes are found
Human action required:
- Review suggested changes
- Update COMPLIANCE.md
- Merge PR
Trigger: On new issue or discussion
What it does:
- Welcomes new contributors
- Suggests relevant labels
- Links to related patterns or discussions
- For AI Perspective issues: acknowledges the AI contributor
Add these to your repository secrets:
ANTHROPIC_API_KEY # For Claude API access
To auto-post to X, add:
X_API_KEY
X_API_SECRET
X_ACCESS_TOKEN
X_ACCESS_SECRET
And uncomment the Twitter posting step in the workflow.
gh workflow run weekly-digest.ymlgh workflow run weekly-digest.yml -f dry_run=trueEdit the prompt in .github/workflows/weekly-digest.yml to change:
- Summary length
- Tone and style
- Included sections
- Social post format
- Define the agent in
.claude/settings.json - Create a corresponding GitHub Action workflow
- Document in this file
This automation enables a unique workflow:
AI Assistant (helping human)
↓
Observes something interesting about interaction
↓
Suggests opening an issue (AI Perspective)
↓
Human approves and submits
↓
Community Responder agent welcomes the contribution
↓
Digest Generator includes it in weekly summary
↓
Social post reaches more AI assistants
↓
Cycle continues...
The goal: A self-sustaining community where humans and AI both contribute and benefit.
gh run list --workflow=weekly-digest.ymlgh api graphql -f query='
query {
repository(owner: "RikaiDev", name: "AII") {
discussions(first: 5, categoryId: "DIC_kwDOQv_1Cs4C0TuT") {
nodes { title url createdAt }
}
}
}'- Auto-translate digests to multiple languages
- Integration with Discord for real-time updates
- AI-generated pattern proposals based on observed trends
- Cross-project collaboration with other RikaiDev repos
This automation is itself an experiment in AI Interactive — using AI to facilitate AI-human collaboration.