generalbots/bottemplates/hr/team-feedback.gbai/config.json
Rodrigo Rodriguez (Pragmatismo) 037db5c381 feat: Major workspace reorganization and documentation update
- Add comprehensive documentation in botbook/ with 12 chapters
- Add botapp/ Tauri desktop application
- Add botdevice/ IoT device support
- Add botlib/ shared library crate
- Add botmodels/ Python ML models service
- Add botplugin/ browser extension
- Add botserver/ reorganized server code
- Add bottemplates/ bot templates
- Add bottest/ integration tests
- Add botui/ web UI server
- Add CI/CD workflows in .forgejo/workflows/
- Add AGENTS.md and PROD.md documentation
- Add dependency management scripts (DEPENDENCIES.sh/ps1)
- Remove legacy src/ structure and migrations
- Clean up temporary and backup files
2026-04-19 08:14:25 -03:00

51 lines
1.2 KiB
JSON

{
"name": "team-feedback",
"version": "1.0.0",
"description": "Team feedback and pulse surveys for managers",
"author": "General Bots",
"category": "hr",
"tags": ["pulse", "feedback", "team", "manager", "surveys", "hr"],
"entry_dialog": "default.gbdialog",
"features": {
"pulse_surveys": true,
"team_health": true,
"sentiment_analysis": true,
"trend_tracking": true,
"action_items": true,
"ai_insights": true
},
"settings": {
"default_frequency": "weekly",
"anonymous_responses": true,
"alert_threshold": 3.0,
"trend_periods": 4,
"auto_remind": true,
"reminder_hours": 24
},
"templates": {
"wellbeing": {
"name": "Team Wellbeing",
"questions": 4
},
"workload": {
"name": "Workload Check",
"questions": 4
},
"collaboration": {
"name": "Collaboration Health",
"questions": 4
}
},
"permissions": {
"create_pulse": ["manager", "hr", "admin"],
"view_results": ["manager", "hr", "admin"],
"respond": ["team_member"],
"manage_actions": ["manager", "hr", "admin"]
},
"integrations": {
"tasks": true,
"calendar": true,
"mail": true,
"analytics": true
}
}