Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ htmlcov/
# Private documents — kept locally, never committed
PRODUCT-INTELLIGENCE-AGENT.md
PUBLICATION-PLAN.md
ACP-REGISTRY-SUBMISSION.md

# Claude Code local settings
.claude/settings.local.json
15 changes: 15 additions & 0 deletions agent.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"id": "product-intelligence-agent",
"name": "PIA — Product Intelligence Agent",
"version": "0.1.0",
"description": "Enriches YouTrack tickets with codebase context, linked issues, and customer signals — directly in your JetBrains IDE. Type a ticket ID to get business context, relevant files, and suggested next steps.",
"repository": "https://github.com/ditvor/pia",
"authors": ["ditvor"],
"license": "Apache-2.0",
"distribution": {
"uvx": {
"package": "product-intelligence-agent",
"args": ["serve"]
}
}
}
18 changes: 18 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,22 @@ build-backend = "hatchling.build"
name = "product-intelligence-agent"
version = "0.1.0"
description = "Product intelligence for JetBrains IDEs via ACP"
authors = [{name = "PIA Contributors"}]
readme = "README.md"
license = { text = "Apache-2.0" }
license-files = ["LICENSE"]
requires-python = ">=3.10"
keywords = ["youtrack", "jetbrains", "acp", "agent", "product-intelligence", "developer-tools"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dependencies = [
"acp-sdk==0.0.6",
"httpx",
Expand All @@ -30,6 +44,10 @@ dev = [
"anyio[trio]",
]

[project.urls]
Homepage = "https://github.com/ditvor/pia"
"Bug Tracker" = "https://github.com/ditvor/pia/issues"

[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
Expand Down
Loading