By infiquetra
Full Todoist integration for natural-language task management, task readiness review, daily planning workflows, and productivity coaching through Claude Code conversations
npx claudepluginhub infiquetra/infiquetra-claude-plugins --plugin todoist-managerConverts a complex task or vague goal into well-structured, actionable Todoist subtasks with realistic time estimates and appropriate metadata.
Structured review of 1-3 Todoist tasks for clarity, actionability, and execution readiness. Scores each task on a 10-point rubric and provides specific improvement recommendations.
Natural-language Todoist integration for task management, daily planning, and productivity coaching through Claude Code.
Review 1-3 Todoist tasks for clarity, actionability, and execution readiness using a structured scoring rubric
Complete Todoist integration for natural-language task management, daily planning workflows, and productivity coaching through Claude Code conversations
Break down a complex task or project idea into well-structured, actionable Todoist subtasks with estimates and metadata
Claude Code plugins for Infiquetra development workflows.
| Plugin | Description | Category |
|---|---|---|
| todoist-manager | Full-featured Todoist integration for task and project management | Productivity |
| pagerduty | PagerDuty incident management, on-call orchestration, and service CRUD | Operations |
| slack | Slack messaging and channel management | Communication |
| splunk | Splunk log search and operational analysis | Operations |
| identity-toolkit | Digital identity architecture (NIST 800-63, W3C VCs, custodial wallets) | Security |
| test-suite | Parallel Python quality checks: pytest, ruff, mypy, bandit | Development |
| docs-generator | Automated README, API spec, and architecture documentation generation | Development |
| python-toolkit | Python patterns for serverless apps: Lambda Powertools, DynamoDB, error handling | Development |
| sdk-lifecycle | SDK scaffolding, documentation, security review, and registry publishing | Development |
git clone git@github.com:infiquetra/infiquetra-claude-plugins.git ~/.claude/plugins/infiquetra
Add to ~/.claude/settings.json:
{
"extraKnownMarketplaces": [
{
"name": "infiquetra-plugins",
"url": "https://raw.githubusercontent.com/infiquetra/infiquetra-claude-plugins/main/.claude-plugin/marketplace.json"
}
]
}
ln -s /path/to/infiquetra-claude-plugins/plugins ~/.claude/plugins/infiquetra
# Manage tasks via CLI
python3 plugins/todoist-manager/skills/todoist-manage/scripts/todoist_client.py tasks list
python3 plugins/todoist-manager/skills/todoist-manage/scripts/todoist_client.py tasks add "Review PR" --project "Work"
Set environment variables first:
export PAGERDUTY_API_KEY="your-api-key"
export PAGERDUTY_DEFAULT_TEAM_ID="YOUR_TEAM_ID"
export PAGERDUTY_DEFAULT_ESCALATION_POLICY_ID="YOUR_POLICY_ID"
# List active incidents
python3 plugins/pagerduty/skills/pagerduty-incidents/scripts/pagerduty_client.py incidents list --status triggered
# Acknowledge an incident
python3 plugins/pagerduty/skills/pagerduty-incidents/scripts/pagerduty_client.py incidents acknowledge --id PXXXXX
# Run all quality checks in parallel
python3 plugins/test-suite/skills/run-quality-checks/scripts/test_runner.py \
--coverage 80 \
--source-dir src \
--test-dir tests
# Generate all documentation
python3 plugins/docs-generator/skills/generate-docs/scripts/docs_generator.py generate --all --service my-service
export SPLUNK_HOST="your-splunk-host"
export SPLUNK_TOKEN="your-token"
python3 plugins/splunk/skills/splunk-search/scripts/splunk_client.py search \
"index=main level=ERROR earliest=-1h"
export SLACK_BOT_TOKEN="xoxb-your-token"
python3 plugins/slack/skills/slack-messaging/scripts/slack_client.py message \
--channel "#general" \
--text "Deployment complete"
git clone git@github.com:infiquetra/infiquetra-claude-plugins.git
cd infiquetra-claude-plugins
# Install dependencies
uv pip install -e ".[dev]"
# Run tests
pytest
# Run linting
ruff check .
# Run type checking
mypy plugins/
# Use the scaffolding tool
./tools/create-plugin.sh my-new-plugin
See docs/PLUGIN_SPEC.md for full plugin development guidelines.
Plugins follow the Claude Code native plugin format:
plugin-name/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── agents/ # Agent definitions (optional)
│ └── agent-name.md
├── skills/ # Skills (optional)
│ └── skill-name/
│ ├── SKILL.md # Skill definition
│ ├── references/ # Reference documents
│ └── scripts/ # Implementation scripts
├── commands/ # Commands (optional)
│ └── command.md
├── README.md
└── CHANGELOG.md
MIT
AI-supervised issue tracker for coding workflows. Manage tasks, discover work, and maintain context with simple CLI commands.
Uses power tools
Uses Bash, Write, or Edit tools
Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques
Battle-tested Claude Code plugin for engineering teams — 38 agents, 156 skills, 72 legacy command shims, production-ready hooks, and selective install workflows evolved through continuous real-world use
Manus-style persistent markdown files for planning, progress tracking, and knowledge storage. Works with Claude Code, Kiro, Clawd CLI, Gemini CLI, Cursor, Continue, Hermes, and 17+ AI coding assistants. Now with Arabic, German, Spanish, and Chinese (Simplified & Traditional) support.
Complete collection of battle-tested Claude Code configs from an Anthropic hackathon winner - agents, skills, hooks, rules, and legacy command shims evolved over 10+ months of intensive daily use
Context-Driven Development plugin that transforms Claude Code into a project management tool with structured workflow: Context → Spec & Plan → Implement