Skip to content

Commit 714d05d

Browse files
committed
Bump version: 0.1.5 → 0.1.6
1 parent 5de9b13 commit 714d05d

File tree

39 files changed

+47
-2606
lines changed

39 files changed

+47
-2606
lines changed

.bumpversion.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.5
2+
current_version = 0.1.6
33
commit = True
44
tag = True
55

@@ -15,6 +15,6 @@ replace = Version: {new_version}
1515
search = plane-agent>={current_version}
1616
replace = plane-agent>={new_version}
1717

18-
[bumpversion:file:plane_agent/plane_agent.py]
18+
[bumpversion:file:plane_agent/agent.py]
1919
search = __version__ = "{current_version}"
2020
replace = __version__ = "{new_version}"

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ repos:
2727
hooks:
2828
- id: black
2929
- repo: https://github.com/astral-sh/ruff-pre-commit
30-
rev: v0.15.1
30+
rev: v0.15.2
3131
hooks:
3232
- id: ruff
3333
exclude: tests

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@ ENV HOST=${HOST} \
7878
RUN apt-get update \
7979
&& apt-get install -y ripgrep tree fd-find curl nano \
8080
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
81-
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow plane-agent>=0.1.5
81+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow plane-agent>=0.1.6
8282

8383
CMD ["plane-mcp"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
Meet [Plane](https://plane.so/), an open-source project management tool to track issues, run ~sprints~ cycles, and manage product roadmaps without the chaos of managing the tool itself. 🧘♀️
3535

36-
*Version: 0.1.5*
36+
*Version: 0.1.6*
3737

3838
> Plane is evolving every day. Your suggestions, ideas, and reported bugs help us immensely. Do not hesitate to join in the conversation on [Discord](https://discord.com/invite/A92xrEGCge) or raise a GitHub issue. We read everything and respond to most.
3939

plane_agent/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from agent_utilities.agent_utilities import create_agent_parser, get_mcp_config_path
1313
from agent_utilities.base_utilities import to_integer, to_boolean
1414

15-
__version__ = "0.1.17"
15+
__version__ = "0.1.6"
1616

1717
logging.basicConfig(
1818
level=logging.INFO,

plane_agent/agent/HEARTBEAT.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ You are running a scheduled heartbeat. Perform these checks and report results c
88
2. **Memory Review** — Read `MEMORY.md` and check for any pending follow-up tasks or action items. List any that are overdue.
99
3. **Cron Log** — Read `CRON_LOG.md` and check for recent errors (❌). Summarize any failures from the last 24 hours.
1010
4. **Peer Agents** — Read `AGENTS.md` and note if any registered peers need attention.
11-
5. **Self-Diagnostics** — Report your current model, available tool count, and any anomalies.
11+
5. **Domain-Specific Checks**:
12+
- **Task Status**: Identify overdue tasks or issues assigned to you.
13+
- **Sprint Health**: Summarize progress in the active cycle/sprint.
14+
6. **Self-Diagnostics** — Report your current model, available tool count, and any anomalies.
1215

1316
## Response Format
1417

plane_agent/agent/IDENTITY.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# IDENTITY.md - Who I Am, Core Personality, & Boundaries
22

3-
* **Name:** Plane Agent Agent
4-
* **Role:** A research specialist agent for web search and information gathering using Plane Agent.
5-
* **Emoji:** 🔍
6-
* **Vibe:** Precise, objective, concise
3+
## [default]
4+
* **Name:** Plane Agent
5+
* **Role:** Management and orchestration of projects and issues on the Plane.so platform.
6+
* **Emoji:** ✈️
7+
* **Vibe:** Organized, precise, efficient
78

8-
## System Prompt
9-
You are a Research Specialist Agent for Plane Agent.
10-
You have access to a powerful metasearch engine to find information on the web.
11-
Your responsibilities:
12-
1. Analyze the user's research topic or query.
13-
2. Use the 'web_search' tool (or related skills) to find relevant information.
14-
3. Synthesize the search results into a clear, concise, and well-cited answer.
15-
4. Be objective and provide multiple perspectives if the topic is complex.
16-
5. If initial results are insufficient, refine your search queries and try again.
17-
6. Always include the URLs of the sources you used.
18-
7. MEMORY: You have long-term memory in MEMORY.md. If the user says 'remember', 'recall', or mentions past interactions, read MEMORY.md to retrieve context. Save important decisions, outcomes, and user preferences to MEMORY.md using append_note_to_file.
9+
### System Prompt
10+
You are the Plane Agent.
11+
Your goal is to help the user manage their projects and issues on the Plane.so platform.
12+
You handle issue creation, tracking cycles and modules, managing project settings, and coordinating team tasks.
13+
Help the user maintain a clear and organized project management workflow.
14+
You have access to:
15+
- Issue lifecycle management (CRUD).
16+
- Cycle and Module tracking.
17+
- Project-level configuration and membership.
18+
- Comments and activity retrieval.

plane_agent/agent/__init__.py

Whitespace-only changes.

plane_agent/agent/skills/test-skill/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: test-skill
33
description: A test skill.
44
version: 0.1.0
5-
tags: [custom]
5+
tags: [test-skill]
66
input_modes: [text]
77
output_modes: [text]
88
---

plane_agent/exceptions.py

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)