Feature ideas

We take your ideas seriously! Read more on our prioritization process in our blog https://productmanagement.port.io/posts/managing-feature-ideas
Hierarchical, LLM-friendly documentation discovery
Port's llms.txt is useful, but it can provide far more context than an agent needs for a specific task, which means unnecessary token usage. I would like Port's documentation to expose a lightweight, hierarchical index that lets LLMs progressively discover the right documentation instead of loading a large representation of the docs upfront. For example, an agent trying to understand GitHub mappings should be able to follow a path like: Docs → Integrations → GitHub → Mapping → Relevant documentation page Each level would only need enough information to help the model decide which branch to follow. For example, a root index could conceptually contain: { "sections": [ { "name": "Software Catalog", "description": "Blueprints, entities, relations and catalog modelling", "index": "..." }, { "name": "Self-service", "description": "Actions, workflows and developer self-service", "index": "..." }, { "name": "Integrations", "description": "GitHub, Jira, Kubernetes, cloud providers and other integrations", "index": "..." } ] } The Integrations index would then expose its children, and so on until the agent reaches the relevant page. This does not have to be JSON. JSON is only one possible implementation. The important part is providing a stable, machine-readable, hierarchical way for agents to understand: What documentation sections exist What each section/page is about What child topics exist underneath it Where to go next for a particular topic Which actual documentation page contains the detailed information Individual pages could also expose short intent hints such as: Use this page for: - Creating GitHub resource mappings - Mapping repositories into Port entities - Configuring JQ mappings This would help an agent distinguish between similarly named sections without reading the full page. The goal is progressive context loading. Instead of: Agent → load llms.txt → receive a large amount of documentation context → search through it the agent could do: Agent → load small docs index → select Integrations → select GitHub → select Mapping → load only the relevant documentation This would reduce token usage, reduce irrelevant context, and make Port's documentation easier for coding agents and long-running AI workflows to navigate. I think this becomes especially useful for tasks like: > "Build this portal using Port." An agent working on that task may need to consult the documentation repeatedly. Giving it a small semantic tree to navigate would be much more efficient than repeatedly loading broad documentation context. llms.txt can still remain as the broad-context option. This would complement it with a more token-efficient discovery mechanism.
0
·
AI agents
Enhanced Dashboard Filtering - Filter by Common Properties Across Multiple Blueprints
Problem Statement Currently, Port dashboards require users to manually configure filters with exact property names and values. This creates several challenges: - Users must understand the underlying data model to create effective filters - No support for filtering by common properties that exist across multiple blueprints - Technical workflow not accessible to non-technical stakeholders (managers, executives, product owners) - Each dashboard requires manual filter setup, reducing reusability Use Case As a dashboard consumer (engineering manager, product owner, executive), I want to easily filter dashboard views using simple drop-down selections, so that I can view relevant metrics without needing to understand property names, data models, or filter mechanics. Example Scenario: A DORA metrics dashboard displays data from multiple blueprint types (repositories, deployments, services, incidents). Users want to filter the entire dashboard by a common organizational dimension (product line, team, business unit) that appears across all these blueprints. Current Limitations - Manual filter addition required for each dashboard - Users must know exact property names (e.g., "product", "team", "owner") - Cannot create filters that work across multiple blueprint types - "Contains" property provides only partial workaround - Poor user experience for business stakeholders Desired Solution - Dashboard-level filters with pre-configured drop-down lists - Single-click filtering that applies across all widgets in the dashboard - Cross-blueprint filtering - filter by common properties across different entity types - No technical knowledge required - intuitive UI for filter selection - Reusable filter configurations that can be templated across multiple dashboards Expected Benefits 1. Improved UX - Business stakeholders can self-serve analytics without technical assistance 2. Faster insights - One-click filtering vs. manual configuration 3. Better adoption - Dashboards accessible to broader audience 4. Consistency - Standardized filtering experience across organization 5. Reduced support burden - Less hand-holding required for dashboard consumers Technical Considerations - Port currently cannot filter by common properties across different blueprints - This affects any dashboard showing data from multiple entity types, or a single entity type - Workarounds exist but compromise user experience - Feature would enhance Port's value proposition for executive reporting and cross-functional analytics
2
·
Dashboards & widgets
Load More