How can I give the entire Dev access to a AI agent like how we provide access in VScode, Github so that the AI can have the full context of the applications and can reply with accurate results.
Discussion posts and replies are publicly visible
Good question! Building on Stefan's suggestion about the deployment API, here are a few approaches I've seen work well:
1. Export your app via the deployment API and feed the XML/JSON structure to the AI. This gives it full visibility into objects, rules, and integrations.
2. For more interactive work, some teams use the Design API to pull specific object definitions in real-time. This keeps the AI's context current as you make changes.
3. If you're doing documentation or knowledge transfer, consider exporting your process models and rules documentation to a structured format the AI can reference.
One tip: AI agents work better when you also provide context about your conventions and patterns. Documenting your team's standards (naming conventions, error handling patterns, etc.) in a central place helps the AI give more consistent, relevant suggestions.
What specific use case are you trying to solve? Debugging, documentation, code generation?